A question about Tor proxy
by Jason.nix from LinuxQuestions.org on (#6HE2M)
Hello,
I have a Debian server with Tor installed on it. This server is located in an internal network and the Tor configuration is as follows:
Code:RunAsDaemon 1
SOCKSPort 192.168.1.2:9050
DataDirectory @LOCALSTATEDIR@/lib/tor
CookieAuthentication 0I use Tor by setting a SOCKS5 type proxy in the browser. I use these iptables rules:
Code:-A INPUT -m conntrack --ctstate ESTABLISHED -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -p tcp --dport 9050 -m state --state NEW -j ACCEPTIf I set a public IP address on the NIC, can anyone connect to port 9050 from the Internet? As you can see, I have given internal IP address to Tor in Tor configuration.
Thank you.
I have a Debian server with Tor installed on it. This server is located in an internal network and the Tor configuration is as follows:
Code:RunAsDaemon 1
SOCKSPort 192.168.1.2:9050
DataDirectory @LOCALSTATEDIR@/lib/tor
CookieAuthentication 0I use Tor by setting a SOCKS5 type proxy in the browser. I use these iptables rules:
Code:-A INPUT -m conntrack --ctstate ESTABLISHED -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -p tcp --dport 9050 -m state --state NEW -j ACCEPTIf I set a public IP address on the NIC, can anyone connect to port 9050 from the Internet? As you can see, I have given internal IP address to Tor in Tor configuration.
Thank you.