Deluge cannot work through Tor
Posted: Tue Sep 19, 2023 6:53 am
Hello,
I want to use the Deluge via Tor proxy. My Tor proxy server is as below:
I can connect to the internet through that IP address and SOCKS5 protocol. I entered that IP address and Port number in the Proxy section. In the bottom right corner of the Deluge, I see Port Issue message. when I move the mouse over it, then it gives me the following error message:
Why? Is this because of the iptables rules?
My iptables rules are:
Thank you.
I want to use the Deluge via Tor proxy. My Tor proxy server is as below:
Code: Select all
$ nc 172.20.2.54 -v 9050
nc: 172.20.2.54 (172.20.2.54) 9050 [9050] open
Code: Select all
No incoming connections, check port forwarding
My iptables rules are:
Code: Select all
$ sudo iptables -S
-P INPUT DROP
-P FORWARD DROP
-P OUTPUT ACCEPT
-N SYN_FLOOD
-A INPUT -s 127.0.0.0/8 -d 127.0.0.0/8 -i lo -j ACCEPT
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
-A INPUT -j REJECT --reject-with icmp-port-unreachable
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -p tcp -m tcp --tcp-flags FIN,SYN,RST,ACK SYN -j SYN_FLOOD
-A INPUT -p tcp -m tcp --dport 9050 -j ACCEPT
-A FORWARD -j REJECT --reject-with icmp-port-unreachable
-A FORWARD -s 192.168.56.0/24 -i vboxnet0 -o eth1 -m conntrack --ctstate NEW -j ACCEPT
-A FORWARD -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
-A OUTPUT -p tcp -j ACCEPT
-A OUTPUT -p udp -j ACCEPT
-A OUTPUT -p icmp -j ACCEPT
-A OUTPUT -j REJECT --reject-with icmp-port-unreachable
-A OUTPUT -o lo -j ACCEPT
-A SYN_FLOOD -m limit --limit 5/sec --limit-burst 10 -j RETURN
-A SYN_FLOOD -j DROP