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

@network-utils/dhcp

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@network-utils/dhcp

NodeJS implementation of DHCP socket connection

  • 1.0.10
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
48
decreased by-42.17%
Maintainers
2
Weekly downloads
 
Created
Source

DHCP

license CircleCI Coverage Status npm version

NPM

NodeJS implementation of DHCP socket connection

Install

npm install @network-utils/dhcp

Declarations

Module has got TypeScript declarations. It can be helpful to understand the module API

See declarations

Examples

DHCP monitor

"use strict";
let { BOOTMessageType, Server } = require("@network-utils/dhcp");

let s = new Server("192.168.1.1");

s.on("listening", () => {
    console.log("Server start", s.address);
});

s.on("dhcp", e => {
    console.log(e.packet.toString());
});

s.bind();

DHCP server

"use strict";
let { BOOTMessageType, Server } = require("@network-utils/dhcp");

let s = new Server({
    serverId: "192.168.1.1",
    gateways: ["192.168.1.1"],
    domainServer: ["192.168.1.1"],
});

s.on("listening", () => {
    console.log("Server start", s.address);
});

let ips = {};

s.on("discover", e => {
    console.log("DISCOVER");

    let pkt = e.packet;

    // Get IP by MAC
    let ip = "0.0.0.0";
    if (pkt.op === BOOTMessageType.request) {
        if (!(pkt.chaddr in ips))
            ip = ips[pkt.chaddr] = `192.168.1.${Object.keys(ips).length + 2}`;
        else
            ip = ips[pkt.chaddr];
    }

    let offer = s.createOffer(pkt);

    offer.yiaddr = ip;

    s.send(offer);
});
s.on("request", e => {
    console.log("REQUEST");
    let ack = s.createAck(e.packet);

    ack.yiaddr = ips[e.packet.chaddr];

    s.send(ack);
});
s.on("release", e => {
    console.log("RELEASE");
    delete ips[e.packet.chaddr];
});

s.bind();

RFC

Keywords

FAQs

Package last updated on 21 Feb 2022

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