|
Re: configuring telnet on redhat linux 9 [message #99160 is a reply to message #99157] |
Wed, 08 September 2004 22:10 |
Daljit Singh
Messages: 290 Registered: October 2003 Location: Texas
|
Senior Member |
|
|
Hi,
login as root goto /etc/xinetd.d
There you will find different files for different services. To enable telnet open a file named telnet using
vi telnet
and just change the value of parameter "disable" to no. Similarly for ftp make changes in tftp file.
Daljit Singh.
|
|
|
|
|
|
Re: configuring telnet on redhat linux 9 [message #99225 is a reply to message #99160] |
Wed, 10 November 2004 03:43 |
Agenol Medina
Messages: 1 Registered: November 2004
|
Junior Member |
|
|
Hi Daljit,
As root I went to /etc/xinetd.d but there is no telnet file in it. But I saw it on another system.
I did ntsysv --level 345 and telnet does not appear as an option. Did I mis-install Redhat?
Thanks and sorry to be a bother
Agenol Medina
|
|
|
Re: configuring telnet on redhat linux 9 [message #99226 is a reply to message #99225] |
Wed, 10 November 2004 04:08 |
Dan Kingshott
Messages: 1 Registered: November 2004
|
Junior Member |
|
|
No you havn't installed RedHat incorrectly, it's most likely they havn't included the xinetd file for telnet or it has been removed as telnet is deprecated and insecure.
Consider using SSH (which will almost certainly be running by default) There's a free windows client available called putty, you should be able to google for it and find a download.
To enable telnet however, create a textfile /etc/xinetd.d/telnet and populate it with the following:
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}
HTH,
dan.
|
|
|
Re: configuring telnet on redhat linux 9 [message #99244 is a reply to message #99226] |
Tue, 14 December 2004 10:39 |
Rodney
Messages: 1 Registered: December 2004
|
Junior Member |
|
|
Dan,
I did what you recommended above and I am still not able to telnet into my server. Any ideas?
I'm running Linux AS 3
I tried restarting telnet and i also reboot to try to ensure that telnet would be reset but I'm still unable to telnet into the server.
Rod
|
|
|
|