Коли я запускаю на своєму пристрої Linux Redhat версії 6.8 стан - iptables служби
Я отримую таблицю правил (але не, якщо iptables працює чи ні)
Чи показує наступне, що iptables працює?
# service iptables status
Table: filter
Chain INPUT (policy ACCEPT)
num target prot opt source destination
1 ACCEPT all -- 0.0.0.0/0 0.0.0.0/0 state RELATED,ESTABLISHED
2 ACCEPT icmp -- 0.0.0.0/0 0.0.0.0/0
3 ACCEPT all -- 0.0.0.0/0 0.0.0.0/0
4 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:22
5 REJECT all -- 0.0.0.0/0 0.0.0.0/0 reject- with icmp-host-prohibited
Chain FORWARD (policy ACCEPT)
num target prot opt source destination
1 REJECT all -- 0.0.0.0/0 0.0.0.0/0 reject- with icmp-host-prohibited
Chain OUTPUT (policy ACCEPT)
num target prot opt source destination
Iptables увімкнено під час завантаження
# chkconfig --list iptables
iptables 0:off 1:off 2:on 3:on 4:on 5:on 6:off
firewalld
встановили за замовчуванням, і ви можете перевірити його стан, запустившиsystemctl status firewalld
. Також пакет, який називається,iptables-services
можна встановити, і якщо його запустити (назва послуги:)iptables
, ви можете перевірити, працює він чи ні.