Como controlar o cliente VPN via linha de comando

2

Deve haver uma maneira de controlar o cliente VPN integrado no OS-X Snow Leopard, simplesmente não consigo encontrar documentação sobre ele. Eu quero ser capaz de conectar e desconectar enquanto estou ssh'd em minha caixa remotamente. Alguém sabe como fazer isso?

    
por Michael Caron 05.05.2010 / 19:37

1 resposta

1

salve o seguinte AppleScript em 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

use osoftware gfw.scpt para iniciá-lo no terminal.

    
por 07.05.2010 / 04:36