I have my own Ubuntu Server. The problem is that I cannot access the server on a lot of ports from my University. I want to see on which all ports I will be able to access. Right now what I'm doing is to make apacha listen on different ports in the server and then port scan from my university to see if I can access it. So far I have discovered few ports like that which I can access. Is there someway to like open all ports or make apache listen on all the ports?

link|improve this question
tcpdump -nnq src host <campus-external-ip> and not port ssh this solved the problem for me – Michael Nov 16 '11 at 4:34
feedback

1 Answer

Why not run tcpdump on the server and see which of the scan packets arrive? Then you can pick one where the SYN packets actually show up, and see if the path will allow the connection to complete.

link|improve this answer
Gr8 idea, thanks! – Benjamin Jan 7 '10 at 6:32
feedback

Your Answer

 
or
required, but never shown