hg8496 / umgfinder

A tool to find all Janitza UMGs in the specified network

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

umgfinder

NPM version Build Status Coverage Status

A node js library to find all ethernet based Janitza UMGs in the specified network.

import { scanNetwork } from '@hg8496/umgfinder';

async function main() {
    return await scanNetwork(process.argv[2]);
}

main().then((devices) => {
    devices.forEach((device) => {
        console.log(device.deviceType, device.ip, device.serialNumber, device.firmwareVersion)
    })
});

About

A tool to find all Janitza UMGs in the specified network

License:MIT License


Languages

Language:TypeScript 85.6%Language:JavaScript 14.4%