Routing In Windows |
Go to the Start -> Run
Type cmd for command prompt
type following command
Add Route Temp :
# route add < network > mask <subnet/netmask> < gateway/router>
Ex - route add 10.20.3.0 mask 255.255.255.0 10.20.2.1
Add Route Permanent :
# route add < network > mask <subnet/netmask> < gateway/router> -p
Ex - route add 10.20.3.0 mask 255.255.255.0 10.20.2.1 -p
Here P = Persistent Route
need command for delete route
ReplyDelete