- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Routing table
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
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
08-21-2002 12:04 AM
08-21-2002 12:04 AM
Routing table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2002 12:14 AM
08-21-2002 12:14 AM
Re: Routing table
try to set this serwer as default router for this two segments:
#route add net ....
look man route
or for permament modify
#/etc/rc.config.d/netconf
regards seba
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2002 05:00 AM
08-21-2002 05:00 AM
Re: Routing table
set up ip, mask, and default router for interface [0] and [1],
add aliases for the nic cards in /etc/hosts.
check /etc/rc.config.d/namesvrs for any name configurations, (yp, etc)
good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2002 05:15 AM
08-21-2002 05:15 AM
Re: Routing table
Assuming seg1 is 192.168.1.x and seg2 is 192.168.2.x, switch IP is ...1 and machine IP is ...100
configure lan0 to be 192.168.1.100
configure lan1 to be 192.168.2.100
configure default route to be switch 1
root@myserver> route add default netmask 255.255.255.0 192.168.1.1
configure backup route to use switch 2
root@myserver> route add net 192.168.2.0 netmask 255.255.255.0 192.168.2.1
Edit the /etc/rc.config.d/netconf file to reflect above changes.
I think that's all.
Cheers!
James
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2002 05:18 AM
08-21-2002 05:18 AM
Re: Routing table
All you need to do is have ip_forwarding enabled on the server with 2 nics.
ndd -set /dev/ip ip_forarding 1
On your clients, they will have to either know this machine then as a default router, or make static routes to each network using this host as the gateway.
Regards,
Shannon