macfromip
Version:
On given an IP Address, will attempt to identify that IP's MAC address.
30 lines (22 loc) • 493 B
Markdown
macfromip
=========
## Synopsis
* Nodejs script;
* Gets a MAC address from a LAN IP address;
* Only works on linux, OSX and win32 platforms;
## Code Example
```
var macfromip = require('macfromip');
macfromip.getMac('192.168.2.169', function(err, data){
if(err){
console.log(err);
}
console.log(data);
});
```
## Installation
```
npm install macfromip
```
## TODO List:
Complete list on [Trello](https://trello.com/b/B1WM4gbZ/macfromip)