ubuntu上安装openvpn的问题

ubuntu上安装openvpn的问题

我执行了:

sudo apt-get install openvpn

但是我找不到安装配置文件Downloads
我需要找到它。

我该怎么做?

答案1

恕我直言:如果您在服务器端使用 openvpn-install 脚本,则会更容易。

curl -O https://raw.githubusercontent.com/angristan/openvpn-install/master/openvpn-install.sh
chmod +x openvpn-install.sh
sudo bash openvpn-install.sh

这将提示您设置选项,只需采纳其建议,几分钟即可完成。

https://www.tecmint.com/install-openvpn-in-ubuntu/

对于客户端..使用上面构建的客户端配置文件。

sudo apt install openvpn
openvpn --config /path/to/configuration.ovpn

https://serverspace.io/support/help/install-openvpn-server-on-ubuntu-20-04/

相关内容