It’s surprising that using a non-standard listening port will cause peers to actively avoid connecting to you, is it sensible to add this to the help message and the warnings on startup if people have changed the default? I can’t find this behavior mentioned anywhere except for the comments in net.cpp.
0// do not allow non-default ports, unless after 50 invalid addresses selected already
1if (addr.GetPort() != Params().GetDefaultPort() && nTries < 50)
2continue;
https://github.com/bitcoin/bitcoin/blob/master/src/net.cpp#L1369