Setting up a telnet daemon
So now I'm at college (whoooo!) and I'd like to set up
some sort of telnet service.
I'd like to access my data from the Solaris labs. Now
it would be possible to upload all the data to the Netware servers (we
get some piddling amount of server space) and get a client for the Solaris
machines, but I'd like to set up some sort of telnet
Use SSH. Telnet should never be used over an insecure
network. SuSE probably installed SSH by default and you just need to figure
out if it's running and enable the server if it isn't. Solaris has an SSH
client and you can store a Putty executable on your network drive for Windows
access. SSH also has sftp and scp for file transfers. Novell offers a client
for Linux.
Secure Shell (ssh) is good, but if you just want telnet,
you probably want to use the inet daemon.
# /etc/rc.d/init.d/inet start or, in more recent distros, you will need to modify the /etc/xinetd.d/telnet file and change this line: disable = yes to disable = no and then restart the daemon: # service xinetd restart or, if that doesn't work: # /etc/rc.d/init.d/xinetd restart
To get ssh working, you may want to modify the config file /etc/ssh/sshd_config. Otherwise, simply load the daemon: # service sshd restart or, if that doesn't work (similar to above): # /etc/rc.d/init.d/sshd restart Once again, none of this may work on Suse. Good luck.
Okay, If I'm understanding you guys correctly, I just
need to keep sshd running to watch for incoming connections (if I
Whee! It works! Thanks all!
Have a Linux Problem
Linux Books
Linux Home: Linux System Administration Hints and Tips (c) www.gotothings.com All material on this site is Copyright.
|