1.0.2 • Published 6 years ago

cisco-vpn v1.0.2

Weekly downloads
39
License
WTFPL
Repository
github
Last release
6 years ago

cisco-vpn

Wrapper around the Cisco AnyConnect VPN client.

Installation

npm install cisco-vpn

Quickstart

const vpn = require('cisco-vpn')({
    server: 'vpn.example.org',
    username: 'uncreative-username',
    password: 'super-secret-password'
})

vpn.connect()
    .then(() => console.log('connected!'))

// some time later
vpn.disconnect()
    .then(() => console.log('disconnected!'))

API

require('cisco-vpn')(options)

  • options <Object>:
    • exe <String>: default: C:/Program Files (x86)/Cisco/Cisco AnyConnect Secure Mobility Client/vpncli.exe
    • server <String>: required
    • username <String>: required
    • password <String>: required
  • returns the vpn <Object>

vpn.connect()

  • returns a <Promise> which:
    • resolves if the vpn was connected
    • rejects if an error occured

vpn.disconnect()

  • returns a <Promise> which:
    • resolves if the vpn was disconnected
    • rejects if an error occured

License

WTFPL – Do What the F*ck You Want to Public License.

Made with :heart: by @MarkTiedemann.