열려 있는 모든 포트 확인
netstat -nap
현재 LISTEN 중인 포트 확인
netstat -nap | grep LISTEN
포트 열기
sudo iptables -I INPUT 1 -p tcp --dport [port number] -j ACCEPT