node-openvpn

0.1.1 • Public • Published

node-openvpn

NPM version Dependency Status npm

Communicate with an OpenVPN client instance via telnet using node.

Installation

$ npm install node-openvpn --save

Usage

const openvpnmanager = require('node-openvpn');
 
const opts = {
  host: '127.0.0.1', // normally '127.0.0.1', will default to if undefined
  port: 1337, //port openvpn management console
  timeout: 1500, //timeout for connection - optional, will default to 1500ms if undefined
  logpath: 'log.txt' //optional write openvpn console output to file, can be relative path or absolute
};
const auth = {
  user: 'vpnUserName',
  pass: 'vpnPassword',
};
const openvpn = openvpnmanager.connect(opts)
 
// will be emited on successful interfacing with openvpn instance
openvpn.on('connected', () => {
  openvpnmanager.authorize(auth);
});
 
// emits console output of openvpn instance as a string
openvpn.on('console-output', output => {
  console.log(output)
});
 
// emits console output of openvpn state as a array
openvpn.on('state-change', state => {
  console.log(state)
});
 
// emits console output of openvpn state as a string
openvpn.on('error', error => {
  console.log(error)
});
 
// get all console logs up to this point
openvpnmanager.getLog(console.log)
 
// and finally when/if you want to
openvpnmanager.disconnect();
 
// emits on disconnect
openvpn.on('disconnected', () => {
  // finally destroy the disconnected manager 
  openvpnmanager.destroy()
});

/node-openvpn/

    Package Sidebar

    Install

    npm i node-openvpn

    Weekly Downloads

    136

    Version

    0.1.1

    License

    GPL-3.0

    Unpacked Size

    7.01 kB

    Total Files

    7

    Last publish

    Collaborators

    • luigiplr