- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Determine core NIC address on PA-RISC server
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
08-06-2009 12:01 PM
08-06-2009 12:01 PM
Determine core NIC address on PA-RISC server
Does anyone know how to determine the MAC address of the core lan card on a PA-RISC HP-UX 11.11 server that's configured to use APA without rebooting the machine?
I know if you interrupt the boot process and select the Service Menu and then choose LanAddress this will display the core LAN station address but I'd like to do this without rebooting the server.
Is anyone aware of a way to get the same information on an HP-UX 11.11 server running Auto Port Aggregation (APA)?
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2009 12:41 PM
08-06-2009 12:41 PM
Re: Determine core NIC address on PA-RISC server
lanscan -qa you will get wich LAN interface is bind to wich agregation lan
lanadmin ==> lan ==> ppa ( change to your bindet lans ) ==> display ==> Station Address ( it should be the MAC adress of fysical lan card )
hope it helps
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2009 01:37 PM
08-07-2009 01:37 PM
Re: Determine core NIC address on PA-RISC server
its most likely lan0 as the initail PPA number so you could also just use lanadmin commands at command prompt
#lanadmin -a 0
will display station address(mac)
change 0 for whatever PPA you want to look at
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2009 05:34 AM
08-10-2009 05:34 AM
Re: Determine core NIC address on PA-RISC server
check
man arp for details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2009 07:13 AM
08-10-2009 07:13 AM
Re: Determine core NIC address on PA-RISC server
root# ioscan -kfnC lan|grep -i core
lan 0 0/0/0/1/0 igelan CLAIMED INTERFACE HP A7109-60001 PCI 1000Base-T Core
lan 8 1/0/0/1/0 igelan CLAIMED INTERFACE HP A7109-60001 PCI 1000Base-T Core
So lanPPA lan0 and lan8 are your Core LAN NICs.
And to find the MAC-Address (aka Station Address):
root# lanadmin -a 0
Station Address = 0x0017a476984b
root# lanadmin -a 8
Station Address = 0x0017a476983a
Hope this Helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2009 07:14 AM
08-10-2009 07:14 AM
Re: Determine core NIC address on PA-RISC server
So here it is:
root# netstat -ian
Name Mtu Network Address Ipkts Ierrs Opkts Oerrs Coll
lan0 1500 180.234.56.0 180.234.56.48 13 0 13 0 0
lo0 4136 127.0.0.0 127.0.0.1 10824942 0 10824942 0 0
lan900 1500 180.234.133.0 180.234.133.43 2008000997 0 212565217 0 0
So you'll see your APA interface is lan900.
What LAn NICS make up that lan900 APA interface?
root# lanscan -q
0
3
5
6
900 1 2
901
902
And you'll see lan900 has lan1 and lan2 as its component NICs. Use lanadmin -a
Hope this helps again