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?
Tell me more
×
Super User is a question and answer site for
computer enthusiasts and power users. It's 100% free, no registration required.
|
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. |
|||
|
|
Install the scripts available from www.nopen.co.uk cookbook then scan your server using nmap. that will give you exactly the outgoing firewall rules set from your connection. |
|||
|
|
tcpdump -nnq src host <campus-external-ip> and not port sshthis solved the problem for me – Michael Nov 16 '11 at 4:34