iptables의 잘못된 매개변수 '127.0.0.1'

iptables의 잘못된 매개변수 '127.0.0.1'
-A OUTPUT --destination ! '127.0.0.1' -m state --state NEW -j LOG --log-prefix "new_connection " --log-level 7

나에게주세요

Bad argument `127.0.0.1'

내가 뭘 잘못했나요? 나는 이 문서를 사용했습니다:http://www.iptables.info/en/iptables-matches.html

답변1

문서가 오래되었거나 오해의 소지가 있습니다.

!뒤에가 아니라 앞에 배치 되어야 합니다 --destination. 노력하다:

-A OUTPUT ! --destination 127.0.0.1 -m state --state NEW -j LOG --log-prefix "new_connection " --log-level 7

단서는 요약라인이다매뉴얼 페이지:

    [!] -d, --destination address[/mask][,...]

관련 정보