[Linux] IP, Port, Server, Firewall …

less than 1 minute read

열려있는 포트 프로세스 닫기

$ sudo lsof -i :portNumber

현재 열려있는 포트를 확인

$ netstat -tulpn | grep LISTEN
$ netstat -anp | grep LISTEN | grep :80
$ lsof -i -n -P | grep TCP | grep LISTEN

firewall 오픈

$ systemctl start firewalld

firewall 허용 port 리스트

$ sudo firewall-cmd --zone=public --list-ports

포트가 외부에서 접속되지 않는다면 포트를 방화벽에 추가합니다.

$ sudo firewall-cmd --zone=public --add-port=8000/tcp --permanent

방화벽을 리로드합니다.

$ sudo firewall-cmd --reload

원격서버 포트 접근 확인

$ telnet 34.73.59.253 8080

linux iptables

$ sudo iptables -L
$ sudo iptables -Ln
$ sudo iptables -t nat -L
$ sudo iptables -t nat -L --line-numbers
$ sudo iptables -t nat -D PREROUTING 1

$ sudo sudo iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 443 -j REDIRECT --to-port 8080

linux 리소스

// 디스크 용량
$ df
$ df -h
// 특정 디렉토리 용량
$ du -sh *
// 리소스 확인
$ top

Leave a comment