Adding a static route to your Windows routing table is pretty easy.
Just use an elevated command prompt (Run as administrator-where needed) and type the following example:
route -p add 10.11.12.13 255.255.255.255 10.11.12.14 metric 3 if 2
The “-p” argument is important if you want your route to be here when you reboot (persistent). You should be familiar with arguments “metric” and “if” if you are using this commands. A good starting point is HELP for this command. Type “route add –help”.
To check your result type “route print” and it should be under “Persistent routes” section.
To remove or to delete an entry, type this: “route -p delete 10.11.12.13”
The “p” argument is also important as it concerns the Persistent Routes table, otherwise it would concern the first Active route table.
Another trick to check and edit your persistent routes is through the system registry.
In your regeditor follow this path:
HKEY_LOCAL_MACHINE->SYSTEM->CurrentControlSet->
->Services->Tcpip->Parameters->PersistentRoutes
After any change that includes your network connection check that its settings are not changed (i.e. gateway).
When you are editing your routes just be sure they are not on a remote machine because you could get easily cut off:)
Hi,
I configure a HP StoreEasy with windows server 2012.
I have 2 network (“production” and “backup”), i add a static route in backup network but when i test a backup network with a tracert command the packets pass by my production gateway (production network).
Do you have an idee ?
Hello! Could you send a route print output? This sounds like a metric issue and what does arp -a output say for the backup gateway? You can try by removing the default route and then adding it with the metric of 1.
Hi Tino,
Windows server 2012 r2 with virtual machines also win 2012 r2
I am assigning pubic ip’s to the virtual machine like:
route add xxx.xxx.xxx.xxx/32 192.168.1.1 IF 14 –p
where xxx.xxx.xxx.xxx is a public ip
However if I restart the Host, the routes ( persistant ) still exist in route print but aren’t working.
I need to delete the routes and add manually again before I have a connection the the virtual servers again.
Do you have any clue how to fix this ?
Greetz Peter
Ive added a huge range via the registry key but they are not showing in route print. Can persistent routes be added via the registry or just route add in command line?
Best practice is to add them via the command line and then you should find them in the registry.
Doesn’t the subnet mask in the route add command have to have the word “mask” preceding it?
route -p add 10.11.12.13 MASK 255.255.255.255 10.11.12.14 metric 3 if 2
Any answer for above question, asked by Peter? i am in the same boat!!
Thanks to my father who shared with me concerning this website, this blog is truly amazing.|
Does this mean two persistent routes besides the default route?
IPv4 Route Table
==========================================================Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.77.1 192.168.77.10 266
==========================================================
Persistent Routes:
Network Address Netmask Gateway Address Metric
0.0.0.0 0.0.0.0 192.168.1.1 Default
0.0.0.0 0.0.0.0 192.168.77.1 Default
How would I know Ip/subnet mask of chrome or firefox as I want them to route to different address.
> The “p” argument is also important as it concerns the Persistent Routes table
That actually contradicts the command’s official help page:
-p When used with the ADD command, makes a route persistent across boots of the system. By default, routes are not preserved when the system is restarted. Ignored for all other commands, which always affect the appropriate persistent routes.