New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

pppoverxmpp

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pppoverxmpp

Provides PPP over XMPP

latest
Source
npmnpm
Version
1.1.1
Version published
Maintainers
1
Created
Source

PPP over XMPP (jabber)

It creates a TAP interface and allows you to use the XMPP (jabber) as PPP tunnel.

Usage

The project is in the stage of "proof-of-concept". Therefore, the configuration is done by editing the application main file. Sorry for this.

Example:

var PPPoverXMPP = require('pppoverxmpp')({
	'interface': 'tun1',
	'ip': '192.168.0.2',
	'gateway': '192.168.0.1',
	'mask': '255.255.255.0',
	'login': 'mygateway@jabber.cc',
	'password': 'poweroverwhelming',
	'gatewayContact': 'mygateway@jabber.cc',
	'debug': true
});

login and password - from you jabber account. Do not use Jabber clients simultaneously using PPP over XMPP.

gatewayContact - authorized user from contact list. Another instance of PPP over XMPP should be connected to this account.

idAdress - adress of current device in PPP network

gatewayIp - usually the address of another device

networkMask - IPv4 subnetting reference

interfaceId - name of network interface created in system

After configuring run application from superuser.

Run another instance of application on gatewayContact with same networkMask and try use ping command for test.

Additional features

Tou can have access to node-tuntap and xmpp-client instances by PPPoverXMPP.tuntap and PPPoverXMPP.client properties.

##Troubles

  • Depency module node-tuntap very unstable.
  • Some XMPP provider very slow

Keywords

xmpp

FAQs

Package last updated on 03 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts