Giter VIP home page Giter VIP logo

Comments (8)

luigiplr avatar luigiplr commented on September 16, 2024 3

Opes my bad (been a while since i wrote these modules ๐Ÿ˜„ ). Can you give the following a try?

var openvpnmanager = require('node-openvpn')
var openvpnBin = require('openvpn-bin')
var path = require('path')

openvpnBin.initialize('openvpn', {
  host: '127.0.0.1',
  port: 1337,
  config: path.normalize('../geo/ipvanish/ipvanish-AU-Sydney-syd-a16.ovpn')
}).then(function() {
  var managerInstance = openvpnmanager.connect({ host: '127.0.0.1', port: 1337 })

  managerInstance.on('connected', function() {
    managerInstance.authorize({
      user: 'vpnUserName',
      pass: 'vpnPassword'
    })
  })

  managerInstance.on('console-output', function(output) {
    console.log(output)
  })
})

from node-openvpn.

luigiplr avatar luigiplr commented on September 16, 2024

try this:

var openvpnmanager = require('node-openvpn')
var openvpnBin = require('openvpn-bin')
var path = require('path')

var openvpnInstance = new openvpnBin('path/to/openvpn.exe', {
  host: '127.0.0.1',
  port: 1337,
  config: path.normalize('../geo/ipvanish/ipvanish-AU-Sydney-syd-a16.ovpn')
})

openvpnInstance.initialize().then(function() {
  var managerInstance = openvpnmanager.connect({ host: '127.0.0.1', port: 1337 })

  managerInstance.on('connected', function() {
    managerInstance.authorize({
      user: 'vpnUserName',
      pass: 'vpnPassword'
    })
  })

  managerInstance.on('console-output', function(output) {
    console.log(output)
  })
})

from node-openvpn.

SashaDesigN avatar SashaDesigN commented on September 16, 2024

Yes but I can't understand what is there path/to/openvpn.exe? I am on Linux now)

from node-openvpn.

luigiplr avatar luigiplr commented on September 16, 2024

@SashaDesigN try just setting as openvpn or alternatively find the absolute path of the openvpn executable on your system.

from node-openvpn.

SashaDesigN avatar SashaDesigN commented on September 16, 2024

var openvpnInstance = new openvpnBin('openvpn', {
TypeError: openvpnBin is not a function

from node-openvpn.

luigiplr avatar luigiplr commented on September 16, 2024

Can this be closed?

from node-openvpn.

SashaDesigN avatar SashaDesigN commented on September 16, 2024

Oh yes - thanks its works

from node-openvpn.

SashaDesigN avatar SashaDesigN commented on September 16, 2024

Actually it didn't work) but I use child_process and openvpn)

from node-openvpn.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.