MACGen
From Tiny Appz
| MACGen | |
| Written By: | Lexical Unit |
|---|---|
| Requested By: | Copernicus |
| OS: | Portable |
| Requirements: | C++ and Boost |
| Download Source 63 downloads ^ | |
| Makes lists of MAC addresses | |
| License:GPL | |
| Version:0.2 (5/15/07) | |
[edit] Description
A MAC Address Generator.
Takes one MAC address as input and generates many more addresses in sequence.
[edit] Usage
Assuming you have a C++ compiler and Boost installed you should be able to compile this program. If you're in a *nix environment, just run make to execute the Makefile and build MACGen. You might have to edit the Makefile to provide the location of your boost_regex library if it's not in the default locaiton.
Usage: MACGen n Takes a MAC address on stdin and writes it and the next n MAC addresses to stdout. Expample: echo "00-00-00-00-00-00" | MACGen 2 Output: 00-00-00-00-00-00 00-00-00-00-00-01 00-00-00-00-00-02
