Common Use Windows Server Route Command
December 25, 2017
List the 4 common used Route Command for Windows Server 1) route print (display the current route table) 2) route add 192.168.8.0 mask 255.255.255.0 10.110.2.0 if 1 (add a static route) 3) route delete 192.168.8.0 (delete a static route) 4) route -p add 192.168.8.0 mask 255.255.255.0 10.110.2.0 (add a persistent/permanent route)
Read more →