- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: How do link a redhat 9 and win xp
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
09-07-2004 09:27 PM
09-07-2004 09:27 PM
I am having a linux redhat9 and a xp pro system linked together by a linksys router.. what can I do to telnet my linux from my Xp?
thank you for your answer!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2004 09:57 PM
09-07-2004 09:57 PM
Re: How do link a redhat 9 and win xp
Try to ping to linux from XP.
If it works-see if the telnet-server is installed on Linux:
rpm -q telnet-server
if this command gives you the version of the server package installed -then it's installed.
simply run chkconfig telnet on
and try to telnet again.
Remember that by default you can't connect as root via telnet.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2004 04:46 AM
09-08-2004 04:46 AM
Re: How do link a redhat 9 and win xp
Wat if I the rpm command give an error. does it means that telnet isnt installed.. how can i rectify that?
thanks!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2004 04:59 AM
09-08-2004 04:59 AM
Re: How do link a redhat 9 and win xp
Check for the existence of the file /etc/xinetd.d/telnet
if it's there-the telnet is installed.
Otherwise you'll have to install it.
The command to install:
rpm -ivh telnet-server-0.17-25.i386.rpm
(if you install from the installation media of rehdat9).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2004 08:49 AM
09-08-2004 08:49 AM
Re: How do link a redhat 9 and win xp
telnet protocol is not typically installed on Linux systems unless you specify. The ssh protocol is the standard.
On the XP, you can get putty to do the connection to port 22 of the Linux system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 08:16 AM
09-09-2004 08:16 AM
Re: How do link a redhat 9 and win xp
ping
If it works, verify that telnetd is on your linux disk with :
cd / ; find . name "telnetd"
If telnetd is installed, but no connection is possible, it is certainely a security problem : i know that RH is a very secured linux system.
Olivier.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 02:35 PM
09-09-2004 02:35 PM
Re: How do link a redhat 9 and win xp
Henry,
When you built you red hat 9 system what did you answer on the question about the firewall. If you said yes, that's why telnet does not work. To check: iptables -L
To flush all rules: iptables -F
Now try again telnet.
And as someone else already said try PuTTY from Windows to connect to linux over ssh to port 22.
PuTTY is free:
http://www.chiark.greenend.org.uk/~sgtatham/putty/
btw, PuTTY can also be used for telnet.
HTH,
Ross
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 07:36 PM
09-09-2004 07:36 PM
Solutionyou should use the ssh protocol instead of telnet because ssh is much more safer then telnet and you have not to change any configuration.
if you realy want to use telnet run "ntsysv" in this tool you can select the services which you want to run. if you find no telnet service in the list it is not installed. if you have selected the telnet service and clicked ok. you have to start telnet service (after a reboot telnet service will be automaticaly startet) if you don't want to reboot do:
cd /etc/rc.d/init.d
./xinetd restart
you can not login as root, unless you change the configuration, but you can login as normal user and "su" to get root rights.
But please use ssh service on linux and putty on windows, it's much more safe.