Description
Removes the specified TCP and UDP ports from the bypass port list of the CoreXL Dynamic Dispatcher.
For more information about the CoreXL Dynamic Dispatcher, see sk105261.
Important - This command saves the configuration in the $FWDIR/conf/dispatcher_bypass.conf
file. You must not edit this file manually.
Syntax
fw ctl multik del_bypass_port <Port Number 1>,<Port Number 2>,...,<Port Number N> |
Parameters
Parameter |
Description |
---|---|
<Port Number> |
Specifies the numbers of TCP and UDP ports to remove from the list. |
Example
[Expert@MyGW:0]# fw ctl multik show_bypass_ports dynamic dispatcher bypass port list: [Expert@MyGW:0]# [Expert@MyGW:0]# cat $FWDIR/conf/dispatcher_bypass.conf dynamic_dispatcher_bypass_ports_number = 0 [Expert@MyGW:0]# [Expert@MyGW:0]# fw ctl multik add_bypass_port 8888 [Expert@MyGW:0]# [Expert@MyGW:0]# fw ctl multik show_bypass_ports dynamic dispatcher bypass port list: (8888) [Expert@MyGW:0] [Expert@MyGW:0]# cat $FWDIR/conf/dispatcher_bypass.conf dynamic_dispatcher_bypass_ports_number = 1 dynamic_dispatcher_bypass_port_table=8888 [Expert@MyGW:0] [Expert@MyGW:0]# fw ctl multik add_bypass_port 9999 [Expert@MyGW:0]# [Expert@MyGW:0]# fw ctl multik show_bypass_ports dynamic dispatcher bypass port list: (8888,9999) [Expert@MyGW:0] [Expert@MyGW:0]# cat $FWDIR/conf/dispatcher_bypass.conf dynamic_dispatcher_bypass_ports_number = 2 dynamic_dispatcher_bypass_port_table=8888,9999 [Expert@MyGW:0] [Expert@MyGW:0]# fw ctl multik add_bypass_port 9999 [Expert@MyGW:0]# [Expert@MyGW:0]# fw ctl multik show_bypass_ports dynamic dispatcher bypass port list: (8888) [Expert@MyGW:0] [Expert@MyGW:0]# cat $FWDIR/conf/dispatcher_bypass.conf dynamic_dispatcher_bypass_ports_number = 1 dynamic_dispatcher_bypass_port_table=8888 [Expert@MyGW:0] |