我用来连接到我的远程 PPTP VPN服务器通过执行以下操作:
# pon MyVPNConnection persist holdoff 60 maxfail 0
我想自动化这个连接在系统启动时执行,所以我已将该行添加到/etc/rc.local
.
但是,据我所知,最好使用其他一些方法,如初始化脚本或rc.d
.
方法之一对我有用的需要添加到/etc/network/interfaces
:
auto tunnel
iface tunnel inet ppp
provider MyVPNConnection
这有效,但仅适用于我安装在硬盘上的Linux,不适用于我自己定制的实时发行版,因为/etc/network/interfaces
每次启动时都会被squashfs修改。
因此,还有其他方法或初始化脚本可以启动我的 PPTP VPN启动时网络连接?
也许是这样的:
# update-rc.d pptp enable
上述方法适用于 OpenVPN 客户端。