A Plumber's Wish List for Linux
A Plumber's Wish List for Linux
Posted Oct 11, 2011 0:34 UTC (Tue) by nybble41 (subscriber, #55106)In reply to: A Plumber's Wish List for Linux by fest3er
Parent article: A Plumber's Wish List for Linux
# set up the initial rules
iptables -N real-chain-1
iptables -A real-chain-1 ...
# create the indirect chain
iptables -N replaceable-chain
iptables -A replaceable-chain -g real-chain-1
# use it
iptables ... -j replaceable-chain
# later...
# set up the new rules
iptables -N real-chain-2
iptables -A real-chain-2 ...
# switch to the new rules
iptables -R replaceable-chain 1 -g real-chain-2
# clean up
iptables -F real-chain-1
iptables -X real-chain-1
The LWN site is currently under high scraper load, so comment display has been suppressed for anonymous users. If you are a human, you may read the comments by clicking the button below:
Note: you can avoid this step in the future by logging into your LWN account.
