Route add

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

do "route add" statements stay in effect even when the server is powewred
down/up if not how would you recommend keeping addedd routes intact ?
 
Dan said:
do "route add" statements stay in effect even when the server is powewred
down/up if not how would you recommend keeping addedd routes intact ?
route add by itself doesn't even survive an interface up/down.
route add -p will survive that much, but not a restart. The best way to
add routes is in a logon script if you don't need the routes in place
when the user is not logged in. Otherwise, you can use a startup script.
The only problem that sometimes arises is if the interface is not fully
initialized, but it doesn't happen often.

....kurt
 
Kurt,


we did the route add -p and did several shutdown/power up...and the route
is in place everytime.whaddaya think about that ? I thought I saw that the -p
write this to the registry ? idunno
 
Dan said:
Kurt,


we did the route add -p and did several shutdown/power up...and the route
is in place everytime.whaddaya think about that ? I thought I saw that the -p
write this to the registry ? idunno
Could be, I got my info by googling a website. They could've been wrong.
I'll have to give it a try myself and see. Thanks for the tip!

....kurt
 
Back
Top