- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- telnet through cross cable
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
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
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
03-03-2002 11:28 PM
03-03-2002 11:28 PM
telnet through cross cable
But I can only do ftp from hpux to my notebook. I cannot do a ftp from my notebook to the hpux.
I cannot telnet to the hpux server either.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2002 11:49 PM
03-03-2002 11:49 PM
Re: telnet through cross cable
YOur ftp works, so the network connection is ok. Have the inetd.conf and the telnet daemon on the HP-UX machine checked. MAy the setup for telnet on your notebook needs a little attention too.
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2002 11:59 PM
03-03-2002 11:59 PM
Re: telnet through cross cable
Check for any restrictions on your HP-UX server in
1) /var/adm/inetd.sec
2) tcpwrapper rules in tcpd.conf
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 12:05 AM
03-04-2002 12:05 AM
Re: telnet through cross cable
>> 2) tcpwrapper rules in tcpd.conf
Configuration files to check should be hosts.allow and hosts.deny.
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 12:31 AM
03-04-2002 12:31 AM
Re: telnet through cross cable
-Vijay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 09:48 AM
03-04-2002 09:48 AM
Re: telnet through cross cable
(or
netstat -a |grep telnet depending on what you are trying to do. It's not clear from your post.) If listening should say:
tcp 0 0 *.ftp *.* LISTEN
If it's not listening then you will get a message back when you try to connect which says Connection Refused.
Look at /etc/inetd.conf
if it isn't listening. There should be 2 lines:
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l
telnet stream tcp nowait root /usr/lbin/telnetd telnetd
Add which ever is missing somewhere near the top of the fiel. Save it.
Now check
/etc/services and make sure it says:
ftp-data 20/tcp # File Transfer Protocol (Data)
ftp 21/tcp # File Transfer Protocol (Control)
telnet 23/tcp # Virtual Terminal Protocol
(You don't need the stuff after the #)
Now do
inetd -c
which should cause it to reread the inetd.conf file.
Now try netstat -a|grep ftp.
ftp also likes to have its own directory. Usually /home/ftp.
If you are connecting but not being asked to log on or not being accepted then it's a permission issue. But let us know if this part works before we go into that.
Ron