Iptables rule for transmission deamon?
by peter7089 from LinuxQuestions.org on (#5RXEH)
I have transmission installed on my home server with arch linux. How to allow access to port 9091 on which i am accessing transmission-web? Is this the right rule:
Code:sudo iptables -A INPUT -p udp --dport 9091 -j ACCEPTThese arethe current iptables rules on my home server:
Code:-P INPUT DROP
-P FORWARD DROP
-P OUTPUT ACCEPT
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
-A INPUT -s 192.168.100.13/32 -j ACCEPT
-A INPUT -s 192.168.100.11/32 -j ACCEPT
Code:sudo iptables -A INPUT -p udp --dport 9091 -j ACCEPTThese arethe current iptables rules on my home server:
Code:-P INPUT DROP
-P FORWARD DROP
-P OUTPUT ACCEPT
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
-A INPUT -s 192.168.100.13/32 -j ACCEPT
-A INPUT -s 192.168.100.11/32 -j ACCEPT