'iptables'에 해당되는 글 1건

  1. 2017.06.02 [linux] CentOS 에서 iptables 설정 하기.

[linux] CentOS 에서 iptables 설정 하기.

|

CentOS 7 버전에서 iptables 에 규칙 추가는 되는데 저장이 되지 않아 찾아보니..firewall 때문인.. 이것저것 찾아서 간략하게 정리.


firewalld 서비스를 멈추고 제거

systemctl stop firewalld

systemctl mask firewalld


yum 을 이용해서 iptables 를 설치.

yum install iptables-services


서비스 활성화, 시작

systemctl enable iptables

systemctl start iptables


원하는 포트 추가 ( httpd 접속이 필요해서 80포트 오픈 )

iptables -I INPUT -p tcp --dport 80 -j ACCEPT


추가한 룰을 저장 ( 재시작했을 경우 추가한 규칙을 적용 )

service iptables save


And
prev | 1 | next