- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problem with incoming network connections to box
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
04-11-2002 04:25 AM
04-11-2002 04:25 AM
#telnet myserver
Trying...
Connected to server.ip.address.
Escape character is '^]'.
(hangs)
#ftp myserver
Connected to server.ip.address.
(hangs)
I am currently building the system, and the last thing I did was put on 2 patches (PHCO_24777 and PHNE_24910). On reboot, telnet/ftp doesn't work.
In addition to the patches, I have previously done the bastion host hardening process (TCB conversion, removal of global write privileges and unneeded sticky bits etc).
The is nothing in the syslog.
Anyone have any ideas on this?
Cheers,
James
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2002 04:45 AM
04-11-2002 04:45 AM
Re: Problem with incoming network connections to box
Check your /etc/resolv.conf and /etc/nsswitch.conf files for DNS configuration. Make sure you can successfully resolve the IP addresses of your connecting hosts - add entries to /etc/hosts if need be.
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2002 04:49 AM
04-11-2002 04:49 AM
Re: Problem with incoming network connections to box
- make sure inetd is running
- make sure that syslog is running with the -D option
- make sure that /etc/inetd.conf has ftp running with the -l option so it will log
- make sure that /var/adm/inetd.sec does not have exclusions for ftp or telnet
- traceroute from your hp system to the system from which you are trying to ftp to makesure you have a network path between the two
HTH
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2002 04:55 AM
04-11-2002 04:55 AM
Re: Problem with incoming network connections to box
swlist -l fileset -a state | grep -v config
Anything that says installed is not finished. You can configure them best by rebooting the server.
It does sound like you may have removed something it needs, such as lines in inetd.conf.
Check this file and recycle the inet daemon using inetd -c.
Then check any amendments you may have made to inetd.sec.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2002 05:06 AM
04-11-2002 05:06 AM
Solutiontry:
telnet/ftp/rlogin with the IP address
and ensure whether the problem is occuring from any system logging to this server. To exclude any IP/hostname resolution issues, add the hostname/ip of the system you are logging from into the /etc/hosts file . (just for test).
Login from the console and try telnetting into the server iteself.
Make sure the patches are installed correctly.
The problem could also be with the telnet not getting a device file due to driver (pts,pty) corruption.
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2002 05:09 AM
04-11-2002 05:09 AM
Re: Problem with incoming network connections to box
The obvious things mentioned I have already checked. I get the same responses from 'telnet localhost' as from external systems, so it's not a intermachine communication problem. We don't use DNS, and I have checked the nsswitch.conf file.
I am thinking it's something to do with the the next stage after a network connection is initiated. Anyone know the login sequence off the top of their head? I believe it's something like...
1. inetd accepts a request
2. inetd calls the appropriate handler (e.g. telnetd)
3. telnetd creates a connection between the incoming network call and a pseudo terminal (pty).
4. login is called.
It seems to get to 2), but not to 4). Anyone know what could cause this?
Cheers,
James
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2002 05:17 AM
04-11-2002 05:17 AM
Re: Problem with incoming network connections to box
Part of the bastion host process is to remove global write privileges. I had re-added global write to most of the required files, but I had forgotten about /dev/pts/*. Once I chmod o+w these files, it works.
Thanks again,
James