- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ifconfig of lan1 is getting "unplumb'd" across a b...
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
03-08-2012 10:20 AM
03-08-2012 10:20 AM
ifconfig of lan1 is getting "unplumb'd" across a boot
We have two rx2660's running HPUX 11.31. LAN0 is our primary NIC and works fine and the ifconfig info stays across a re-boot. However, the ifconfig of LAN1 does NOT stay config'd across a re-boot (after boot says: ifconfig: no such interface). This behavior happens with LAN1 whether there is a cable connected to the LAN1 NIC or not!
This behavior is identical on both of the rx2660's! On both servers, the LAN1 NIC had been talking (successfully) to a NetAPP array in the past (prior boots). If I boot the server, config the LAN1 port and re-boot; the config goes away; with out a cable even connected to LAN1!
Any ideas as to what might be causing the loss of ifconfig info across a boot?
TIA,
Lee
- Tags:
- ifconfig
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2012 10:39 AM
03-08-2012 10:39 AM
Re: ifconfig of lan1 is getting "unplumb'd" across a boot
/etc/rc.config.d/netconf
for typos.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2012 11:31 AM
03-08-2012 11:31 AM
Re: ifconfig of lan1 is getting "unplumb'd" across a boot
/etc/rc.config.d/netconf is where the LAN card settings are stored. If netconf is correct for LAN1, then you probably have junk files in that directory. /etc/rc.config.d is the one directory where you CANNOT store old files! Every file in that directory will be executed on bootup, netconf, netconf.old, netconf.old.1 and so on -- in that order! So the old junk files are setting your values. If you need to save an old copy, create an old directory:
mkdir /etc/rc.config.d/old
Then mv all the junk files to that directory.
To see all the changed files, use:
ls -lart /etc/rc.config.d
The oldest files are at the bottom...these are the ones that have recently changed.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2012 01:43 PM
03-08-2012 01:43 PM
Re: ifconfig of lan1 is getting "unplumb'd" across a boot
Thank you Bill! You must have been looking over my shoulder! You described exactly what I had done! I muck with these directories infrequent enough that I forgot about the detail characteristics of things in rc.config.d!
Ya know, the memory is the second thing to go as you age .. I forget what the first thing is :-)
Thanks again,
Lee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2012 01:46 PM
03-08-2012 01:46 PM
Re: ifconfig of lan1 is getting "unplumb'd" across a boot
Lee