plugins - Twitter is now blocked in Egypt , I have domain and I want to bypass throw it is there a way? -
twitter blocked in egypt , have domain , want bypass throw there way ?
the general mechanism set local proxy on machine in egypt. proxy connects through secure channel safe host (or hosts) route http/dns traffic internet. in order use local proxy instead of direct connections, have set web browser.
there 2 alternatives scheme: either use ssh client proxy , domain; or use tor , distributed network of proxies.
ssh if blocked machine runs linux: start local socks proxy part of standard ssh client running in standard terminal: ssh -d 12345 your_username@yourdomain_outside_egypt.net
(where 12345 local port number)
then configure firefox use tunnel: go about:config , set:
- network.proxy.socks -> 127.0.0.1 (localhost doesn't work)
- network.proxy.socks_port -> 12345
- network.proxy.socks_remote_dns -> true (dns connections use proxy)
- network.proxy.type 0
tor safer alternative use onion-routing same thing on machine (you've got proxy , encrypted connection somewhere outside); target machine changes dynamically. see e.g. tor project
Comments
Post a Comment