2017-09-23 104 views

回答

0

您可能想嘗試使用nmap這種工作模式。

https://github.com/jas-/node-libnmap

var nmap = require('libnmap'); 

nmap.discover(function(err, report) { 
    if (err) throw new Error(err); 

    for (var item in report) { 
    console.log(JSON.stringify(report[item])); 
    } 
}); 

這個庫中有你正在尋找類似的東西一些很好的實用工具。

這裏有兩個其他模塊也做類似的事情。

https://github.com/TheThingSystem/node-arp-a

https://github.com/goliatone/arpscan

+0

謝謝了!這非常有用。我一定會嘗試一下!在這裏,爲你帶10個免費的好氛圍單位! –

+0

太好了。希望這有幫助。請批准答案,以便其他人也能從中受益。 –

+0

完成!對不起,花了這麼長時間。 –

相關問題