- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Add route - problem
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
10-02-2002 03:53 AM
10-02-2002 03:53 AM
route add net 147.174.213.65 netmask 255.255.255.255
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 03:59 AM
10-02-2002 03:59 AM
Solutiontwo errors:
147.174.213.65 is not a network, but a host.
255.255.255.255 is not a good netmask.
If you f.i. want to add the 147.174.213 network, you give the command:
route add net 147.174.213.0 netmask 255.255.255.0
Good luck
Donald
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 04:05 AM
10-02-2002 04:05 AM
Re: Add route - problem
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 04:09 AM
10-02-2002 04:09 AM
Re: Add route - problem
you also can add a name to the network in the /etc/networks file
mynet 147.174.213
then
route add mynet mask 255.255.255.0
you need put the netmask because 147 is a b class net and by default it takes 16 bit network mask lenght.....
gateway must be reachable by icmp... if not it retunrs an error
regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 04:21 AM
10-02-2002 04:21 AM
Re: Add route - problem
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 04:42 AM
10-02-2002 04:42 AM
Re: Add route - problem
mind cleaning this up??
This member has assigned points to 76 of 342 responses to his/her questions.
You can find ALL of your previous post here!
http://forums.itrc.hp.com/cm/TopSolutions/1,,CA457028!1!questions,00.html
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 05:29 PM
10-02-2002 05:29 PM
Re: Add route - problem
INTERFACE_NAME[0]=lan1
ip_address[0]=213.221.254.12
subnet_mask[0]=255.255.255.224
boardcast_address[0]=
interface_state[0]=
dhcp_enable[0]=
INTERFACE_NAME[0]=lan1:1
ip_address[0]=109.15.43.11
subnet_mask[0]=255.255.255.0
boardcast_address[0]=
interface_state[0]=
dhcp_enable[0]=
what is lan1:1 means ? it is visual ip configuration ? then if i want to add my route to this file...how will be the format. Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 11:47 PM
10-02-2002 11:47 PM
Re: Add route - problem
ROUTE_DESTINATION : the destination nework addr e.g 147.174.0.0
ROUTE_MASK : the destination subnet mask e.g 255.255.0.0
ROUTE_GATEWAY : the G/W IP-Addr
ROUTE_COUNT : the no. of Hops (0 or 1)
Note: ROUTE_DESTINATION can also refer to a Host IP-Addr. See the documentation in the netconf file itself.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 11:54 PM
10-02-2002 11:54 PM
Re: Add route - problem
Just modify this section of the netconf file
ROUTE_DESTINATION[0]=default
ROUTE_MASK[0]=""
ROUTE_GATEWAY[0]=""
ROUTE_COUNT[0]=""
ROUTE_ARGS[0]=""
Add your destination in route destination and rest of the entries.
then restart the net deamon.
It should work.
The second entries in your netconf file is vertual second IP address configuration.
HTH
Manoj