- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: lan card problem
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-27-2001 05:31 PM
11-27-2001 05:31 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 07:17 PM
11-27-2001 07:17 PM
Re: lan card problem
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 07:22 PM
11-27-2001 07:22 PM
Re: lan card problem
You are missing the drivers for your particular lan card. In most cases the software is located on Disk 1 of any Applications CD set. After you install the drivers using swinstall the system will reboot and you should then see your lan card via lanscan.
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 08:52 PM
11-27-2001 08:52 PM
Re: lan card problem
check the type of this lan card:
ioscan -nkfClan
-> see whether it is a 100BT - pci or HP-pb etc.
Then, check whether you have the driver for the card, by doing swlist -l product |grep 100
If not present, install it using the application CD (it will need a reboot of the system). That should take care of it.
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 10:29 PM
11-27-2001 10:29 PM
Re: lan card problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2001 12:18 AM
11-28-2001 12:18 AM
SolutionJust go into the /etc/rc.config.d/netconf file.
INTERFACE_NAME[0]="lan0"
IP_ADDRESS[0]="172.16.1.229"
SUBNET_MASK[0]=255.255.0.0
BROADCAST_ADDRESS[0]=""
INTERFACE_STATE[0]=""
DHCP_ENABLE[0]=0
Look into the parameter above,
0(zero)is the first interface.If you have already configured the first interface just copy the lines and change '0' to '1' like
INTERFACE_NAME[1]="lan1"
IP_ADDRESS[1]="ipaddress"
SUBNET_MASK[1]=subnet mask
BROADCAST_ADDRESS[1]=""
INTERFACE_STATE[1]=""
DHCP_ENABLE[1]=0
Just change the values accordingly to your network.
Caution;If you have two cards on the machine with the first one running properly
Just copy the above lines and paste it seperately and change the parameters.
Then do a
/sbin/init.d/net stop
/sbin/init.d/net start.
If you are configuring the network for the first time then you can use
set_parms initial to configure your network instead using the above file.