mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-26 09:33:14 +01:00
Remove unimplemented commands and help -- Take 2
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@3985 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
c3a2c1c182
commit
1a10ba9398
@ -28,28 +28,6 @@
|
|||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
|
|
||||||
add)
|
|
||||||
echo "add: add <interface>[:<host-list>] ... <zone>
|
|
||||||
Adds a list of hosts or subnets to a dynamic zone usually used with VPN's.
|
|
||||||
|
|
||||||
shorewall add interface:host-list ... zone - Adds the specified interface
|
|
||||||
(and host-list if included) to the specified zone.
|
|
||||||
|
|
||||||
A host-list is a comma-separated list whose elements are:
|
|
||||||
|
|
||||||
A host or network address
|
|
||||||
The name of a bridge port
|
|
||||||
The name of a bridge port followed by a colon (":") and a host or
|
|
||||||
network address.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
shorewall add ipsec0:192.0.2.24 vpn1 -- adds the address 192.0.2.24
|
|
||||||
from interface ipsec0 to the zone vpn1.
|
|
||||||
|
|
||||||
See also \"help host\""
|
|
||||||
;;
|
|
||||||
|
|
||||||
address|host)
|
address|host)
|
||||||
echo "<$1>:
|
echo "<$1>:
|
||||||
May be either a host IP address such as 192.168.1.4 or a network address in
|
May be either a host IP address such as 192.168.1.4 or a network address in
|
||||||
@ -96,28 +74,6 @@ debug)
|
|||||||
The word 'trace' is a synonym for 'debug'."
|
The word 'trace' is a synonym for 'debug'."
|
||||||
;;
|
;;
|
||||||
|
|
||||||
delete)
|
|
||||||
echo "delete: delete <interface>[:<host-list>] ... <zone>
|
|
||||||
Deletes a list of hosts or networks from a dynamic zone usually used with VPN's.
|
|
||||||
|
|
||||||
shorewall delete interface[:host-list] ... zone - Deletes the specified
|
|
||||||
interfaces (and host list if included) from the specified zone.
|
|
||||||
|
|
||||||
A host-list is a comma-separated list whose elements are:
|
|
||||||
|
|
||||||
A host or network address
|
|
||||||
The name of a bridge port
|
|
||||||
The name of a bridge port followed by a colon (":") and a host or
|
|
||||||
network address.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
shorewall delete ipsec0:192.0.2.24 vpn1 -- deletes the address
|
|
||||||
192.0.2.24 from interface ipsec0 from zone vpn1
|
|
||||||
|
|
||||||
See also \"help host\""
|
|
||||||
;;
|
|
||||||
|
|
||||||
drop)
|
drop)
|
||||||
echo "$1: $1 <address> ...
|
echo "$1: $1 <address> ...
|
||||||
Causes packets from the specified <address> to be ignored
|
Causes packets from the specified <address> to be ignored
|
||||||
|
@ -957,11 +957,9 @@ usage() # $1 = exit status
|
|||||||
{
|
{
|
||||||
echo "Usage: $(basename $0) [debug|trace] [nolock] [ -q ] [ -v ] [ -t ] <command>"
|
echo "Usage: $(basename $0) [debug|trace] [nolock] [ -q ] [ -v ] [ -t ] <command>"
|
||||||
echo "where <command> is one of:"
|
echo "where <command> is one of:"
|
||||||
echo " add <interface>[:<host-list>] ... <zone>"
|
|
||||||
echo " allow <address> ..."
|
echo " allow <address> ..."
|
||||||
echo " check [ -e ] [ <directory> ]"
|
echo " check [ -e ] [ <directory> ]"
|
||||||
echo " clear"
|
echo " clear"
|
||||||
echo " delete <interface>[:<host-list>] ... <zone>"
|
|
||||||
echo " drop <address> ..."
|
echo " drop <address> ..."
|
||||||
echo " dump [ -x ]"
|
echo " dump [ -x ]"
|
||||||
echo " forget [ <file name> ]"
|
echo " forget [ <file name> ]"
|
||||||
@ -1267,10 +1265,6 @@ case "$COMMAND" in
|
|||||||
|
|
||||||
check_command $@
|
check_command $@
|
||||||
|
|
||||||
;;
|
|
||||||
add|delete)
|
|
||||||
[ $# -lt 3 ] && usage 1
|
|
||||||
exec $SHOREWALL_SHELL $FIREWALL $debugging $nolock $@
|
|
||||||
;;
|
;;
|
||||||
show|list)
|
show|list)
|
||||||
shift
|
shift
|
||||||
|
Loading…
Reference in New Issue
Block a user