Operating System - HP-UX
1833198 Members
2608 Online
110051 Solutions
New Discussion

Re: route add net question

 
SOLVED
Go to solution
MikeL_4
Super Advisor

route add net question


I've added a static route on a server:

route add net 155.90.211.128 netmask 255.255.255.192 155.90.117.142

Do I have to add this manually to the netconf file to make it perminent ??
2 REPLIES 2
G. Vrijhoeven
Honored Contributor
Solution

Re: route add net question

Mike,

Yes, the route add command is until the next reboot.

ROUTE_DESTINATION[0]="155.90.211.128"
ROUTE_MASK[0]="255.255.255.192 "
ROUTE_GATEWAY[0]="155.90.117.142"
ROUTE_COUNT[0]="1"
ROUTE_ARGS[0]=""

Mind the sequence number [0]


Regards,

Gideon
MikeL_4
Super Advisor

Re: route add net question

Thanks for your quick responce...