Ubuntu 在现有的 tun 接口上使用 ovpn

Ubuntu 在现有的 tun 接口上使用 ovpn

是否可以使用 .ovpn 配置文件在现有的 tun 接口上配置 OPENVPN?

我有接口 tun1sudo ip tuntap add mode tun dev tun1 和配置文件 ./vpn.ovpn,并且我需要在此设备上配置 vpn,而无需更改其他接口的路由,可以吗?

答案1

是的,您可以使用现有的界面:

# dev-type should only be used if dev does not start with tap or tun
# dev-type tun
# dev use tun or tap, or existing interface
dev tun1
# ifconfig is not needed, but you need to take care of peer etc config in your own interface up logic

OpenVPN 不同版本之间可能存在细微差异 https://openvpn.net/community-resources/reference-manual-for-openvpn-2-4/

相关内容