🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

dhcp-mon

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dhcp-mon

NodeJS implementation of DHCP socket connection

1.0.7
latest
Source
npm
Version published
Weekly downloads
5
Maintainers
1
Weekly downloads
 
Created
Source

DHCP-MON

DHCP-MON is a Node.js implementation of a DHCP socket connection. It provides a simple and efficient way to handle DHCP events in your network.

license Node.js CI Coverage Status npm version

NPM

Installation

You can install DHCP-MON using npm:

npm install dhcp-mon

Usage

DHCP-MON comes with TypeScript declarations, which can help you understand the module API. See declarations

DHCP Monitor Example

import { BOOTMessageType, Server } from "dhcp-mon";

const 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 Example

import { BOOTMessageType, Server } from "dhcp-mon";

const 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);
});

const ips = {};

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

  const 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];
    }
  }

  const offer = s.createOffer(pkt);

  offer.yiaddr = ip;

  s.send(offer);
});

s.on("request", (e) => {
  console.log("REQUEST");
  const 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

For more information about DHCP, you can refer to the following RFCs:

Keywords

dhcp

FAQs

Package last updated on 28 Mar 2024

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