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
:) 실행 중인지 여부를 확인할 수 있습니다.