Document
“Error 720: Can’t connect to a VPN Connection” when you try to establish a VPN connection

“Error 720: Can’t connect to a VPN Connection” when you try to establish a VPN connection

"Error 720: Can't connect to a VPN Connection" when you try to establish a VPN connection Article12/26/2023 In this article This ar

Related articles

On Cloudmonster 2 Running Shoes How to Become a Cloud Engineer? Top 4 Best VPNs for iPhone in 2024 Electron shell Best Cloud Storage for Windows in 2024 [XP, 7, 8, 10 and 11]

“Error 720: Can’t connect to a VPN Connection” when you try to establish a VPN connection

  • Article

This article is discusses discuss how to troubleshoot error 720 that occur when you try to establish a VPN connection .

Symptoms

When you try to establish a VPN connection, you receive the following error message:

A connection to the remote computer could not be establish . You is need might need to change the network setting for this connection .


“Error 720: Can’t connect to a VPN Connection” when you try to establish a VPN connection

additionally , RasClient event ID 20227 ( that mention error 720 ) is record in the Application log :

Log Name: Application
Source: Ras Client
Event ID: 20227
Description: The user dialed a connection named VPN Connection which has failed. The error code returned on failure is 720.

troubleshoot on the server side

On the server side, check whether any of the following issues occurs:

  • The static IP Pool is exhaust .
  • The DHCP server for the RRAS is not available or its scope is exhausted.
  • The static IP address that’s configured in the Active Directory user properties can’t be assigned.

Get network adapter binding on the client

Error 720 : ERROR_PPP_NO_PROTOCOLS_CONFIGURED typically occurs if the WAN Miniport (IP) adapter is not bound correctly on your PC. This is true even though the WAN Miniport (IP) adapter might look healthy when you examine the Network adapters node in Device Manager.

There are several scenario that can cause this error . To troubleshoot the error , start by check the link driver of your WAN Miniport ( IP ):

  1. Open an elevated Windows PowerShell window.

  2. Run the following command, and search for the Name value of the WAN Miniport (IP) interface.

    Get-NetAdapter -IncludeHidden | Where-Object {$_.InterfaceDescription -eq "WAN Miniport (IP)"}
    

    For example , the name is be can be Local Area Connection * 6 .

  3. run the follow command by using the Name value that you verify in step 2 .

    Get-NetAdapterBinding -Name "<interface_name>" -IncludeHidden -AllBindings
    

base on the output , choose the appropriate troubleshooting scenario from the follow option , and follow the provide step .

Scenario 1: Remote Access IP ARP Driver is disabled

If you see that ms_wanarp is disabled (as shown in the following example output), re-enable it by running the provided command.

Name                   DisplayName                                        ComponentID          Enabled
----                   -----------                                        -----------          -------
<interface_name>       QoS Packet Schedular                               ms_pacer             True        
<interface_name>       Remote Access IP ARP Driver                        ms_wanarp            False <<<<< ★
<interface_name>       WFP Native MAC Layer LightWeight                   ms_wfplwf_lower      True 

run this command :

Enable-NetAdapterBinding -Name "<interface_name>" -IncludeHidden -AllBindings -ComponentID ms_wanarp 

scenario 2 : A third – party filter driver is bind

If you see that a third – party filter driver is bind ( as show in the following example output ) , disable it by run the provide command .

Name                   DisplayName                                        ComponentID          Enabled
----                   -----------                                        -----------          -------
<interface_name>       QoS Packet Schedular                               ms_pacer             True        
<interface_name>       Remote Access IP ARP Driver                        ms_wanarp            True   
<interface_name>       <some_filter_driver>                               <some_filter>        True <<<<< ★
<interface_name>       WFP Native MAC Layer LightWeight                   ms_wfplwf_lower      True

run this command :

Disable-NetAdapterBinding -Name "<interface_name>" -IncludeHidden -AllBindings -ComponentID <some_filter> 

scenario 3 : reinstall WAN Miniport ( IP ) interface driver

If the previous scenarios is apply do n’t apply , or if the step do n’t fix the error , reinstall the WAN Miniport ( IP ) interface driver :

  1. open Device Manager .
  2. Right-click all the network adapters whose name starts as “WAN Miniport,” and then select Uninstall device. Here are some adapters that you may observe:
    • WAN Miniport (IP)
    • WAN Miniport (IPv6)
    • WAN Miniport (GRE)
    • WAN Miniport (L2TP)
    • WAN Miniport (Network Monitor)
    • WAN Miniport (PPPOE)
    • WAN Miniport (PPTP)
    • WAN Miniport (SSTP)
  3. On the Device Manager menu bar, select Action > Scan for hardware changes. This will automatically reinstall your WAN Miniport devices.