Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to telnet into redhat 7.1

Status
Not open for further replies.
May 1, 2001
16
0
0
US
Has someone successfully activated the telnet server on Redhat 7.1? inetd changed to xinetd with a new style configuration file. The examples in the man page didn't work. Am I missing something?
Wayne / willywonka
 
From my experience you need to DELETE the \etc\securetty file. Then edit (vi) the \etc\ftpuser and pet a pound sign (#) in front of root. (#root)

This is my experience with redhat 6.2 and 7.0 James Collins
Computer Hardware Engineer
A+, MCP

email: butchrecon@skyenet.net
 
I have a fresh RH 7.1 Installation... All I did to get it going was to change the
Code:
disable
line below, from yes to no... This is from
Code:
/etc/xinet.d/telnet
file... Remember to restart xinetd after the schange for this to take effect
Code:
/etc/rc.d/inet.d/xinetd restart

Suggest you look at using SSH rather than Telnet as it is more secure, and is part of most of the default installations of RH7.1... otherwise look at
Adjusted telnet file below:

Code:
# default: on
# description: The telnet server serves telnet sessions; it uses #	unencrypted username/password pairs for authentication.
service telnet
{
	flags		= REUSE
	socket_type	= stream        
	wait		= no
	user		= root
	server		= /usr/sbin/in.telnetd
	log_on_failure	+= USERID
	disable		= no
}


AV
tnedor@yahoo.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top