Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ife

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ife

Interface Management for Node.js

  • 0.0.10
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
16
increased by300%
Maintainers
1
Weekly downloads
 
Created
Source

IFE

IFE is (network) interface management for Node.js. It works on Linux, Illumos, FreeBSD, MacOS X.

var IFEdriver = require('ife'),
    ife = new IFEdriver();

API

var success =
ife.up({ name:      "eth0",
         ip:        "10.10.10.11",
         broadcast: "10.10.10.255",
         netmask:   "255.255.255.0",
         network:   "10.10.10.0"
});

ife.up({ name:      "e1000g0",
         ip:        "2607:f8b0:4002:c09::64',
         prefixlen: 64
});

Brings up the specified address on the interface "eth0".

var success =
ife.down('10.10.10.11');

Brings down the logical interface with the IP address 10.10.10.11.

var ifaces = ife.list()

List all the broadcast-capable interfaces on the server.

var ip2mac = ife.arpcache();

Returns an hash of IPs and their corresponding MAC addresses in the local server's ARP table.

var count = 2,
    do_ping = true;

var sent =
ife.gratarp({ name: "eth0", local_ip: "10.10.10.11",
              remote_ip: "10.10.10.1" }, count);

var sent =
ife.gratarp({ name: "eth0", local_ip: "10.10.10.11",
              remote_ip: "10.10.10.1", remote_mac: "7c:d1:c3:dc:dd:f7" },
            count, do_ping);

Send (two) gratuitous ARP responses to 10.10.10.1 advertising our 10.10.10.11. Second, send the same, but explicitly to the target MAC address. By specifying a MAC address, we may also ping, which we elect to do.

Keywords

FAQs

Package last updated on 14 Feb 2015

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc