관리 메뉴

웹개발자의 기지개

Centos7 iptables 설치 및 설정하기 본문

리눅스서버/Centos7

Centos7 iptables 설치 및 설정하기

http://portfolio.wonpaper.net 2019. 10. 8. 02:22

https://xn--p39al0kmsgdpbczn.kr/37 무늬만 생각 님의 포스팅 글을 참고 정리하였습니다. 

 

CentOS7 iptables 설치및 설정

CentOS7 iptables 설치및 설정 방화벽 정지 cd \ > Enter > Enter systemctl mask firewalld > systemctl mask firewalld > systemctl stop firewalld iptables 서비스 패키지 설치 yum –y install iptables-ser..

xn--p39al0kmsgdpbczn.kr

1. 방화벽 정지

cd / 엔터키

systemctl mask firewalld

systemctl mask firewalld

systemctl stop firewalld

 

2. iptables 서비스의 패키지설치한다.

rpm -qa iptables 로 파일패키지 있는지 여부 확인

설치한다.

yum -y install iptables-services

 

3. iptables 설정 및 서비스시작

systemctl enable iptables

systemctl enable iptables

시작한다.

systemctl start iptables

 

4. vi /etc/sysconfig/selinux

 

SELINUX=enforcing 에서 값을 disabled로 변경한다.

Comments