- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- moving lan cards
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
04-05-2006 08:28 AM
04-05-2006 08:28 AM
lan 5 0/0/3/1/0/6/0 igelan CLAIMED INTERFACE HP A9784-60001 PCI/PCI-X 1000Base-T FC/GigE Combo Adapter
I know that I need to edit hpigelanconf.
HP_IGELAN_INTERFACE_NAME[0]=lan5
HP_IGELAN_STATION_ADDRESS[0]=
HP_IGELAN_SPEED[0]=auto_on
My question is what steps do I need to do after I shutdown the application and databases?
How do I shutdown the network and then move the cable and then reenable the network?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 08:31 AM
04-05-2006 08:31 AM
Re: moving lan cards
Once the cards are changed, easily use SAM to configure the new card.
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
04-05-2006 08:36 AM
04-05-2006 08:36 AM
Re: moving lan cards
Other than editing the files I have detailed how do I enable the new lan card and restart the network.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 08:37 AM
04-05-2006 08:37 AM
Re: moving lan cards
is there a command line method?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 08:39 AM
04-05-2006 08:39 AM
Re: moving lan cards
I would use the system console to prevent using just this card for network connection.
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
04-05-2006 08:46 AM
04-05-2006 08:46 AM
Re: moving lan cards
I agree with Torsten. SAM is the easiest way to do it. It hits all of the correct files.
Simply disable the old card in SAM, and enable the new card with the correct IP. SAM will allow to customize/optimize the to a limited degree.
Manual
Down old interface (ifconfig)
modify netconf and hpigelanconf
move cable
bring up new interface (ifconfig)
Reboot system to make nothing was missed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 12:55 PM
04-05-2006 12:55 PM
SolutionIf you intend to simply move the IP from the old 10/100 to the new gige card, you could go into netconf file and simply change the interface name in the existing entry for your 10/100 interface and then either reboot or stop/start networking. if you do either of those, it best be from the console.
you could even simply:
ifconfig
ifconfig
and make sure you have the routes you were expecting to have - might need to reestablish the default route
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 02:30 PM
04-05-2006 02:30 PM
Re: moving lan cards
simply shutdown old 10/10, by putting a 0.0 ip as mentioned.. and then assign the ip to new card.
also update /etc/rc.config.d/netconf .. if you have any card specific file, will need to be updated ..
Thanks
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2006 07:45 AM
04-20-2006 07:45 AM
Re: moving lan cards
This will need to be done on the console.
/sbin/init.d/net stop
ifconfig OLDLAN down
ifconfig OLDLAN plumb
ifconfig OLDLAN unplub
vi /etc/rc.config.d/netconf #Change the interface name to lan5
/sbin/init.d/net start
ifconfig lan5 #Make sure the IP address is correct
netstat -rn #Make sure the default route is associated with LAN5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2006 07:51 AM
04-20-2006 07:51 AM
Re: moving lan cards
ifconfig OLDLAN down;\
ifconfig OLDLAN plumb;\
ifconfig OLDLAN unplumb;\
route delete default DEFAULT_ROUTE_IP;\
ifconfig lan5 IPADD netmask NETMASK up;\
route add default DEFAULT_ROUTE_IP 1
Make sure to include the " 1" on the end of the last line. Then you can change the netconf to reflect the new card. I would still recommend running the command from the console in case there is a typo.