I want to demonstrate serial communications in a class. Is it possible/how to set up a good old port 23 unencrypted console service in Ubuntu?
I want to demonstrate serial communications in a class. Is it possible/how to set up a good old port 23 unencrypted console service in Ubuntu?
You can install and start a telnet server with this small process. For your information, telnet default port is not 22 (ssh) but 23.
Edit the file
/etc/inetd.conf
and comment out the following lineThen restart inet server.
To snif packages, use then tcpdump. You can install with the following command.
Use the following command to display the traffic on port 23 (keep the terminal open, and open a new one).
Finally, run telnet on your computer.
Login with your local account, you will see the written text in clear into tcpdump.