Должен быть способ управления встроенным VPN-клиентом в OS-X Snow Leopard, я просто не могу найти документацию по этому поводу. Я хочу иметь возможность подключаться и отключаться, пока я ssh'd в мою коробку удаленно. Кто-нибудь знает как это сделать?
1 ответ
1
сохраните следующий AppleScript в gfw.scpt
tell application "System Events"
tell current location of network preferences
set VPNservice to service "The Great Fire Wall" -- name of the VPN service
if exists VPNservice then connect VPNservice
set isConnected to connected of current configuration of VPNservice
if isConnected then
--- do something or nothing
end if
end tell
end tell
используйте osascript gfw.scpt, чтобы запустить его из терминала.