L2TP Client: Windows: Difference between revisions
Appearance
Content deleted Content added
m Reword |
|||
| Line 10: | Line 10: | ||
Windows 10 seems very keen on using IPsec with L2TP. To turn this off, in an Administrator Command Prompt do: |
Windows 10 seems very keen on using IPsec with L2TP. To turn this off, in an Administrator Command Prompt do: |
||
<syntaxhighlight lang=bash> |
|||
SC STOP RASMAN ; you may have to wait a bit for this to stop |
SC STOP RASMAN ; you may have to wait a bit for this to stop |
||
SC QUERY RASMAN ; ensure it is STOPPED |
SC QUERY RASMAN ; ensure it is STOPPED |
||
REG ADD HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Rasman\Parameters /v ProhibitIpSec /t REG_DWORD /d 1 /f |
REG ADD HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Rasman\Parameters /v ProhibitIpSec /t REG_DWORD /d 1 /f |
||
SC START RASMAN |
SC START RASMAN |
||
</syntaxhighlight> |
|||
Also, once the connection has been created, ensure CHAP authentication is enabled: |
Also, once the connection has been created, ensure CHAP authentication is enabled: |
||