how to start telnet service on fedora17
how to start telnet service on fedora17 i don't know how to use systemctl command
how to start telnet service on fedora17 i don't know how to use systemctl command
Fedora maintains a wiki page about systemd & systemctl.
But on Fedora 17 the telnet server is treated by xinetd
.
sudo systemctl start xinetd.service
sudo chkconfig telnet on
sudo netstat -t -a -p | grep xinetd
.and if it is positive, you can test locally => telnet localhost
.
yes,it doesn't work, there is no telnet.service command
The first step to start telnet service is: DON'T. It's insecure: anything you type, including your password, will be in plaintext, visible to anyone with a packet sniffer. Telnet has long been superseded by OpenSSH for shell access.
Assuming that you know that, and have a good reason to run a telnet service, here's what you'd need to do to start it:
As root,
yum install telnet-server
systemctl start telnet.socket
And if you want it to run on boot,
systemctl enable telnet.socket
If you want outside access to your telnet service, you'd need to poke the appropriate holes in your firewall. Which, again, would be a bad idea.
telnet.socket Loaded: error (Reason: No such file or directory) Active: inactive (dead)
Asked: 2013-07-30 04:53:33 -0600
Seen: 20,426 times
Last updated: Jul 30 '13