The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Package:Lanmap"
Threesixes (talk | contribs) (initial commit) |
Threesixes (talk | contribs) m (full retard typo) |
||
(One intermediate revision by the same user not shown) | |||
Line 29: | Line 29: | ||
== External Resources == | == External Resources == | ||
* [http://www.aldeid.com/wiki/Lanmap aldeid.com lanmap wiki] | * [http://www.aldeid.com/wiki/Lanmap aldeid.com lanmap wiki] | ||
* [http://www.macvendorlookup.com/ mac address to hardware vendor utility to assist with tracking machines down] | |||
{{EbuildFooter}} | {{EbuildFooter}} |
Latest revision as of 10:27, November 23, 2014
Lanmap
We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.
Lanmap is a utility to generate visual representations of what happens on your network. Lanmap passively listens to traffic to generate an image.
Install
Emerge
root # emerge lanmap
Runtime
As lanmap requires access to hardware it must be run as root.
To generate a lanmap that is easily served via www-servers/nginx, www-servers/apache or any other major webserver.
wired:
root # lanmap -i eth0 -T png -o /var/www/localhost/htdocs/
wireless:
root # lanmap -i wlan0 -T png -o /var/www/localhost/htdocs/
The resulting image will be located at http://localhost/lanmap.png & /var/www/localhost/htdocs/lanmap.png
the official documentation suggests using -o /tmp/ to output to /tmp/lanmap.png
as of 06:50, 25 May 2014 (UTC) there are no init scripts or /etc/conf.d
configurations to define interfaces & start up.
External Resources