We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was trying to connect to a host on port 10022 and this was consistently not working.
When I looked in our SOCKS logs, I saw the connection was being attempted on port 10061
I believe the code in question is https://github.com/sshnet/SSH.NET/blob/develop/src/Renci.SshNet/Session.cs#L2150
10022 / 255 = 0x27 10022 % 255 = 0x4D
0x274D == 10061 != 10022
If I change the port to 9983, then I can trick it into working
The text was updated successfully, but these errors were encountered:
adeeb8c
👍
Sorry, something went wrong.
@chrismasters 2020.0.0-beta1 is now available, and includes this fix.
drieseng
No branches or pull requests
I was trying to connect to a host on port 10022 and this was consistently not working.
When I looked in our SOCKS logs, I saw the connection was being attempted on port 10061
I believe the code in question is
https://github.com/sshnet/SSH.NET/blob/develop/src/Renci.SshNet/Session.cs#L2150
10022 / 255 = 0x27
10022 % 255 = 0x4D
0x274D == 10061 != 10022
If I change the port to 9983, then I can trick it into working
The text was updated successfully, but these errors were encountered: