|
GettingStarted
A little guide to help you start with netAnalyzer
IntroductionThis tutorial will guide you through the installation process and your first use of netAnalyzer. InstallationCurrently the programm have been successfully installed and running on
The BSD build should work but haven't been through fully tested. DependenciesnetAnalyzer requires two libraries to work:
These two libraries are fairly common therefore if they are not installed on your system you can find them in your distribution repository. Debian/UbuntuHere is how to install them on a Debian/Ubuntu system:
OSXlibpcap and pcre can be installed on OSX thanks to macport (http://www.macports.org/)
Once the libpcap and the libpcre are installed you can proceed to the installation itself. Installing netAnalyzerYou can install netAnalyzer by doing the following:
First useA quick summary of the set of available option is always available through the -h option. netAnalyzer need as least one option: which type of data to report. The three most used type of data reported are:
If you want to know which flows (also called session) currently occur in your network you use the following command: netAnalyzer -F This will report all the flows that the analyzer see.It does include application layer information. By default they are turned on, if you wish to turn them off by default you can modify the configuration file located in /etc/netAnalyzer/. When they are turned off by default you can enable dynamically by adding the "-A" command line switch: netAnalyzer -F -A If you wish to limit the number of flows reported you can add the option -f. For each data reported an independent limiting option exist: it is the lowercaps letter. Hence to limit host (-H) number you use -h. Reporting 20 flows with advanced information is done by using the command: netAnalyzer -F -A -f 20 which can be abreviated as netAnalyzer -f20 -A You can see UsageExamples for more common uses of netAnalyzer or read a more detailed guide of possible option by looking at netAnalyzerOptions. |
Sign in to add a comment