본문 바로가기

Linux/설정 및 명령어

CentOS 방화벽 설정. iptables

IPTABLES

 

CentOS 6.8

1.    설정

1)    방화벽 설정 내용 확인

[root@localhost ~]# iptables -L

or

[root@localhost ~]# cat /etc/sysconfig/iptables

 

2)    IP를 이용한 차단 및 허용

[root@localhost ~]# vi /etc/sysconfig/iptables

...

##허용

-A INPUT -s 192.168.0.10 -j ACCEPT

##차단

-A INPUT -s 192.168.0.10 -j DROP

 

3)    Port를 이용한 차단 및 허용

[root@localhost ~]# vi /etc/sysconfig/iptables

...

##허용

-A INPUT -p tcp -dport 80 -j ACCEPT

##차단

-A INPUT -p tcp -dport 443 -j DROP

 

 

2.    그 외 명령어

##방화벅 사용 하지 않기

[root@localhost ~]# iptables -L

[root@localhost ~]# iptables -F                ##리스트 삭제

[root@localhost ~]# service iptables save   ##저장

또는

[root@localhost ~]# service iptables stop

[root@localhost ~]# chkconfig iptables off