Router command
Perintah Route Examples 1. To establish a route so that a computer on one network can send a message to a computer on a different network, type: route add 192.100.201.7 192.100.13.7 The 192.100.201.7 address is that of the receiving computer (the Destination parameter). The 192.100.13.7 address is that of the routing computer (the Gateway parameter). 2. To establish a route so you can send a message to any user on a specific network, type: route add -net 192.100.201.0 192.100.13.7 The 192.100.201.0 address is that of the receiving network (the Destination parameter). The 192.100.13.7 address is that of the routing network (the Gateway parameter). 3. To establish a default gateway, type: route add 0 192.100.13.7 The value 0 or the default keyword for the Destination parameter means that any packets sent to destinations not previously defined and not on a directly connected network go through the default gateway. The 192.100.13.7 address is that of the gateway chosen to be the d...