Re: ssh issue that I don't understand
Nicolas George <[email protected]> Wed, 8 Jul 2026 15:15:26 +0200
| Newsgroups | gmane.linux.debian.user |
|---|---|
| Message-ID | <[email protected]> |
Chris Green (HE12026-07-08): > telnet <server> <port number> Better use netcat / nc for that: telnet has an escaping character and does tty control, that could interfere with your interaction with the server. And if you can change the syntax a little: socat - tcp:server:port is extremely more powerful. Regards,