Operating System - HP-UX
1819915 Members
2251 Online
109607 Solutions
New Discussion юеВ

Re: telnet login taking 3 minutes time to remote guest

 
Md. Alamgir Khan
Occasional Advisor

telnet login taking 3 minutes time to remote guest

Hi there
When i try to telnet login from My Loptap to HP-UX 11i v1 model rp7420 server but the HP-UX machine it takes 3 minuits.

When i start the HP-UX server then the below services take long time . Services are
snmp mib-2, snmp hp, nfs client , hp distributed printer service. hp fiber chanel fcd mass storage interface ,xprint server(s), CDE loging server.

Please help me solve the problem.
Regards

Md.Alamgir Khan

3 REPLIES 3
Steven E. Protter
Exalted Contributor

Re: telnet login taking 3 minutes time to remote guest

Shalom,

This is almost always DNS related.

1) See if you can ping the listings in /etc/resolv.conf
2) See if it works faster using the numeric ip address to connect.
3) tail -f /var/adm/syslog/syslog.log on the 7420 to see if there are errros.
4) Check overall performance http://www.hpux.ws/system.perf.sh
5) ipconfig /all on the laptop

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
sajeer_2
Regular Advisor

Re: telnet login taking 3 minutes time to remote guest



Hi Alamgir,

Check your DNS settings.

Check /etc/nsswitch.conf and /etc/resolv.conf files.

Configure /etc/nsswitch.conf to check /etc/hosts file first for resolving the hostnames.
Following sample nsswitch.conf try to resolve hostname from /etc/hosts first and then from dns server.
-------------------------------------------
bash-3.00# cat /etc/nsswitch.conf
#
# /etc/nsswitch.compat:
#
# @(#)B11.23_LR
#
# An example file that could be copied over to /etc/nsswitch.conf; it
# uses NIS (YP) in conjunction with files.
#

passwd: compat
group: compat
hosts: files dns [NOTFOUND=return]
ipnodes: files
networks: nis [NOTFOUND=return] files
protocols: nis [NOTFOUND=return] files
rpc: nis [NOTFOUND=return] files
publickey: nis [NOTFOUND=return] files
netgroup: nis [NOTFOUND=return] files
automount: files nis
aliases: files nis
services: nis [NOTFOUND=return] files
bash-3.00#
-----------------------------------------

Also confirm /etc/resolv.conf has the correct entries.

bash-3.00# cat /etc/resolv.conf
domain yourdomain.com
nameserver 10.10.10.10 (IP address of ur DNS server)
bash-3.00#
--------------------------------------------

Looks like all the delays while booting is related to same problem.Once you resolve main issue other problems will be solved.
Procnus
Frequent Advisor

Re: telnet login taking 3 minutes time to remote guest