Not able to find the new NIC


 
Thread Tools Search this Thread
Operating Systems Solaris Not able to find the new NIC
# 8  
Old 04-23-2011
cat /etc/path_to_inst |grep -i network

The above will give you the required info..Smilie
# 9  
Old 04-23-2011
susheel

during installation u might not been enable network settings correctly
# 10  
Old 04-23-2011
Quote:
Originally Posted by z_haseeb
I insert another new NIC in the machine with four RJ45 connector options(means four NICs in one Card). The problem is i am not able to see the new NIC
That is the expected behavior. You need to configure the OS to add these interfaces.
Code:
ifconfig -a plumb
ifconfig -a

Then create /etc/hostname.xxx for each interface you want to be plumbed at next boot, each file containing the required IP address. xxx being the interface name (eg. qfe0, qfe1, ...)
# 11  
Old 04-24-2011
Why to plumb every interface when you can plumb just a new one ?

Using dladm command you can see all NIC -s in your box

Code:
su
dladm show-link

then check with ifconfig command which interfaces are configured, and then from above list od dladm command plumb new interface

Code:
ifconfig <target NIC> plumb

and then NIC will be configured with DHCP if you have one on your network.Smilie
# 12  
Old 04-24-2011
it's solaris 9... there is NO "dladm" command!

Quote:
I have a Sun Blade 2500 with SUN 5.9 OS installed.
This User Gave Thanks to DukeNuke2 For This Post:
# 13  
Old 04-24-2011
Quote:
Originally Posted by solaris_user
Why to plumb every interface when you can plumb just a new one ?
Beyond the fact it's Solaris 9 so dladm isn't available as DukeNuke2 already point out, what's wrong with plumbing all interfaces ?
Quote:
Code:
ifconfig <target NIC> plumb

and then NIC will be configured with DHCP if you have one on your network.Smilie
This is incorrect. The interface doesn't automagically configure itself with DHCP. Moreover, it will will be lost at next reboot if nothing is done to avoid that ...
This User Gave Thanks to jlliagre For This Post:
# 14  
Old 04-24-2011
Thanks for information guys Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Linux

Add two different subnet public IPs to single NIC or two different NIC on same box

Hello Admins, My ask is how can I add two different subnet IPs to same box with two different gateways? The issue is I can connect to the box when I am on ethernet LAN, but I am not able to connect to the same IP when I am on wifi. The server is RHEL 7 VM on vmware. How can I get connected... (4 Replies)
Discussion started by: snchaudhari2
4 Replies

2. Red Hat

I want to tune NIC's rps, rfs and xps value. which NIC device should I modify.

Dear All I want tune my NIC's rps, rfs and xps value. In my system I have two NIC (eth0, eth1) and I have a bond0 ( eth0, eth1). Here is the question? Which device should I modify ? eth0 and eth1? or just modify bond0 or modify all device (eth0, eth1, bond0) Any advice is welcome.... (0 Replies)
Discussion started by: nnnnnnine
0 Replies

3. Solaris

How can I find which NIC is used to talk to a given host (except traceroute)

Hi all, I'm having some trouble identifying what route is being used to talk to a target host. I can figure it out by looking at the routing tables but I want to automate this and don't much feel like scripting the network mask logic when I'd think there'd be a way to have the OS do it for me.... (5 Replies)
Discussion started by: Smiling Dragon
5 Replies

4. IP Networking

squid proxy: one NIC for inbound & one NIC for outbound?

I am new in squid proxy. My question is how to (and if it's necessary) to set one NIC for inbound traffic (http requests) and one NIC for outbound traffic (http answers)? Thank you in advance! (4 Replies)
Discussion started by: aixlover
4 Replies

5. Solaris

x86 Solaris 10 nic driver added but not attached. NIC is not detected.

I couldn't install my nic in solaris 10. I compiled and added the driver but failed to attach the driver and ifconfig output shows only loopback dev. Please see the following output and tell me whether my nic has been detected and why the driver failed to attach? My nic is detected in linux... (0 Replies)
Discussion started by: vectrum
0 Replies

6. AIX

AIX -How to find which NIC is on which PCI card

Hi All, How can I find out which is ETH5 on my AIX P5 system. I have about seven different NIC card on this. I did move the cable to each one but still I was not able to see the link light up when I did netstat -v Any idea? Thanks. (2 Replies)
Discussion started by: samnyc
2 Replies

7. HP-UX

how can I determine which NIC card is virtual NIC Card

how can I determine which NIC card is virtual NIC Card which condition can make a decision Does HP UX have Virtual Network Adapter Concept if ,it has where I can Find if I Install Virutal Network Adapter or which command that i can get it or which software can generate thanks (2 Replies)
Discussion started by: alert0919
2 Replies

8. Solaris

Cause of NIC changes ...?

Hi , I came across a SUN server whereby it was installed with additional ethernet card. By right in any configuration, you would probably see the onboard ports Net0,Net1 and so on should correspond to e1000g0,e1000g1... But instead the ext PCI takes precedence in the order and the Net0 becomes... (3 Replies)
Discussion started by: incredible
3 Replies

9. Solaris

How do I find what kind of NIC card the server has?

All, I see that there are 2 nic card available . How can I know all the details about these 2 nic cards. -rw-r--r-- 1 root root 10 Apr 16 15:00 hostname.bge0 -rw-r--r-- 1 root other 17 Apr 22 08:56 hostname.bge2 please let me know thanks -prasad (4 Replies)
Discussion started by: p4cldba
4 Replies
Login or Register to Ask a Question