- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: cold install; lost lan connection
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
Discussions
Discussions
Discussions
Forums
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
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
тАО02-06-2003 08:52 AM
тАО02-06-2003 08:52 AM
Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2003 09:04 AM
тАО02-06-2003 09:04 AM
Re: cold install; lost lan connection
odds are you need to change 'INTERFACE_NAME[0]=lan2' to 'INTERFACE_NAME[0]=lan0'.
Share and Enjoy! Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2003 09:06 AM
тАО02-06-2003 09:06 AM
Re: cold install; lost lan connection
If you know you're cabled to the right NIC (or port on NIC), then I'd suspect a mismatch in speed/duplex setting between it & the switch/hub port.
Ask your network team to verify the setting on the port & have them match whatever you want on the NIC (100FD ?).
Then just do a
/sbin/init.d/net stop
/sbin/init.d/net start
from the console as you'll lose connectivity when you stop.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2003 09:10 AM
тАО02-06-2003 09:10 AM
Re: cold install; lost lan connection
Do an ioscan -f > /tmp/ioscan.out.
Edit ioscan.out file and make sure you do not see anything in UNCLAIMED OR UNKNOWN state. If so, then the drivers are missing. If everything is showing up correctly, then I would check the speed. If you were using it in 100 mode, then you may have to set the speed to 100 Full duplex.
Do lanadmin -x 0 and observe the speed if it does not say 100 Full duplex Auto-off then change it by using
lanadmin -X 100FD 0
Ping to the broadcast IP or your default router and see if you get any response at all.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2003 09:15 AM
тАО02-06-2003 09:15 AM
Re: cold install; lost lan connection
is the card enabled in SAM?
if none of the above fix anything
uninstall the drive
swremove
the re-install it (with 11i version)
drivers are funny sometimes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2003 09:56 AM
тАО02-06-2003 09:56 AM
Solutionlanadmin
lan
display
should show two ups.
If lanadmin looks OK and you see packet in and out then
netstat -rnv
and check for the default gateway and that your masking is correct.
Try to ping another device on the local LAN. If that works then ping the default gateway. If pinging the default gateway fails then you probably have the dead gateway problem where the gateway doesn't like to respond to pings so HPUX says the gateway is down. Either get the router to allow pings or make a change to ndd to turn it off.
ndd -set /dev/ip ip_ire_gw_probe 0
Put the same info in /etc/rc.config.d/nddconf so it will stay after a reboot.
IF the local ping doesn't work then try a linkloop test to another device on the local LAN. Use the -v option to get the verbose output and you may learn something about why it doesn't work.
If lanadmin shows it as up down then the cable is disconnected or its idea of which is lan0 is different from yours.
If it says its admin down then you have to look at your netconf.
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2003 10:07 AM
тАО02-06-2003 10:07 AM
Re: cold install; lost lan connection
Your message did say "arp shows other connections on the immediate network". This means you are able to talk to other nodes in the same subnet?. If so, the problem is simply with the default router.
Do a
#netstat -rn
Make sure you have an entry "default" specified and it is a router. If not, then add the default router with the following command
#route add default ip_of_default_router 1
Then ping. If it works, then fix the entries in your /etc/rc.config.d/netconf by searching for "ROUTE".
Or get your old netconf file from 11.0 system. Edit it and replace lan2 with lan0. Do a /sbin/init.d/net stop and /sbin/init.d/net start. Everything should come up fine.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2003 01:26 PM
тАО02-06-2003 01:26 PM
Re: cold install; lost lan connection
Thanks again to all for the speedy responses!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-30-2003 02:19 AM
тАО03-30-2003 02:19 AM
Re: cold install; lost lan connection
Thank you !!!!!