怎样让VPN断开后自动重连?

遇到VPN连接超时断开的情况只能再接入一次,不过利用AppleScript可以编制一个让VPN开机后自行连接的脚本,这种脚本最大的优点就是让VPN超时断开后3分钟内自动重连,脚本内容如下:

  on idle      tell application "System Events"          tell current location of network preferences              set myConnection to the service "astrill"              if myConnection is not null then                  if current configuration of myConnection is not connected then                      connect myConnection                  end if              end if          end tell          return 120      end tell  end idle

如图:

将脚本粘贴入AppleScript编辑器,存储为应用程序(后缀为.app格式),并勾选“运行应用程序后保持打开”选项,运行即可。

如果你想要在开机时就运行脚本,可以将它拖入Dock,并右键选中,在菜单-选项里勾选“登录时打开”,这样当登录系统后就可以享用No Wall状态了~

原文:http://www.waerfa.com/automatically-reconnect-to-a-vpn-on-os-x

没有评论: