Displaying 2 results from an estimated 2 matches for "wan_ip".
Did you mean:
lan_ip
2018 Jul 20
1
1.1pre16 multiple address behavior
...0 installation from 1.1pre15 to 1.1pre16 and it appears that hosts with multiple address are behaving differently.
My host file looks like this:
-----BEGIN RSA PUBLIC KEY-----
...
-----END RSA PUBLIC KEY-----
Ed25519PublicKey = ...
Subnet = ...
Address = ...LAN_IP...
Address = ...WAN_IP...
In 1.1pre15 eventually my machine would establish a meta-connection to the WAN IP, but after the upgrade my log looks like this:
Timeout while connecting to remoteness (LAN_IP port 655)
Closing connection with remoteness (LAN_IP port 655)
Could not set up a meta connection to remoteness...
2020 Aug 04
0
[Bug 1448] New: SNAT/DNAT/Masquerading not working for UDPLite protocol
...ptables -A FORWARD -i br-lan -o br-wan -j ACCEPT
, and it seems the packet are NAT'd as a general IP packet (the server receives
a lan ip address).
Then I tried to add the following NAT rules but it cannot match to any packet.
iptables -I POSTROUTING 1 -tnat -j SNAT -p udplite -o br-wan --to [wan_ip]
iptables -I PREROUTING 1 -tnat -j DNAT -p udplite -i br-lan --to [lan_ip]
The tool I wrote for testing this behavior is hosted at
https://github.com/nicholascw/SLOWProxy/tree/develop/gadgets/udpliteping, which
is a simple ping-n-pong sketch.
--
You are receiving this mail because:
You are watch...