что за "!«означает следующее приемлемое правило
iptables -I inacc ! -i br0 -p UDP --dport 69 -j ACCEPT
Я думаю, что это связано с интерфейсом br0
. Я думаю, что это означает, что любой интерфейс, кроме br0
Я прав?
что за "!«означает следующее приемлемое правило
iptables -I inacc ! -i br0 -p UDP --dport 69 -j ACCEPT
Я думаю, что это связано с интерфейсом br0
. Я думаю, что это означает, что любой интерфейс, кроме br0
Я прав?
Да, вы. Из "Человек Iptables"
[!] -i, --in-interface name
Name of an interface via which a packet was received (only for packets entering the INPUT, FORWARD and PREROUTING chains). When the "!" argument is used before the interface name, the sense is inverted. If the
interface name ends in a "+", then any interface which begins with this name will match. If this option is omitted, any interface name will match.