web-dev-qa-db-ja.com

iptablesの範囲を無効にする方法は?

感嘆符(!)を複数の例で使用しているのを見てきましたが、使用しようとするとエラーが発生します。

私が試しているルール:

-A OUTPUT -m owner --gid-owner 1006 -d ! 192.168.1.0/24 -j DROP

エラー:

Bad argument '192.168.1.0/24'

これの正しい構文は何ですか?

16
user12932

マンページにあるように:

[!] -d, --destination address[/mask][,...]
       Destination  specification.   See  the  description  of  the  -s
       (source)  flag  for  a  detailed description of the syntax.  The
       flag --dst is an alias for this option.

それはそれを作ります

! -d 192.168.1.0/24
34
jørgensen