SVN does not work because IPTABLES changed

Since I rebooted my Ubuntu server where my svn is installed, I cannot access it from my laptop. With svnX, when I try to browse my repertoire, I get an error message:

svn: Can't connect to host 'xxx.xxx': Address already in use

When I try to update any working copy, I get another error:

svn: Can't connect to host 'xxx.xxx': Operation timed out

The whole story is this:

  • When I first discovered that svn was not working, I suspected that my iptables script download did not accept svn connections ... which was true, so I changed my iptables rules so that svn connections were accepted
  • but it didn’t change anything: I get the same errors as before!

Here are my iptables now I rebooted and added SVN, is there an error in this?

Chain INPUT (policy DROP)
target     prot opt source               destination         
ACCEPT     all  --  anywhere             anywhere            state ESTABLISHED 
ACCEPT     all  --  anywhere             anywhere            
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:ssh 
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:www 
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:svn 
ACCEPT     icmp --  anywhere             anywhere            

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         
ACCEPT     icmp --  anywhere             anywhere            state NEW,RELATED,ESTABLISHED
+3
source share
1 answer

, .

, :

iptables -A INPUT -p tcp -i eht0 --dport 3690 -j ACCEPT

iptables -A INPUT -p tcp -i eth0 --dport 3690 -j ACCEPT 

eht eth?: (

, , , !

+3

All Articles