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
ACCEPT all
ACCEPT tcp
ACCEPT tcp
ACCEPT tcp
ACCEPT icmp
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
ACCEPT icmp
source
share