| Summary: | ssh tunnel doesn't close after logout | ||
|---|---|---|---|
| Product: | Portable OpenSSH | Reporter: | jg |
| Component: | ssh | Assignee: | Assigned to nobody <unassigned-bugs> |
| Status: | CLOSED INVALID | ||
| Severity: | enhancement | CC: | djm, dtucker |
| Priority: | P5 | ||
| Version: | 7.2p2 | ||
| Hardware: | Other | ||
| OS: | Linux | ||
|
Description
jg
2017-09-18 20:32:10 AEST
(In reply to jg from comment #0) > I noticed that an SSH tunnel won't close until I exit Chrome Browser > that was using the tunnel. Shouldn't ssh force close of the > connection? No. In SSH2 the connection and the login are distinct things. > Try to terminate the ssh connection, and it won't > ubuntu@mypc:~$ logout No, you're terminating the interactive shell's channel, which is one of possibly many channels within the connection. If you really want to kill the connection regardless of how many channels are open then use the ~. escape sequence. As Darren mentioned, this is by design. closing resolved bugs as of 8.6p1 release |