# View Routes
```
route print
```
# Add a Static Route to the Windows Routing Table
```
route add destination_network MASK subnet_mask gateway_ip metric_cost
```
Example:
```
route add 192.168.0.0 MASK 255.255.255.0 192.168.113.1
```
## Persistent Route
When you add a static route, by default it only lasts until the next time you start Windows. Use the `-p` flag to make the route persistent.
```
route -p add 192.168.35.0 MASK 255.255.255.0 192.168.0.2
```
# Remove a Static Route from the Windows Routing Table
```
route delete destination_network
```
Example:
```
route delete 192.168.35.0
```
# Resources
[How to Add a Static TCP/IP Route to the Windows Routing Table (howtogeek.com)](https://www.howtogeek.com/22/adding-a-tcpip-route-to-the-windows-routing-table/)