Twitter is now blocked in Egypt, I have a domain, and I want to get around the cast, is there a way?

Twitter is now blocked in Egypt, I have a domain, and I want to get around the cast, is there a way?

+3
source share
1 answer

The general mechanism is to configure a local proxy server on your computer in Egypt. This proxy connects through a secure channel to a secure host (or hosts) that directs your http / dns traffic to the Internet. To use a local proxy instead of direct connections, you need to configure your web browser.

There are two alternatives for this scheme: either you use the ssh client as a proxy server, or your domain; or you use tor and your distributed proxy network.

SSH linux: SOCKS, ssh, : ssh -D 12345 your_username@yourdomain_outside_Egypt.net ( 12345 - )

firefox : about: config :

  • network.proxy.socks → 127.0.0.1 (localhost )
  • network.proxy.socks_port → 12345
  • network.proxy.socks_remote_dns → true ( DNS )
  • network.proxy.type 0

TOR - , ( - ); . . tor project

+3

Source: https://habr.com/ru/post/1787730/


All Articles