OpenVPN 忽略 openvpn.conf,抛出无法识别或缺失的选项

OpenVPN 忽略 openvpn.conf,抛出无法识别或缺失的选项

我在 Debian 上设置了 openVPN,但无法启动该服务。

[FAIL] Starting virtual private network daemon: openvpn failed!

Syslog 说

Options error: Unrecognized option or missing parameter(s) in 
/etc/openvpn/openvpn.conf:11: ping-restart (2.2.1)

于是我注释掉了那一行,重启了服务,还是同样的错误。之后我删掉了那一行,还是同样的错误。我甚至重启了机器,还是同样的错误。不知何故,OpenVPN 似乎解析了另一个文件,而不是它应该解析的文件,尽管如此,我真的不明白发生了什么。

作为参考,我的 openvpn.conf:

port 1194
proto udp
mode server
tls-server
dev tun
server 10.6.0.0 255.255.255.0
client-to-client
push "route 192.168.0.0 255.255.255.0"

ping 10
ping-restart 120

ca /cert/vpn/ca.crt
cert /cert/vpn/server.crt
key /cert/vpn/server.key
dh /cert/vpn/dh2048.pem

#crl-verify crl.pem

keepalive 10 120
max-clients 10
#comp-lzo

user nobody
group nogroup
persist-key
persist-tun
verb 3

#client-config-dir /etc/openvpn/ccd

status openvpn.status
log-append /var/log/vpn.log

相关内容