How to open a port on linux
Hi all,
Could anybody please tell me how to open a port which is running an
unknown process.
For example, if I want to open a ftp port then its easy because we know the service whcih runs on that port. we can do this just by starting the service.
But, if I want to open a port say 44000, then how to go for it.
I executed following iptables rule for opening the port.
iptables -A INPUT -i eth0 -p tcp --sport 32769 -m state --state ESTABLISHED -j ACCEPT
but nmap is saying that the port is closed.
nmap -p 44000 -sS localhost
I would appreciate if you could answer to my query.
Thanks & Regards,
Sharad.
|