- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- 4Nic cards - 4 C Net - One default
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
07-09-2001 05:17 AM
07-09-2001 05:17 AM
4Nic cards - 4 C Net - One default
I wonder how to setup 4 Nicards pointing to 4 different C-Net .
3 of the card chould only have their own C-net traffic and the 1 should take the rest of the net.
I gonna use it on a back up server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2001 05:39 AM
07-09-2001 05:39 AM
Re: 4Nic cards - 4 C Net - One default
you provide this information in /etc/rc.config.d/netconf
Here you define for every card it's IP-Address, Gateway, netmask , broadcast address und routing information.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2001 06:29 AM
07-09-2001 06:29 AM
Re: 4Nic cards - 4 C Net - One default
All the information is stored in /etc/rc.confog.d/netconf file after setting it up you can restart the daemon. The anither way to do is through SAM where it is easier since it is menu driven .
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2001 07:16 AM
07-09-2001 07:16 AM
Re: 4Nic cards - 4 C Net - One default
How could I tell the machine that this i the defult gateway if not this 3 net.
Do I do like this
ROUTE_DESTINATION[1]=12.12.12.0
ROUTE_GATEWAY[1]=12.12.12.34 ( 12nets switch IP )
ROUTE_DESTINATION[2]=12.12.13.0
ROUTE_GATEWAY[1]=12.12.13.34 ( 13nets switch IP )
ROUTE_DESTINATION[3]=12.12.14.0
ROUTE_GATEWAY[1]=12.12.14.34 ( 14nets switch IP )
IROUTE_DESTINATION [0]=default
ROUTE_GATEWAY[0]=12.12.11.34 (all net (except the 12,13,14 net) switch IP)
and for the 3 specielnet
/Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2001 06:22 AM
07-11-2001 06:22 AM
Re: 4Nic cards - 4 C Net - One default
Configure it as follows:
ROUTE_DESTINATION[0]=default
ROUTE_GATEWAY[0]=12.12.11.34
ROUTE_DESTINATION[1]=12.12.12.0
ROUTE_GATEWAY[1]=12.12.12.34
ROUTE_DESTINATION[1]=12.12.13.0
ROUTE_GATEWAY[2]=12.12.13.34
ROUTE_DESTINATION[3]=12.12.14.0
ROUTE_GATEWAY[3]=12.12.14.34
This will cause all traffic to outside your subnets will go via 12.12.11.34.
Actually you do not need to set up gateway for [1] - [3] because subnetmasking will take care of that (traffic in the same subnet does not need a gateway). When you configure an IP address on a NIC, the OS will put an entry in the routing table automatically for that subnet (see netstat -rn).
Just another note : the index numbers between the brackets have NOTHING to do with the indexes used to configure the NICs (INTERFACE_NAME[0] etc.), you cannot configure routing per NIC.
Regards,
Mark.