/umgfinder

A tool to find all Janitza UMGs in the specified network

Primary LanguageTypeScriptMIT LicenseMIT

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