You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
375 B
9 lines
375 B
iptables-translate -I INPUT -j LOG
|
|
nft insert rule ip filter INPUT counter log
|
|
|
|
ip6tables-translate -A FORWARD -p tcp -j LOG --log-level debug
|
|
nft add rule ip6 filter FORWARD meta l4proto tcp counter log level debug
|
|
|
|
ip6tables-translate -A FORWARD -p tcp -j LOG --log-prefix "Checking log"
|
|
nft add rule ip6 filter FORWARD meta l4proto tcp counter log prefix \"Checking log\"
|