Как в iptables сделать порт не filtered, а closed? пишу например: #iptables -A INPUT -p tcp --dport 22 -j DROP проверяю себя же nmap-ом: #nmap localhost (The 1656 ports scanned but not shown below are in state: closed) PORT STATE SERVICE 22/tcp filtered ssh
Чем-нибудь этот filtered от close то наверняка отличается, а чем? Во всех доках написано, что DENY закрывает порт, а iptables пишет: # iptables -A INPUT -p tcp --dport 22 -j DENY iptables v1.2.11: Couldn't load target `DENY':/lib/iptables/libipt_DENY.so: cannot open shared object file: No such file or directory
Try `iptables -h' or 'iptables --help' for more information.
или мне нужно где-то этот deny модуль себе найти?