Report this

What is the reason for this report?

I am behind a HTTP proxy server(172.16.2.30:8080) setup by our institution.I cann't login into my droplet.How do i do it.

Posted on January 29, 2018

I am using a kali Linux Virtual machine on Windows. ssh connect to host ... port 22: connection refused



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

One option would be configuring the SSH server to listen on port 443. Some proxies do not actually inspect the packets that are going through and just filter traffic based on the target port. Port 443 is used for HTTPS traffic, so such proxies will definitely allow it. If you are willing to sacrifice the possibility of hosting an HTTPS website on your Droplet, you can give that a shot. To do so:

  1. Log in to your Droplet using the Remote Console in the control panel
  2. Open /etc/ssh/sshd_config in a text editor
  3. Uncomment the line # Port 22 by deleting the # and replace 22 with 443.
  4. Save the file and restart OpenSSH: sudo systemctl restart ssh

That’s not the best option but it’s the quickest and easiest to set up. Another route would be setting up a VPN, but again, that also depends on how your proxy works. If it actually inspects packets and blocks VPNs, there’s not much you could do:

The university I go to blocks OpenVPN, but not IKEv2 which Also uses. So, I’d recommend spinning up a new Droplet to experiment with different methods and figure out what works best for you.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.