- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- telnet problem
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-02-2006 03:40 AM
05-02-2006 03:40 AM
I have HP-UX 11.11 Os on rp5430 server,first I have no problem in my network, I try to telnet to the server it takes long time until I get any response,I try to ftp to it ,it does not responed, I then restart it nothing happened , where the problem may be and how could I solve it.
BR;
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2006 03:47 AM
05-02-2006 03:47 AM
Re: telnet problem
Most usual problem here is DNS response./
Look up the ip address of the system and use that instead of hostname
telnet hostname
becomes
telnet 192.168.0.10
if indeed the response to a numeric connect if faster, its a Name resolution issue.
check /etc/nsswitch.conf host resolution and see if files or dns is first
if files is first, install support for the hostnames you connect to in /etc/hosts
You may wish to do this anyway as a backup.
If you prefer dns resolution, then check the zone records and see that there is a record for the server.
DNS involves these files:
/etc/resolv.conf # what servers resolve names, this may require change.
/etc/named.conf # runs bind/named daemon if running
/etc/nsswitch.conf
/etc/hosts # if refferred to in nsswitch.conf
If nsswitch.conf does not exist there are several copies after install. nsswitch.nis nisswitch.files etcetera.
Pick the one you think works best with your networking and make it via cp or mv /etc/nsswitch.conf
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2006 03:53 AM
05-02-2006 03:53 AM
Re: telnet problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2006 02:27 PM
05-02-2006 02:27 PM
SolutionI would suggest trying to resolve the IP address of your PC on the rp5430. Our workaround until the DNS was sorted out was to modify /etc/nsswitch.conf to read:
hosts: files [NOTFOUND=return UNAVAIL=continue] dns [NOTFOUND=return UNAVAIL=continue TRYAGAIN=return]
Once the DNS was sorted the return in files was changed to continue.
Cheers
Steven
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2006 03:04 PM
05-02-2006 03:04 PM
Re: telnet problem
Bill Hassell, sysadmin