- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- network interfaces
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
11-29-2000 04:56 AM
11-29-2000 04:56 AM
network interfaces
How can we find the number of network interface cards on a machine.
Thanks in advance
Praveen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 05:07 AM
11-29-2000 05:07 AM
Re: network interfaces
Try
ioscan -C lan
This will show the physical cards installed (but not if they are configured or not).
Regards,
Paul.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 05:13 AM
11-29-2000 05:13 AM
Re: network interfaces
# lanscan
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 07:44 AM
11-29-2000 07:44 AM
Re: network interfaces
- lanscan # to identify the NMID
- ioscan -fnC lan # To identify the Hardware Path
Good Luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 10:43 AM
11-29-2000 10:43 AM
Re: network interfaces
If you are looking at count only, then
use
#lanscan -a | wc -l
...Madhu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 11:28 AM
11-29-2000 11:28 AM
Re: network interfaces
To scan system hardware:
# ioscan -fnC lan
OR
Display LAN Device config & status
# lanscan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 08:14 PM
11-29-2000 08:14 PM
Re: network interfaces
lanscan will show physical NICs or virtual NICs created by Auto Port Aggregation
both will include hardware paths (where germane)
netstat -i will show what the transport considers a physical interface (either a true physical interface, or a virtual one via APA) and also logical interfaces (aka aliases - on HP-UX 11).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2000 02:45 PM
11-30-2000 02:45 PM
Re: network interfaces
there are a number of commands that you can use.
ioscan -fnC lan
will give the NICs, h/w address and associated device path as appropriate.
lanscan
will show the h/w address, MAC address and associated device of each card that Unix has picked up
ifconfig
will give you the configuration of the actual device (IP, subnet)
lanadmin
allows you to see various statistics (speed, rxs, txs, collisions etc.) along with the ability to reset the card (useful if you change the 10/100 port at the other end and you would like to try to renegotiate).
Be careful however, there are a few NICs out there that will not show in lanscan until you have the correct drivers loaded. If you suspect that there is a card and it is not showing up then try to find the h/w part number and load the associated s/w driver.
Good luck.
Philip