17

Nov/14

Github Over HTTPS

Github defaults to using the default SSH port (22) but it can be reconfigured to use HTTPS port 443. To test this run the following command: ssh -T -p 443 git@ssh.github.com The above -p 443 parameter tells SSH to connect … Continue reading

17

Aug/11

Netstat By Port

netstat -tulpn| grep :80 where 80 is the port number Apache Address already in use: make_sock: could not bind to port 80 or 443 error and solution

14

Dec/09

SSH On Multiple Ports

It is possible to have SSHD (SSH server) to listen on multiple ports. some places block port 22 the default port for SSH. To over come this you can use another port such as 3389 (which happens to be the … Continue reading