- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- techies...routing problem..urgent pls
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
01-16-2002 11:17 AM
01-16-2002 11:17 AM
I have a server on VLAN with two nic's. I want one of the interface address to connect to another server out of the VLAN via a static route. Also i want to specify a different name to the interface address. Can u pls guide me as to how i go about it.
regards
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2002 11:35 AM
01-16-2002 11:35 AM
Re: techies...routing problem..urgent pls
Try this link,
http://us-support2.external.hp.com/cki/bin/doc.pl/sid=4aa5c4370287d5f7dc/screen=ckiDisplayDocument?docId=200000053723989
Hope this helps.
regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2002 11:38 AM
01-16-2002 11:38 AM
Solutionroute add 10.0.0.0 netmask 255.0.0.0 10.1.1.1 1
Where the 10.0.0.0 is your vlan net and 10.1.1.1 is the gateway to that vlan net.
Hope this is what you were looking for,
C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2002 09:26 PM
01-23-2002 09:26 PM
Re: techies...routing problem..urgent pls
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2002 09:37 PM
01-23-2002 09:37 PM
Re: techies...routing problem..urgent pls
By the way, don't forget to update your /etc/rc.config.d/netconf if you want your static routes to be permanent in future reboots.
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2002 09:49 PM
01-23-2002 09:49 PM
Re: techies...routing problem..urgent pls
You can assign the IP to each of NIC's you have and can communicate thru these NIC's as Sanjay says in his post. Having 2 different names is also possible and by making entry in your DNS server you can communicate thru respective NIC. But command like swinstall, swlist... fails, since two names are pointing to the same host(physically)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2002 02:55 AM
01-24-2002 02:55 AM
Re: techies...routing problem..urgent pls
Since our server has 2 nics,thus you have to configure it as a router(gateway)with each nic claiming a different network.By default lan0 nic is on your VLAN network.the other nic (say lan1) should be assigned IP adress of the other network;
-Supose the other network is 192.1.2 and you want to give lan1 a node no. say 2,on this network ,then type;
#ifconfig lan1 inet 192.1.2.2 up
#ifconfig lan1
It should be up .
-Check lan0
# ifconfig lan0
It should be up too.
-Now add the routing info. to operating sys.:
# route add net 192.1.2 192.1.2.2 0
-Edit /etc/rc.config.d/netconfig file and look for the lines;
ROUTE_DESTINATIN="net 192.1.2"
ROUTE_GATEWAY=192.1.2.2
ROUTE_COUNT=0
_ For naming purpose,edit /etc/hosts and give the new ip a name.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2002 03:12 AM
01-24-2002 03:12 AM
Re: techies...routing problem..urgent pls
ofcoure you have to reboot after configuring the router.
For all nodes on the second netwowk(192.1.2),you have to do two thinks on each node;
1. edit /etc/hosts and add ;
192.1.2.2
192.1.1.1
2.run the route command;
#route add default 192.1.2.2 1
then edit /etc/rc.config.d/netconfig file accordingly.
I hope this will help.
Regards