- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how can I check which lan card is working??
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
05-15-2007 07:48 AM
05-15-2007 07:48 AM
how can I check which lan card is working??
I just bought HP K class server model 580. it shows 4 lan cards installed . ioscan shows only one card is claimed . rest all "unknow hardware".
My question is > how would I check which card is claimed and where is physicaly located ?? how can i configure rest all ??
I downloaded Putty ssh and try to access my K class server It is also not working.nothing comes on blacl putty terminal .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2007 07:52 AM
05-15-2007 07:52 AM
Re: how can I check which lan card is working??
You can use cstm/mstm or xstm to test them and find their location.
You should check the docs on http://dos.hp.com not every where the NIC fits is a valid install point.
Shutdown pull cards to figure out which one works right.
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
05-15-2007 07:55 AM
05-15-2007 07:55 AM
Re: how can I check which lan card is working??
netstat -in
lanadmin
lanadmin will tell you if there is a link
reference your lanscan and netstat to the card with an active link and you will probably find your issue.
ie. cable plugged into wrong card, or wrong lanX configured for where cable is plugged into.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2007 06:02 PM
05-15-2007 06:02 PM
Re: how can I check which lan card is working??
post an "ioscan -fn" and "ioscan -fnClan".
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
05-16-2007 01:22 AM
05-16-2007 01:22 AM
Re: how can I check which lan card is working??
Did you configure networking? if yes - how?
Did you install HP-UX from scratch? If not - why not - as it should have told you when you went to configure networking which card has a link beat.
Why not look at the back of the system - do the lan cards have lights? If yes - the card that is active should have link and activity.
Here's a script for you:
# cat /usr/local/bin/lancards
#!/usr/bin/sh
# script to check speed and settings of lan cards
PATH=/usr/sbin:/usr/bin
ppas=`lanscan | awk '$3~/^[0-9]$/{print $3}' | xargs`
for i in $ppas
do
printf "Card at PPA %s - " $i
ipa=`ifconfig lan${i} 2>/dev/null | awk '{ip=$2}END{if(ip==""){printf("Not assigned")}else{printf("%s ",ip)}}'`
printf "IP Address: %15s- " "$ipa"
lanadmin -x $i 2>/dev/null | awk '{$1="";printf("%s",$0)}'
echo ""
done
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2007 06:50 AM
05-21-2007 06:50 AM
Re: how can I check which lan card is working??
The lan can be tested by the commands as
ioscan -fnC lan
netstat -in
lanscan
lanadmin
Hope this way you can reach your lan to configure..
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2007 07:03 AM
05-21-2007 07:03 AM
Re: how can I check which lan card is working??
To check which card is working.
# netstat -ni
To find out which is claimed.
# ioscan -funC lan
To configure.
use either ifconfig or sam
Hope this will help you.
Babu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2007 01:52 PM
05-21-2007 01:52 PM
Re: how can I check which lan card is working??
As far as Putty on your PC, the most common error is using a 'normal' serial cable. You must use a printer cable, also known as a crossover cable.
Bill Hassell, sysadmin