개발 공부
리눅스 방화벽 iptables 본문
- 본인 IP 확인
$ ifconfig
- target ip 방화벽 확인
$ telnet ip port
- 방화벽 등록
- 확인 : iptables -nL {-line-numbers}
- 삽입 : iptables -I INPUT 1 -s 111.111.111.111 -p tcp –dport 2000 -j ACCEPT
- 삽입 : iptables -I chain-incoming-ssh 1 -s 192.168.1.140 -j ACCEPT
- 삽입 : iptables -I IN_public_allow 1 -s 0.0.0.0/0 -p tcp --dport 8888 -m conntrack --ctstate NEW,UNTRACKED -j ACCEPT
- 초기화(?) :firewall-cmd --reload
- [centOS8 ↑] firewall
'linux, ubuntu' 카테고리의 다른 글
filezilla sftp 키파일 선택 안 됨 (0) | 2021.07.19 |
---|---|
vi 대용량, 여러줄 삭제, vi 줄이동 (0) | 2021.07.15 |
chmod 적용 안될 때 - immutable bit (0) | 2021.07.13 |
로케일 확인, 설정 (0) | 2021.07.09 |
ubuntu screen 단축키 (0) | 2021.05.11 |
Comments