- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: cannot telnet out
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
05-16-2002 04:00 AM
05-16-2002 04:00 AM
they both have entries in hosts for each machine but i cannot telnet from one machine to the other?
Thanks in advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 04:03 AM
05-16-2002 04:03 AM
Re: cannot telnet out
Are you wanting to dns for these machines?
Cheers
George
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 04:09 AM
05-16-2002 04:09 AM
Re: cannot telnet out
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 04:13 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 09:53 PM
05-16-2002 09:53 PM
Re: cannot telnet out
Is the telnet server installed? This question because, by default on RedHat 7.2 the telnet server are not automaticaly installed.
If the rpm is installed, is the /etc/xinet.d/telnet file correctly configured, and the 23 TCP port listening ( netstat -an |grep 23 )?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2002 01:53 AM
05-21-2002 01:53 AM
Re: cannot telnet out
Note that if you try to telnet on host as ROOT user, you should have modify the security rules, otherwise you should not be allowed to open a connection. file /etc/security to check.
HTH
Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2002 03:48 AM
05-21-2002 03:48 AM
Re: cannot telnet out
1) Have you installed telnet and telnet-server rpm in both linux boxes?
# rpm -qa | grep telnet
2) Have you enable both telnet by xinetd?
Edit /etc/xinetd.d/telnet
Disable=yes to Disable=no
then restart xinetd. (/etc/rc.d/init.d/xinetd restart)
3) Have you put hosts in /etc/hosts?
4) Have you checked /etc/hosts.allow and /etc/hosts.deny?
5) Do you want to use DNS?
If no, you don't need /etc/resolv.conf
6) Have you checked ipchains?
# /sbin/ipchains -L to see if
your config reject packets from others.
7) Are you trying to login as root?
On Linux system, root login over network is not allow.
Try other user instead.
8) Exactly what is the error message you see?
Connection refused? or no message at all?
Good luck