- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Installing another NIC on my Linux box
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
02-11-2005 02:32 AM
02-11-2005 02:32 AM
I am in the process of installing another NIC on my Itanium server running RHAS3.0 - Will the OS auto detect the new H/W or I have to do something else? I am a newbie to Linux world and I would like some help.
Thank you in advance.
Ian
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2005 02:37 AM
02-11-2005 02:37 AM
Solution1/ restart the kudzu service to auto detect new nic , command is " /etc/init.d/kudzu restart "
2/You will auto enter network configure window to assign ip address.
3/use command ifconfig to check new nic.
NiCK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2005 03:14 AM
02-11-2005 03:14 AM
Re: Installing another NIC on my Linux box
Most 100 BaseT cards now are supported. Few 1000 BaseT cards other than Intel's are correctly configured for their top speed. Some are not detected at all.
Card choice is key to not having a big headache here.
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
02-11-2005 03:31 AM
02-11-2005 03:31 AM
Re: Installing another NIC on my Linux box
The kudzu utility maintains a DB of detected and configured hardware, found at /etc/sysconfig/hwconf. To install the new card you need to shutdown the system. Once done with the installation you will boot it back up. As part of the boot process, kudzu compares the currently detected hardware to the stored DB. If new hardware is detected, or previousely existing hardware is removed, kudzu will attempt to automatically reconfigure the system, or steer the administrator to the appropriate interactive configuration utility.
Regards,
Ross
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2005 07:11 AM
02-12-2005 07:11 AM
Re: Installing another NIC on my Linux box
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2005 04:11 AM
02-27-2005 04:11 AM
Re: Installing another NIC on my Linux box
Thanks for everyone that have replied so far. I successfully installed the 2nd NIC "A0761A" certified NIC for my Itanium server. The server magicly found the new NIC. I was able to configured the "eth2" NIC via RH gui interface. However, when I ran ifconfig at the command line, I see only the eth0 & eth1 but nothing for eth2. What else do I need to do at this point?? Anyone have any ideas??
Thank you in advance.
Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2005 01:30 AM
02-28-2005 01:30 AM
Re: Installing another NIC on my Linux box
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2005 03:47 AM
02-28-2005 03:47 AM
Re: Installing another NIC on my Linux box
run this to let you visually verify the settings for the nic:
ifconfig eth2
If all looks good run this:
ifup eth2
How many ethernet cards are in the machine?
if there are only two cards you should only see eth0 and eth1.
Unless they are multi port adapters then you would see an eth(n) for every port starting with 0.
--Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2005 09:16 AM
02-28-2005 09:16 AM
Re: Installing another NIC on my Linux box
Thanks everyone.
Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2005 05:18 AM
03-02-2005 05:18 AM
Re: Installing another NIC on my Linux box
How was the problem solved? How about some points for the folks that tried to help?
Regards,
Ross
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2005 02:26 PM
03-02-2005 02:26 PM
Re: Installing another NIC on my Linux box
I start up my KDE xwindows and add a new NIC under the network tab and configured the NIC. I did not add a new alias for the second NIC "eth2" at this point. If I do ifconfig, the 2nd NIC does not show up, but if I do ifconfig eth2 this will show up just fine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2005 02:53 AM
03-03-2005 02:53 AM
Re: Installing another NIC on my Linux box
Here is how ifconfig works:
If no arguments are given, ifconfig displays the status of the currently active interfaces.
If a single interface argument is given, it displays the status of the given interface only.
If a single -a argument is given, it displays the status of all interfaces, even those that are down.
HTH,
Ross