This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
networking:windows:windows_vpn [2016/10/06 12:16] gcooper |
networking:windows:windows_vpn [2016/12/18 13:30] (current) gcooper |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Windows VPN Notes ====== | ====== Windows VPN Notes ====== | ||
+ | |||
+ | ===== Windows 8.1 ===== | ||
+ | |||
+ | ==== Default Route ==== | ||
+ | |||
+ | https:// | ||
+ | |||
+ | In the default VPN connection configuration, | ||
+ | |||
+ | * **Facilitate network browsing and name resolution** on the connected network | ||
+ | * Windows name resolution relies on Active Directory-integrated DNS or NetBIOS broadcast | ||
+ | * **Complicate normal Internet (non-local) traffic** | ||
+ | * Routing all non-local traffic over the VPN connection will almost certainly slow things down | ||
+ | * Location-based services will be affected since they will detect your location as the VPN termination point | ||
+ | |||
+ | :!: By default, the **Use default gateway on remote network** check box is selected. | ||
+ | |||
+ | To change the **Use default gateway on remote network** setting for IPv6 and IPv4, follow these steps: | ||
+ | |||
+ | - Run '' | ||
+ | - Right-click the VPN connection, and then click **Properties** | ||
+ | - Click **Networking** (tab) | ||
+ | - Select **Internet Protocol Version 4 (TCP/ | ||
+ | - Click **Advanced** | ||
+ | - Click the **IP Settings** tab | ||
+ | - Disable the addition of a new default route by clearing the **Use default gateway on remote network** check box | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
===== Windows 10 ===== | ===== Windows 10 ===== | ||
Line 11: | Line 41: | ||
https:// | https:// | ||
- | === Batch File === | + | === Batch Files === |
https:// | https:// | ||
Line 18: | Line 48: | ||
@echo off | @echo off | ||
rasdial "My VPN connection name here" | rasdial "My VPN connection name here" | ||
+ | </ | ||
+ | |||
+ | and to disconnect: | ||
+ | |||
+ | < | ||
+ | @echo off | ||
+ | rasdial "My VPN connection name here" /Disconnect | ||
</ | </ |