- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: routing
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
03-12-2003 06:03 AM
03-12-2003 06:03 AM
routing
I want create a route in a HP-UX, but, i don??t get.
I used the command route with the parameters:
route add 192.168.5 192.168.4.243
it was created in a table routing, but the packet don??t arrive in the
host 192.168.4.243...
The HP-UX ping in that host, but don??t routing the packets....
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2003 06:17 AM
03-12-2003 06:17 AM
Re: routing
route add PC GATEWAY NETMASK HOP_COUNT
Obtain the information from lanscan and ifconfig.
i.e.,
ifconfig lan0
-and-
route add 192.168.4.243 192.168.5.250 255.255.252.0 2
For bootup cofiguration use /etc/rc.config.d/netconf
ROUTE_DESTINATION[1]=192.168.4.243
ROUTE_MASK[1]=255.255.252.0
ROUTE_GATEWAY[1]=192.168.5.250
ROUTE_COUNT[1]=1
ROUTE_ARGS[1]=""
NOTE: Increase the indices to the next number [0], [1], etc.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2003 06:24 AM
03-12-2003 06:24 AM
Re: routing
I just put the paremeters net and metric and do it.
Thanks a lot.
Fabio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2003 06:38 AM
03-12-2003 06:38 AM
Re: routing
route add 192.168.5.0 192.168.4.243 1
That would route all packets to the 192.168.5.0 network via the 192.168.4.243 router.
To keep this route after a reboot, then look at the previous responce of how to do this in the /etc/rc.config.d/netconf file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2003 01:00 PM
03-12-2003 01:00 PM
Re: routing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2003 01:02 PM
03-12-2003 01:02 PM
Re: routing
route add net 192.168.5.* netmask 255.*.*.* 192.168.4.243
It has to work. If you need it permanently, edit your /etc/rc.config.d/netconf file for the same.
Copy a previous routing entry and edit after pasting it below.
-Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2003 03:24 AM
03-13-2003 03:24 AM
Re: routing
What points? i don't know nothing about this...