Configure Point-to-Point VPN on the Runtime

In scenarios where the VPN is restricted solely to remote devices, and there is no need to access subnets, consider using the virtual adapter or point-to-point VPN installed on the Runtime. This approach avoids the need for a physical adapter and simplifies the VPN topology to a point-to-point configuration.
To enable the point-to-point VPN on the Runtime, proceed as follows:
Add the value
"tapFEA"
to the
VPNAdapterNameList
field in your configuration:
<Param Name="VPNAdapterNameList" Value="tapFEA" />
IMPORTANT: If you have an active security system, such as the ufw firewall based on iptables, take the following precautions:
  • Runthe following command to disable ufw:
    sudo ufw disable
or
  • Configure iptables to allow traffic from and to the specified subnet:
    sudo iptables -A INPUT -s 10.173.249.0/24 -j ACCEPT sudo iptables -A OUTPUT -d 10.173.249.0/24 -j ACCEPT
Provide Feedback
Have questions or feedback about this documentation? Please submit your feedback here.