applescript: establish PPPoE connection

1

how would an Applescript look like that connects to a specific PPPoE configuration? i want to trigger this via Launchbar.

(or a more fancy script which checks if the current chosen network location is the right one and if an ethernet cable is plugged in, then connect to the PPPoE service automatically. i'd be completely satisfied with the simpler version though)

Jakob

Posted 2010-05-14T21:02:18.290

Reputation: 145

Answers

0

do shell script "/usr/sbin/scselect [insert appropriate network location]"

tell application "System Events"
    tell network preferences
        connect service "[insert name of PPPoE service]"
    end tell
end tell

Jakob

Posted 2010-05-14T21:02:18.290

Reputation: 145