Linux Commands Examples

A great documentation place for Linux commands

ip6tables-restore

Restore IPv6 Tables


see also : ip6tables-save - ip6tables

Synopsis

ip6tables-restore [-c] [-n]


add an example, a script, a trick and tips

: email address (won't be displayed)
: name

Step 2

Thanks for this example ! - It will be moderated and published shortly.

Feel free to post other examples
Oops ! There is a tiny cockup. A damn 404 cockup. Please contact the loosy team who maintains and develops this wonderful site by clicking in the mighty feedback button on the side of the page. Say what happened. Thanks!

examples

0
source
            
[ "$IFACE" = "lo" ] || exit 0
ip6tables-restore < /etc/network/ip6tables
0
source
            
for table in $(cat /proc/net/ip6_tables_names); do
ip6tables-restore < /var/lib/iptables/empty-$table.rules
[ $? -gt 0 ] && fail=1
done

description

ip6tables-restore is used to restore IPv6 Tables from data specified on STDIN. Use I/O redirection provided by your shell to read from a file
-c
, --counters

restore the values of all packet and byte counters

-n, --noflush
don’t flush the previous contents of the table. If not specified,

ip6tables-restore flushes (deletes) all previous contents of the respective IPv6 Table.


bugs

None known as of iptables-1.2.1 release


see also

ip6tables -save"> ip6tables-save , ip6tables

The iptables-HOWTO, which details more iptables usage, the NAT-HOWTO, which details NAT, and the netfilter-hacking-HOWTO which details the internals.


authors

Harald Welte <laforge[:at:]gnumonks[:dot:]org>
Andras Kis-Szabo <kisza[:at:]sch.bme[:dot:]hu>

How can this site be more helpful to YOU ?


give  feedback