arpulate
v0.1.0
Published
A utility that populates the system ARP table by pinging a range of surrounding IP addresses.
Downloads
1
Readme
arpulate
arpulate populates the system ARP table by pinging a range of IP addresses that surround the local computer.
Install
npm install arpulate
API
arpulate(
total (int):
the number of addresses you wish to ping.
callback (function):
called after all addresses have responded
or timed out. no arguments.
)
Example
var arpulate = require('arpulate')
arpulate(20, function() {
console.log('All done')
})