- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Need help setting up 2nd LAN card
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
06-01-2005 03:26 AM
06-01-2005 03:26 AM
I have an HP 9000 L2000 with 3 lan cards.
I want to set up the second card, lan1.
I could really use some white papers.
I and not not sure how to make the traffic from lan0 and lan1 completely separate.
ccchpl(/root_home)#lanscan
Hardware Station Crd Hdw Net-Interface NM MAC HP-DLPI DLPI
Path Address In# State NamePPA ID Type Support Mjr#
0/0/0/0 0x001083FE7454 0 UP lan0 snap0 1 ETHER Yes 119
0/3/0/0 0x001083FBB6CC 1 UP lan1 snap1 2 ETHER Yes 119
0/6/0/0 0x001083FBB6BA 2 UP lan2 snap2 3 ETHER Yes 119
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2005 04:05 AM
06-01-2005 04:05 AM
SolutionThe "LAN Adminstrators Guide" is good - especcially chapter 6
http://docs.hp.com/en/B2355-90796/ch06s03.html
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2005 04:16 AM
06-01-2005 04:16 AM
Re: Need help setting up 2nd LAN card
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2005 09:09 AM
06-01-2005 09:09 AM
Re: Need help setting up 2nd LAN card
Lan0 has al network traffic at this time.
I am setting up Lan1 to a separate router
for use on one application.
The admin will setup everything on the router side. All i need is address for server and the iether net side of the router.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2005 01:58 PM
06-01-2005 01:58 PM
Re: Need help setting up 2nd LAN card
read this guide
http://docs.hp.com/en/B2355-90796/ch02s02.html
tienna
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2005 07:09 AM
06-07-2005 07:09 AM
Re: Need help setting up 2nd LAN card
As an example, lets say the addresses that gave you are as follows (totally hypotetical):
Server LAN1 IP Address: 145.21.177.42
Gateway IP : 145.21.177.254
(on gateway addresses, together with not being a requirements, the last octet of the ip address is usually 254 or 253 or 1, hence I chose 254)
your steps to initiate this new interface is as follows:
ifconfig lan1 inet 145.21.177.42 netmask 255.255.255.0 up
route add net 145.21.177.0 145.21.177.254 1
and after running these commands, you need to edit the /etc/rc.config.d/netconf file and add the new interface and route information by looking at the block of similar examples in this file. If you have any questions doing those, feel free to post your questions.
UNIX because I majored in cryptology...