Difference between revisions of "Connect"

From Hackepedia
Jump to navigationJump to search
 
 
Line 6: Line 6:
 
*  Can you [[ping]] the server? (Verifying the machine is up)
 
*  Can you [[ping]] the server? (Verifying the machine is up)
 
* Do you have to allow outbound access to this port on your [[firewall]]? on your [[router]]?
 
* Do you have to allow outbound access to this port on your [[firewall]]? on your [[router]]?
* [[telnet]] to the port
+
* [[telnet]] to the port (we prefer netcat over telnet for this if you it installed)
  
 
  $ telnet hackepedia.org 80
 
  $ telnet hackepedia.org 80

Latest revision as of 17:33, 16 March 2006

You're unsuccessfully trying to connect somwhere. You'll need to know the DNS or IP of the server hosting the daemon, as well as the port number it listens on.

In our example, we'll try to connect to port 80 of hackepedia.org. (The common www port, often hidden in your Browser).

  • Can you resolve DNS?
  • Can you ping the server? (Verifying the machine is up)
  • Do you have to allow outbound access to this port on your firewall? on your router?
  • telnet to the port (we prefer netcat over telnet for this if you it installed)
$ telnet hackepedia.org 80
Trying 64.111.114.195...
Connected to hackepedia.org.
Escape character is '^]'.

This tells me that the port is listening. Just for fun, here is an example showing that there is no daemon listening on port 79 of this server:

$ telnet hackepedia.org 79
Trying 64.111.114.195...
telnet: Unable to connect to remote host: Connection refused