All,
I think the reason that nodes on the 44 Network cannot reach me is that my router is not allowing connections from the Internet to pass through.
My setup:
Router 1 WAN 76.114.216.250 <> LAN 192.168.x.x <>
Router 2 WAN 192.168.x.2 <> LAN 192.168.y.x
AMPRGW 192.168.y.5
In trying to setup IPTABLES commands to allow IPIP traffic, I've had no success thus far.
On Router1: iptables -t filter -I INPUT -p ipip -j ACCEPT iptables -t filter -I FORWARD -p ipip -j ACCEPT iptables -t nat -I PREROUTING -i vlan1 -p ipip -j DNAT --to-destination 192.168.x.2
On Router2:
iptables -t filter -I INPUT -p ipip -j ACCEPT iptables -t filter -I FORWARD -p ipip -j ACCEPT iptables -t nat -I PREROUTING 1 -s 169.228.66.251 -p ipip -i vlan1 -j DNAT --to-destination 192.168.y.5 iptables -t nat -I PREROUTING 2 -p ipip -i vlan1 -j DNAT --to-destination 192.168.y.5
Any ideas?
-Lynwood KB3VWG