Check if a port is open and is listening in Linux.
1.
2.
3.
lsof -i :<port>
(Takes seconds)2.
netstat -an |grep <port> |grep LISTEN
(Takes seconds)3.
telnet
<Server Ip> <port>
Comments
Post a Comment