iptables and redirection traffic from one PC to another

2014-02-14 Thread Aleksander Kurczyk
Hello, This is my firewall script: sudo iptables -F sudo iptables -A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT sudo iptables -A INPUT -i lo -j ACCEPT sudo iptables -A INPUT -s 192.168.0.0/24 -j ACCEPT sudo iptables -A INPUT -p tcp --dport 22005 -j ACCEPT sudo iptables -A INPUT

Re: iptables and redirection traffic from one PC to another

2014-02-14 Thread Brixton Cat
I think you miss accept input traffic from port 81. You can add logging messages or run tcpdump to see what traffic are dropped. Regards. Fernando. El 14/02/2014 14:44, Aleksander Kurczyk akurc...@outlook.com escribió: Hello, This is my firewall script: sudo iptables -F sudo iptables -A

RE: iptables and redirection traffic from one PC to another

2014-02-14 Thread Aleksander Kurczyk
, Aleksander Kurczyk Date: Fri, 14 Feb 2014 14:58:04 +0100 Subject: Re: iptables and redirection traffic from one PC to another From: fernando.vic...@gmail.com CC: debian-user@lists.debian.org To: debian-user@lists.debian.org I think you miss accept input

Re: iptables and redirection traffic from one PC to another

2014-02-14 Thread Joe
On Fri, 14 Feb 2014 16:32:21 +0100 Aleksander Kurczyk akurc...@outlook.com wrote: Hi, Now my firewall looks like this: sudo iptables -F sudo iptables -P INPUT DROP sudo iptables -A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT sudo iptables -A INPUT -i lo -j ACCEPT sudo

RE: iptables and redirection traffic from one PC to another

2014-02-14 Thread Aleksander Kurczyk
: Fri, 14 Feb 2014 16:04:49 + From: j...@jretrading.com To: debian-user@lists.debian.org Subject: Re: iptables and redirection traffic from one PC to another On Fri, 14 Feb 2014 16:32:21 +0100 Aleksander Kurczyk akurc...@outlook.com wrote: Hi, Now my firewall looks like this: sudo