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.
|
iptables-translate -A INPUT -p tcp --dport 80 -m cpu --cpu 0 -j ACCEPT
|
|
nft add rule ip filter INPUT tcp dport 80 cpu 0 counter accept
|
|
|
|
iptables-translate -A INPUT -p tcp --dport 80 -m cpu ! --cpu 1 -j ACCEPT
|
|
nft add rule ip filter INPUT tcp dport 80 cpu != 1 counter accept
|