1

Using the terminal, I run the following.

ssh admin@1.2.3.4 -i ~/.ssh/admin -N -D 9090

Firefox is configured as follow.

Firefox SOCKS 5

Many websites work just fine, but certain ones fails and the following error is thrown on the terminal.

channel 1: open failed: administratively prohibited: open failed

My research points to a DNS problem as indicated by running tail auth.log on the server.

error: connect_to ipleak.net: unknown host (Temporary failure in name resolution)

How can I fix this issue?

sunknudsen
  • 701
  • 3
  • 14
  • 28

1 Answers1

1

Thanks to Michael’s suggestion, I narrowed the issue down to DNS.

Switching from DigitalOcean’s DNS servers to 1.1.1.1 fixed the issue.

$ cat /etc/resolv.conf
nameserver 1.1.1.1
nameserver 1.0.0.1
sunknudsen
  • 701
  • 3
  • 14
  • 28