- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- how to enable telnet in linux enterprise
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-01-2009 09:20 PM
тАО07-01-2009 09:20 PM
how to enable telnet in linux enterprise
i am having below error, i had cheched in services telnet is checked and running fine, can not telnet to this linux box, ssh is working fine, what is missing?
abcd:/root/home/testac> telnet pcras
Trying...
telnet: Unable to connect to remote host: No route to host
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-01-2009 09:44 PM
тАО07-01-2009 09:44 PM
Re: how to enable telnet in linux enterprise
# 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 = yes
}
You can create this file and as prior poster says change "disable = no"
Also run "iptables" and verify you aren't excluding everything. You might need to open up telnet's port there if you are.
if you can't connect to the telnet server try to change firewall setting.
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-01-2009 09:49 PM
тАО07-01-2009 09:49 PM
Re: how to enable telnet in linux enterprise
pls. let me know in simple way, thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-01-2009 09:54 PM
тАО07-01-2009 09:54 PM
Re: how to enable telnet in linux enterprise
sorry i forgot to send you wich file should be edited : /etc/xinit.d/telnet
i think there is a firewall setting that don't permit you to connect telnet server on your remote host.
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-01-2009 10:11 PM
тАО07-01-2009 10:11 PM
Re: how to enable telnet in linux enterprise
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-01-2009 10:13 PM
тАО07-01-2009 10:13 PM
Re: how to enable telnet in linux enterprise
ok connect to the remote server via SSH,
and test telnet localhost,
if its working them the problem is on the network layout or firewall setting.
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-01-2009 10:48 PM
тАО07-01-2009 10:48 PM
Re: how to enable telnet in linux enterprise
what we need to verify to enable telnet now?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2009 11:07 AM
тАО07-02-2009 11:07 AM
Re: how to enable telnet in linux enterprise
use nmap if your remote server have opened port for telnet session, but i think this is a typical problem with the network or firewall.
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2009 11:20 AM
тАО07-02-2009 11:20 AM
Re: how to enable telnet in linux enterprise
use iptables -L
if the telnet connection on your server is disabled, or you could use
on the remote server :
telnet IP_of_your_server ( instead of localhost )
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2009 11:32 AM
тАО07-02-2009 11:32 AM
Re: how to enable telnet in linux enterprise
telnet server might not be installed.
yum -y install telnet-server
#name varies by distribution.
After editing the /etc/xinit.d/telnet file change disable=yes to disable=no
# so intuitive.
/etc/init.d/xinetd restart
netstat -an | grep ::23 "
# confirms telnet is listening
You do know of course that ssh does everything telnet does and is secure.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2009 05:43 PM
тАО07-02-2009 05:43 PM
Re: how to enable telnet in linux enterprise
Check the firewall setting for the host.
#iptables -L
Check the SE Linux status:
# sestatus
Good Luck!!