Skip to content
New issue

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

Modify keepAliveLoop to async for enabling timeout on no-response ping #488

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

naisy
Copy link

@naisy naisy commented Jan 12, 2024

Usage Environment:

  • The chisel server operates with a fixed IP address.
  • The chisel client frequently changes its IP address when using mobile phone networks.
  • The chisel client uses both tunneling and reverse tunneling.

Problem:

  • In the keepAliveLoop, the ping transmission part does not have a timeout. Consequently, if there is no response, the process halts. This leads to the SSH port not being released.
  • Although new clients with new IP addresses can send data to the server, reverse tunneling is limited to communication between one server port and one client. Therefore, when the client's IP changes, the server cannot send data to the new client. This issue persists until the chisel server is restarted.

Solution:

  • Modify the ping process to be asynchronous. If there is no response within the specified keepalive time, the established SSH connection will be closed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant