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
:)、それが実行されているかどうかを確認できます。