- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Cannot ping C3000 workstation
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
01-10-2005 05:37 AM
01-10-2005 05:37 AM
Cannot ping C3000 workstation
The network is OK going out with FTP, telnet and Netscape. Lanscan shows lan0 is up.
C3000, HP-UX 11.00, onboard nic, 100BT, network. Swapped cat 5 cable, tried different drop, Changed IP address. Anything else to check before I place a hardware call?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2005 05:51 AM
01-10-2005 05:51 AM
Re: Cannot ping C3000 workstation
if the MAC address connectivity is okay.
- Biswajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2005 06:57 AM
01-10-2005 06:57 AM
Re: Cannot ping C3000 workstation
what is your lan's netmask.
Is it set to 255.255.255.0 or something else.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2005 07:08 AM
01-10-2005 07:08 AM
Re: Cannot ping C3000 workstation
If you see a line like:
HP_BTLAN_STATION_ADDRESS[0]=0x080009C4686E
then remove it and reboot.
Also if we are not local to the machine and the default gateway does not respond to pings the connection will work for about 3 minutes after a reboot and then fail. This is dead gateway detection and is turned off by ndd option ip_ire_gw_probe which should be set to 0 to stop it from complaining.
FTP and Telnet like to use a DNS lookup to see who is calling. Test it with nslookup.
Use
lanadmin
lan
display
to look for Ethernet errors.
You don't say what the IP address is but sometimes if your IP address is in the first or last subnet of a divided class address HPUX will refuse to use it. There is an ndd option ip_check_subnet_addr which if set to 0 will stop HPUX from objecting to the address.
If you need to make an ndd change also make it in /etc/rc.config.d/nddconf
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2005 07:21 AM
01-10-2005 07:21 AM
Re: Cannot ping C3000 workstation
To diganose, i pull the C3000 off the network and then ping the address. If I get an answer, I know what the issue is and resolve it with the networking folk.
It is however equally possible that the hardware is bad. You might try isolating the box on its own hub and see if the situation improves. If yes, its environmental, if not, lets check the hardware.
xstm (requires X) cstm mstm can let you run the excercize function on the NIC card. If it has link it should execute and suceed. If it returns an error code call hardware support with it.
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
01-10-2005 09:17 AM
01-10-2005 09:17 AM
Re: Cannot ping C3000 workstation
To check - "ps -ef | grep inetd"
if you don't get anything - re-run the following...
To restart - you can a) /sbin/init.d/inetd start, or b) just type "inetd".
If it's happening often, open a support call.
In the meantime - you can write a small shell script to watch for it being up, and if it's every down, just restart it...
something like...
while /bin/true
do
if [ `ps -ef | grep inetd| grep -v grep | wc -l ` -eq 0 ]
then
/sbin/inetd start
fi
sleep 30
done
(Check out the script for errors - I just typed that in off the top of my head).
Anyways, if it is inetd - the above will tide you over until you get a real resolution...