View previous topic :: View next topic |
Author |
Message |
Bigun Advocate
Joined: 21 Sep 2003 Posts: 2198
|
Posted: Tue Aug 23, 2005 2:19 pm Post subject: Rsync server not working [solved] |
|
|
I had a funtioning Rsync server until I turned it into a router.
All I know is now whenever a machine attempts to sync, it times-out and rsyncd *IS* running on the server. Could an IP table I had set cause this? _________________ "It's ok, they might have guns but we have flowers." - Perpetual Victim
Last edited by Bigun on Tue Aug 23, 2005 5:44 pm; edited 1 time in total |
|
Back to top |
|
|
m_sqrd Guru
Joined: 18 Jul 2005 Posts: 367
|
Posted: Tue Aug 23, 2005 2:25 pm Post subject: |
|
|
are you blocking port rsync 873/tcp |
|
Back to top |
|
|
Bigun Advocate
Joined: 21 Sep 2003 Posts: 2198
|
Posted: Tue Aug 23, 2005 2:30 pm Post subject: |
|
|
That's another problem, I have no idea. I setup NAT routing, how do I check if I may have blocked it? _________________ "It's ok, they might have guns but we have flowers." - Perpetual Victim |
|
Back to top |
|
|
Bigun Advocate
Joined: 21 Sep 2003 Posts: 2198
|
Posted: Tue Aug 23, 2005 2:53 pm Post subject: |
|
|
Here is my IPTable list:
Code: | surfer ~ # iptables --list --line-numbers
Chain INPUT (policy ACCEPT)
num target prot opt source destination
1 ACCEPT all -- anywhere anywhere
2 ACCEPT all -- anywhere anywhere
3 REJECT udp -- anywhere anywhere udp dpt:bootps reject-with icmp-port-unreachable
4 REJECT udp -- anywhere anywhere udp dpt:domain reject-with icmp-port-unreachable
5 ACCEPT tcp -- anywhere anywhere tcp dpt:ssh
6 ACCEPT tcp -- anywhere anywhere tcp dpt:ssh
7 DROP tcp -- anywhere anywhere tcp dpts:0:1023
8 DROP udp -- anywhere anywhere udp dpts:0:1023
Chain FORWARD (policy ACCEPT)
num target prot opt source destination
1 DROP all -- anywhere 192.168.0.0/16
2 ACCEPT all -- 192.168.0.0/16 anywhere
3 ACCEPT all -- anywhere 192.168.0.0/16
Chain OUTPUT (policy ACCEPT)
num target prot opt source destination
surfer ~ # |
_________________ "It's ok, they might have guns but we have flowers." - Perpetual Victim |
|
Back to top |
|
|
Bigun Advocate
Joined: 21 Sep 2003 Posts: 2198
|
Posted: Tue Aug 23, 2005 5:45 pm Post subject: |
|
|
I got it, eth0 wasn't included in the accept policy. _________________ "It's ok, they might have guns but we have flowers." - Perpetual Victim |
|
Back to top |
|
|
|