명령어 | 기능 | 방향 | source IP | destination IP | protocol | port | 동작 |
iptables | -A (add) | INPUT | -s <IP> | -d <IP> | -p <tcp|udp|icmp> | -dport <port> | -j <ACCEPT|DROP|REJECT> |
-D (delete) | OUTPUT | ||||||
-I (insert) | FORWARD |
예시
iptables -A INPUT -p tcp –dport 80 -j ACCEPT
iptables -A INPUT -d 172.17.1.1 -p tcp –dport 8080 -j DROP
'About IT > Linux' 카테고리의 다른 글
Ubuntu 16.04 hostname 변경 (0) | 2020.01.22 |
---|---|
Cent OS7 Docker-compose설치 (0) | 2019.10.14 |
CentOS 7에 Docker설치 (0) | 2019.10.14 |
CentOS 7에 nginx설치 (0) | 2019.10.14 |