- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- telnet don't work
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
Forums
Discussions
Discussions
Discussions
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
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
12-05-2001 07:40 AM
12-05-2001 07:40 AM
telnet don't work
I just installed a Mandrake 7.2 Linux box, and when I try to telnet from other machine I obtain the message "Conexion refused by host", but when from the linux box I do telnet to other box all works fine.
Somebody can help me?
Thanks in Advance.
Justo.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2001 08:59 AM
12-05-2001 08:59 AM
Re: telnet don't work
#telnet stream tcp nowait root /usr/sbin/tcpd in.telnetd
from /etc/inetd.conf or similar and restart the inetd service. Check also the file /etc/hosts.allow, if you want accept just telnet connections (inetd services) use:
in.telnetd: ALL
or
in.telnetd: xxx.xxx.xxx. from a network
or
in.telnetd: xxx.xxx.xxx.xxx
you can use both too...
Ok?
Leandro.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2001 09:02 AM
12-05-2001 09:02 AM
Re: telnet don't work
in.telnetd: xxx.xxx.xxx., xxx.xxx.xxx.xxx
where xxx.xxx.xxx. for a network and xxx.xxx.xxx.xxx for IP address.
Leandro.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2001 03:35 AM
12-06-2001 03:35 AM
Re: telnet don't work
I suppose Mandrake 7.2 uses xinetd. If so, in /etc/xinetd.d/telnet, you have a line like:
disable = yes
it's the default for most of the daemons. Change it to 'no' and /etc/rc.d/init.d/xinetd restart
E.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2001 05:33 AM
12-06-2001 05:33 AM
Re: telnet don't work
Hope this helps.
-Santosh