[Linux] 방화벽 설정

SOO·2021년 9월 15일
0

Linux

목록 보기
14/19

iptables 설치 확인

rpm -qa | grep iptables

설치되지 않았을 경우 설치
yum -y install iptables

방화벽 설정 (centOS 6)

1) 방화벽 정지
/etc/rc.d/init.d/iptables stop

2) 방화벽 시작
/etc/rc.d/init.d/iptables start

3) 방화벽 재시작
/etc/rc.d/init.d/iptables restart

4) 방화벽 상태
/etc/rc.d/init.d/iptables status

방화벽 설정 (centOS 7)

1) 방화벽 해제
systemctl stop firewalld

2) 리부팅시 방화벽 실행 하지 않게 하기
systemctl disable firewalld

출처: https://blog.miyam.net/49 [낭만 프로그래머]
출처: https://yunyoung1819.tistory.com/20

0개의 댓글