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
'Linux > 설정 및 명령어' 카테고리의 다른 글
sys_spl.c:80:20: error: curses.h 에러 해결 (0) | 2017.03.10 |
---|---|
cp 명령어와 mv 명령어 (0) | 2017.02.16 |
Linux의 입력내용을 확인하는 history (0) | 2016.12.29 |
터미널에서 출력되는 모든 내용 저장하기 (Script) (0) | 2016.12.29 |
SELinux 해제 방법 (0) | 2016.12.20 |