I remember using telnet on a Palm Pilot, linked to the internet via IRDA to my (pre-smart) cell phone to log into my companies’ server to fix something while I was on holidays.
Comment on 2026-01-14: The Day the telnet Died
dparticiple@sh.itjust.works 3 weeks ago
I share the author’s nostalgia for Telnet, as a kid who spent many lost hours trying to telnet into “interesting things” at the dawn of the internet. It is, however, long past time for the protocol to die and force ancient and insecure things to be retired. Thus might just do it.
Treczoks@lemmy.world 2 weeks ago
dparticiple@sh.itjust.works 2 weeks ago
Similar memories here. The first time I went on IRC using a Palm Pilot connected to a Ricochet modem, while in a moving vehicle (not driving!) felt like magic.
Treczoks@lemmy.world 2 weeks ago
For me, it was not while moving, but while sitting on the beach.
how_we_burned@lemmy.zip 2 weeks ago
I share the author’s nostalgia for Telnet, as a kid who spent many lost hours trying to telnet into “interesting things” at the dawn of the internet.
We had a transmitter on our building for satalite backhaul. I used to have fun using it to telnet into various stuff in orbit.
You’d be surprise at how many times they didn’t even bother with credentials.
dparticiple@sh.itjust.works 2 weeks ago
Indeed, it’s amazing how much stuff was / is out there in the open.
Hobbyist use of unencrypted protocols like telnet can be very educational, and the other commenter is right that not everything needs to be encrypted, especially within the confines of a homelab, for instance.
My support for ending telnet use is much more about things like IoT systems, industrial hardware and so on talking in the clear and being vulnerable to compromise.
This isn’t about telnet, per se, but is a good example of the problem: news.satnews.com/…/russia-intercepts-europes-key-…
adespoton@lemmy.ca 3 weeks ago
But telnet is just a bidirectional TCP connection. You can run any terminal emulation you want over it, and run it on any port you want.
The telnetd service on the other hand… that has no reason to still be internet-facing.
dparticiple@sh.itjust.works 3 weeks ago
Good point. I was referring more to telnetd as an unencrypted client-server protocol, typically to port 23. Often unauthenticated, ripe for MITM attacks.
That needs to end.
cecilkorik@piefed.ca 3 weeks ago
Hopefully nobody uses it for actual remote system access anymore, but it’s still a great protocol (well… “great” with some caveats) for things like MUDs and BBSes and other toys. I’m pretty sure you can even use it for IRC or IMAP or HTTP if you know what you’re doing. Is it secure? Of course not. That’s why we use modern protocols using SSL or TLS when we need security. But we don’t always need security.
Sure, telnet is not secure. But neither is, say, Minecraft. Because it’s a game. It’s not that important and in some ways it’s actually frustrating. There are pros and cons. It sucks if people are cheating or you get griefed or you get your account hacked or some other shit hacked, oh well, it’s a game, all you need to do is go outside and touch some grass about it. Not everything in life needs to be bank-vault secure. Sometimes it’s fun to just play around with raw text that doesn’t have ironclad security rules and certificates and key renegotiation guardrails built around it. Just go spew some text at some other protocol and see what it says. It’s fun and educational. I love telnet.
FauxPseudo@lemmy.world 3 weeks ago
I used to debug POP3 issues by going through sessions one line at a time via telnet. Occasionally HTTP sessions too.
adespoton@lemmy.ca 3 weeks ago
I used to send messages by hand over SMTP using a telnet client.
floquant@lemmy.dbzer0.com 2 weeks ago
Any reason to pick that over netcat though?
adespoton@lemmy.ca 2 weeks ago
These days, not really, except that netcat has wider capabilities and so often triggers security alarms when used.