Displaying 2 results from an estimated 2 matches for "l886".
Did you mean:
886
2016 Dec 29
3
Change default Server ports
I'm using Tinc 1.1pre14 and I'm trying to connect a node that is behind a
firewall that blocks all non-standard ports.
I set up a rule in the server to redirect port 25 (that is not used in the
server right now) to port 655, both in tcp and udp protocols, and set up
the port 25 in the server host configuration file.
The client can reach the server, but after the initial sync and key
2016 Dec 30
0
Change default Server ports
...#39;re experiencing this problem is because tinc
does not use the connection TCP port to determine which port to send UDP
packets to. Instead, it uses the port that is *advertised* by the other
node.
https://github.com/gsliepen/tinc/blob/06b820133285f83f7e1a839cccbed13358b84081/src/protocol_auth.c#L886
That means that if node A is configured with UDP port 655, that's the UDP
port it will advertise to node B when it connects and that's what node B
will use, even if node B used a different TCP port to establish the
metaconnection.
I'm not sure why you didn't encounter this problem...