Подскажите, как в centos работает iptables.
просто добавление правила, что по умолчанию всё открыто и отдельного правила, на открытие нужного порта - не работают. [root@centos-vb etc]# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
ACCEPT icmp -- anywhere anywhere
ACCEPT all -- anywhere anywhere
ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ssh
REJECT all -- anywhere anywhere reject-with icmp-host-prohibited
ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:http
Chain FORWARD (policy ACCEPT)
target prot opt source destination
REJECT all -- anywhere anywhere reject-with icmp-host-prohibited
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
[root@centos-vb etc]#
А на 80-й порт не пускает. Хотя там апач и висит:
[root@centos-vb etc]# netstat -lnt | grep 80
tcp 0 0 :::80 :::* LISTEN
[root@centos-vb etc]#
[root@centos-vb etc]# ps auxwww | grep apache
apache 2160 0.0 0.4 198460 3660 ? S Sep24 0:00 /usr/sbin/httpd -k restart
apache 2161 0.0 0.4 198460 3084 ? S Sep24 0:00 /usr/sbin/httpd -k restart
apache 2162 0.0 0.4 198460 3080 ? S Sep24 0:00 /usr/sbin/httpd -k restart
apache 2163 0.0 0.4 198460 3080 ? S Sep24 0:00 /usr/sbin/httpd -k restart
apache 2164 0.0 0.4 198460 3080 ? S Sep24 0:00 /usr/sbin/httpd -k restart
apache 2165 0.0 0.4 198460 3080 ? S Sep24 0:00 /usr/sbin/httpd -k restart
apache 2166 0.0 0.4 198460 3080 ? S Sep24 0:00 /usr/sbin/httpd -k restart
apache 2167 0.0 0.4 198460 3080 ? S Sep24 0:00 /usr/sbin/httpd -k restart
root 2710 0.0 0.1 103260 900 pts/0 S+ 10:44 0:00 grep apache
[root@centos-vb etc]#
Собственно сабж. А что в центе такого понакручено, что простые правила iptables не работают в нём? Где ещё надо давать "права", для доступа к нужному порту?