这是关联到完整的说明。
当我到达第 9 步时,在“9. 设置客户端配置文件”标题下,它显示:
现在我们将配置 openVPN 作为客户端工作。请记住,我们已经在客户端中安装了 openvpn 软件包,并且 /etc/openvpn/ 中有“ca.crt”、“vpnclient1.key”、vpnclient1.crt”
将示例 client.conf 复制到 /etc/openvpn。
$ sudo cp /usr/share/doc/openvpn/examples/sample-config-files/client.conf /etc/openvpn/
编辑 /etc/openvpn/client.conf。
...
指定这是openvpn client客户端
远程 VPN 服务器 1194
ca.crt
证书 vpnclient1.crt
密钥 vpnclient1.key ...
现在在客户端启动 OpenVPN
$ /etc/init.d/openvpn start * 启动虚拟专用网络守护进程... * 自动启动 VPN“客户端”
$ ifconfig tun0 tun0 链接 encap:UNSPEC HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
inet addr:10.8.0.6 P-t-P:10.8.0.5 Mask:255.255.255.255
但是,当我尝试运行最后一个命令时,出现以下错误:
bash: /etc/init.d/openvpn: No such file or directory
我假设该脚本被 systemctl 或其他东西包含,所以我尝试了接下来的几个:
# systemctl enable [email protected]
# systemctl start [email protected]
...我通过制表符补全偶然发现了这一点。任何人都可以阐明如何继续吗?
答案1
如果您使用的是 Fedora,请访问软呢帽说明。同样,不要在 Debian 上使用 Fedora 的说明,也绝对不要盲目遵循随机网站上的说明。发行版做随着时间的推移,配置文件位于不同的位置(或者配置以完全不同的方式完成)。