Mailing List Archive

PF_RING segfaults on SUSE
I've installed and implemented the PF_RING code using the 2.4x kernel
compiled by Luca and released on sourceforge, recompiled libpcap, ntop is
working as advertised, mostly. Ring is working, as far as I can tell from
the status messages. I just need to get it to quit segfaulting. I have
successively disabled more and more features to relieve load and capture the
most packets with the least overhead. Am still getting about 99% CPU usage
in most cases.

The machine never gets around to start using swap before it segfaults, so it
is hard to tell if it's getting just too much to keep track of in memory and
it pukes when it starts trying to keep up on disk, but I'm new at this.

Anyway, I'm trying to figure out whether I'm just getting too much traffic
thrown at me, or just need more (or better) memory, CPU, disk...?

I've been testing with both the NTOP 3.0 release code as well as CVS, and
have been getting the same results. I've not tried compiling my own kernels
with RING as of yet, have folks had any better results with custom compiles?

I'm running a current SuSE 9.0, 512M of memory, P-4 1.3Ghz, 100MB traffic
directed to
NTOP via mirrored/spanned ports to a 3Com905C. Ntop segfaults after about
5-10 minutes.

Thanks, in advance, for any suggestions.


My options:

/usr/local/bin/ntop -i eth0 -g -o --no-fc -K -j -q --disable-schedyield -b
-a /usr/local/share/ntop/access_log --skip-version-check -t 5 -D oclc.org -u
ntop -P /usr/local/share/ntop/ -m our_class_b,192.168.0.0/16,10.0.0.0/8

Here is the last message from NTOP:

Wed Mar 31 10:11:27 2004 CMPFCTN_DEBUG: setResolvedName(0x454760e8) 0 ->
19 our.numeric.address - hash.c(1169)
Wed Mar 31 10:11:27 2004 CMPFCTN_DEBUG: setResolvedName(0x45478600) 0 ->
19 our.numeric.address - hash.c(1169)
Wed Mar 31 10:11:27 2004 CMPFCTN_DEBUG: setResolvedName(0x4547abb8) 0 ->
19 our.numeric.address - hash.c(1169)

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 49156 (LWP 5966)]
0x4127a1f9 in free () from /lib/i686/libc.so.6

And my gdb trace of the event:

(gdb) list
918 int ntop_main(int argc, char *argv[]) {
919 #else
920 int main(int argc, char *argv[]) {
921 #endif
922 int i, rc, userSpecified;
923 #ifndef WIN32
924 int effective_argc;
925 char **effective_argv;
926 #endif
927 char ifStr[196] = {0};




(gdb) info stack
#0 0x4127a1f9 in free () from /lib/i686/libc.so.6
#1 0x400e6f79 in ntop_safefree (ptr=0x2, file=0x4011a308 "hash.c",
line=422) at leaks.c:612
#2 0x400dfacf in freeHostInfo (host=0x453ced60, actualDeviceId=0) at
hash.c:422
#3 0x400e0425 in purgeIdleHosts (actDevice=0) at hash.c:774
#4 0x400e8305 in scanIdleLoop (notUsed=0x0) at ntop.c:630
#5 0x41160f60 in pthread_start_thread () from /lib/i686/libpthread.so.0
#6 0x411610fe in pthread_start_thread_event () from
/lib/i686/libpthread.so.0
#7 0x412e2327 in clone () from /lib/i686/libc.so.6



(gdb) bt full
#0 0x4127a1f9 in free () from /lib/i686/libc.so.6
No symbol table info available.
#1 0x400e6f79 in ntop_safefree (ptr=0x2, file=0x4011a308 "hash.c",
line=422) at leaks.c:612
No locals.
#2 0x400dfacf in freeHostInfo (host=0x453ced60, actualDeviceId=0) at
hash.c:422
i = 720
#3 0x400e0425 in purgeIdleHosts (actDevice=0) at hash.c:774
idx = 23
numFreedBuckets = 23
numHosts = 102
startTime = 1080745887
noSessionPurgeTime = 1080745287
withSessionPurgeTime = 1080744087
lastPurgeTime = {1080745887, 0 <repeats 31 times>}
firstRun = 0 '\0'
theFlaggedHosts = (HostTraffic **) 0x8475270
maxHosts = 103
scannedHosts = 104
hiresTimeStart = {tv_sec = 1080745887, tv_usec = 704139}
hiresTimeEnd = {tv_sec = 60, tv_usec = 282720}
el = (HostTraffic *) 0x0
prev = (HostTraffic *) 0x0
next = (HostTraffic *) 0x0
#4 0x400e8305 in scanIdleLoop (notUsed=0x0) at ntop.c:630
i = 0
#5 0x41160f60 in pthread_start_thread () from /lib/i686/libpthread.so.0
No symbol table info available.
#6 0x411610fe in pthread_start_thread_event () from
/lib/i686/libpthread.so.0
No symbol table info available.
#7 0x412e2327 in clone () from /lib/i686/libc.so.6
No symbol table info available.
Re: PF_RING segfaults on SUSE [ In reply to ]
Ben,
I;ve not forgot you. I'm polishing the ring code and I have implemented
many new features. Done that I will make a new release once I'm sure it
works with the new ntop & co.

Please stay tuned, Luca

Derr,Ben wrote:

>I've installed and implemented the PF_RING code using the 2.4x kernel
>compiled by Luca and released on sourceforge, recompiled libpcap, ntop is
>working as advertised, mostly. Ring is working, as far as I can tell from
>the status messages. I just need to get it to quit segfaulting. I have
>successively disabled more and more features to relieve load and capture the
>most packets with the least overhead. Am still getting about 99% CPU usage
>in most cases.
>
>The machine never gets around to start using swap before it segfaults, so it
>is hard to tell if it's getting just too much to keep track of in memory and
>it pukes when it starts trying to keep up on disk, but I'm new at this.
>
>Anyway, I'm trying to figure out whether I'm just getting too much traffic
>thrown at me, or just need more (or better) memory, CPU, disk...?
>
>I've been testing with both the NTOP 3.0 release code as well as CVS, and
>have been getting the same results. I've not tried compiling my own kernels
>with RING as of yet, have folks had any better results with custom compiles?
>
>I'm running a current SuSE 9.0, 512M of memory, P-4 1.3Ghz, 100MB traffic
>directed to
>NTOP via mirrored/spanned ports to a 3Com905C. Ntop segfaults after about
>5-10 minutes.
>
>Thanks, in advance, for any suggestions.
>
>
>My options:
>
>/usr/local/bin/ntop -i eth0 -g -o --no-fc -K -j -q --disable-schedyield -b
>-a /usr/local/share/ntop/access_log --skip-version-check -t 5 -D oclc.org -u
>ntop -P /usr/local/share/ntop/ -m our_class_b,192.168.0.0/16,10.0.0.0/8
>
>Here is the last message from NTOP:
>
>Wed Mar 31 10:11:27 2004 CMPFCTN_DEBUG: setResolvedName(0x454760e8) 0 ->
>19 our.numeric.address - hash.c(1169)
>Wed Mar 31 10:11:27 2004 CMPFCTN_DEBUG: setResolvedName(0x45478600) 0 ->
>19 our.numeric.address - hash.c(1169)
>Wed Mar 31 10:11:27 2004 CMPFCTN_DEBUG: setResolvedName(0x4547abb8) 0 ->
>19 our.numeric.address - hash.c(1169)
>
>Program received signal SIGSEGV, Segmentation fault.
>[Switching to Thread 49156 (LWP 5966)]
>0x4127a1f9 in free () from /lib/i686/libc.so.6
>
>And my gdb trace of the event:
>
>(gdb) list
>918 int ntop_main(int argc, char *argv[]) {
>919 #else
>920 int main(int argc, char *argv[]) {
>921 #endif
>922 int i, rc, userSpecified;
>923 #ifndef WIN32
>924 int effective_argc;
>925 char **effective_argv;
>926 #endif
>927 char ifStr[196] = {0};
>
>
>
>
>(gdb) info stack
>#0 0x4127a1f9 in free () from /lib/i686/libc.so.6
>#1 0x400e6f79 in ntop_safefree (ptr=0x2, file=0x4011a308 "hash.c",
>line=422) at leaks.c:612
>#2 0x400dfacf in freeHostInfo (host=0x453ced60, actualDeviceId=0) at
>hash.c:422
>#3 0x400e0425 in purgeIdleHosts (actDevice=0) at hash.c:774
>#4 0x400e8305 in scanIdleLoop (notUsed=0x0) at ntop.c:630
>#5 0x41160f60 in pthread_start_thread () from /lib/i686/libpthread.so.0
>#6 0x411610fe in pthread_start_thread_event () from
>/lib/i686/libpthread.so.0
>#7 0x412e2327 in clone () from /lib/i686/libc.so.6
>
>
>
>(gdb) bt full
>#0 0x4127a1f9 in free () from /lib/i686/libc.so.6
>No symbol table info available.
>#1 0x400e6f79 in ntop_safefree (ptr=0x2, file=0x4011a308 "hash.c",
>line=422) at leaks.c:612
>No locals.
>#2 0x400dfacf in freeHostInfo (host=0x453ced60, actualDeviceId=0) at
>hash.c:422
> i = 720
>#3 0x400e0425 in purgeIdleHosts (actDevice=0) at hash.c:774
> idx = 23
> numFreedBuckets = 23
> numHosts = 102
> startTime = 1080745887
> noSessionPurgeTime = 1080745287
> withSessionPurgeTime = 1080744087
> lastPurgeTime = {1080745887, 0 <repeats 31 times>}
> firstRun = 0 '\0'
> theFlaggedHosts = (HostTraffic **) 0x8475270
> maxHosts = 103
> scannedHosts = 104
> hiresTimeStart = {tv_sec = 1080745887, tv_usec = 704139}
> hiresTimeEnd = {tv_sec = 60, tv_usec = 282720}
> el = (HostTraffic *) 0x0
> prev = (HostTraffic *) 0x0
> next = (HostTraffic *) 0x0
>#4 0x400e8305 in scanIdleLoop (notUsed=0x0) at ntop.c:630
> i = 0
>#5 0x41160f60 in pthread_start_thread () from /lib/i686/libpthread.so.0
>No symbol table info available.
>#6 0x411610fe in pthread_start_thread_event () from
>/lib/i686/libpthread.so.0
>No symbol table info available.
>#7 0x412e2327 in clone () from /lib/i686/libc.so.6
>No symbol table info available.
>
>
>
>
>
>
>
>
>------------------------------------------------------------------------
>
>ntop Configuration
>
>
>ntop version.....3.0 SourceForge .tgz
>Configured on.....Mar 23 2004 14:16:32
>Built on.....Mar 23 2004 14:17:55
>OS.....i686-pc-linux-gnu
>libpcap version.....libpcap version current-cvs.tcpdump.org.2004.03.23
>Process Id.....5015
>
>
>Command line
>
>Started as..../usr/local/bin/ntop -i eth0 -g -o --no-fc -j -q --disable-schedyield -b -a /usr/local/share/ntop/access_log --skip-version-check -t 5 -D oclc.org -u ntop -P /usr/local/share/ntop/ -m our_class_B,192.168.0.0/16,10.0.0.0/8
>
>Resolved to..../usr/local/bin/ntop
> -i
> eth0
> -g
> -o
> --no-fc
> -j
> -q
> --disable-schedyield
> -b
> -a
> /usr/local/share/ntop/access_log
> --skip-version-check
> -t
> 5
> -D
> oclc.org
> -u
> ntop
> -P
> /usr/local/share/ntop
> -m
> our_class_B,192.168.0.0/16,10.0.0.0/8
>
>
>Command line parameters are:
>
>-a | --access-log-file...../usr/local/share/ntop/access_log
>-b | --disable-decoders.....Yes
>-c | --sticky-hosts.....(default) No
>-d | --daemon.....No
>-e | --max-table-rows.....(default) 128
>-f | --traffic-dump-file.....(default) (nil)
>-g | --track-local-hosts.....Track local hosts only
>-o | --no-mac.....Don't trust MAC Addresses
>-i | --interface (effective).....eth
>-j | --create-other-packets.....(default) Disabled
>-k | --filter-expression-in-extra-frame.....(default) No
>-l | --pcap-log.....(default) (nil)
>-m | --local-subnets (effective).....132.174.0.0/16, 192.168.0.0/16, 10.0.0.0/8
>-n | --numeric-ip-addresses.....(default) No
>-p | --protocols.....(default) internal list
>-q | --create-suspicious-packets.....(default) Disabled
>-r | --refresh-time.....(default) 120
>-s | --no-promiscuous.....(default) No
>-t | --trace-level.....5
>-u | --user.....ntop (uid=501, gid=100)
>-w | --http-server.....(default) Active, all interfaces, port 3000
>-z | --disable-sessions.....(default) No
>-B | --filter-expression.....(default) none
>-D | --domain.....oclc.org
>-F | --flow-spec.....(default) none
>-K | --enable-debug.....(default) No
>-L | --use-syslog.....daemon
>-M | --no-interface-merge (effective).....(default) (Merging Interfaces) Yes
>-N | --wwn-map.....(default) (nil)
>-O | --pcap-file-path.....(default) /usr/local/var/ntop
>-P | --db-file-path...../usr/local/share/ntop
>-Q | --spool-file-path...../usr/local/share/ntop
>-U | --mapper.....(default) (nil)
>--disable-schedYield.....Yes
>--disable-instantsessionpurge.....(default) No
>--disable-mutexextrainfo.....(default) No
>--disable-stopcap.....(default) No
>--fc-only.....(default) No
>--no-fc.....Yes
>--no-invalid-lun.....(default) No
>--p3p-cp.....(default) none
>--p3p-uri.....(default) none
>--set-pcap-nonblocking.....(default) No
>--w3c.....(default) No
>
>
>Note: (effective) means that this is the value after ntop has processed the parameter.
>(default) means this is the default value, usually (but not always) set by a #define in globals-defines.h.
>
>
>
>Run time/Internal
>
>Web server URL.....http://any:3000
>GDBM version.....GDBM version 1.8.3. 10/15/2002 (built Sep 23 2003 15:24:00)
>zlib version.....1.1.4
>gd version (guess).....2.0.12-2.0.15
>Protocol Decoders.....Disabled
>Fragment Handling.....Enabled
>Tracking only local hosts.....Yes
># IP Protocols Being Monitored.....18
># Protocol slots.....15040
># IP Ports Being Monitored.....53
># IP Ports slots.....106
>WebServer Request Queue.....10
>Devices (Network Interfaces).....1
>Domain name (short).....org
>IP to country flag table (entries).....52395
>Total Hash Collisions (Vendor/Special) (lookup).....0
>
>
>ntop Web Server
>
>Item..................http://...................https://# Handled Requests.....15.....-
># Successful requests (200).....14.....-
># Bad (We don't want to talk with you) requests.....0.....-
># Invalid requests - 403 FORBIDDEN.....0.....-
># Invalid requests - 404 NOT FOUND.....0.....-
># Handled SIGPIPE Errors.....0
>
>
>Memory allocation - data segment
>
>arena limit, getrlimit(RLIMIT_DATA, ...).....-1
>Allocated blocks (ordblks).....8
>Allocated (arena).....4003556
>Used (uordblks).....3884636
>Free (fordblks).....118920
>
>
>Memory allocation - mmapped
>
>Allocated blocks (hblks).....4
>Allocated bytes (hblkhd).....5017600
>
>
>Memory Usage
>
>IPX/SAP Hash Size (bytes).....1897
>IP to country flag table (bytes).....1614732 (1.5 MB)
>Bytes per entry.....30.8
>IP to AS (Autonomous System) number table (bytes).....0 (0.0 MB)
>Current memory usage.....9021156
>Base memory usage.....7866084
>Hosts stored (active+cache).....1 = (1 + 0)
>(very) Approximate memory per host.....1128.0KB
>
>
>Host Memory Cache
>
>Limit.....#define MAX_HOSTS_CACHE_LEN 512
>Current Size.....0
>Maximum Size.....0
># Entries Reused.....0
>
>
>MAC/IPX Hash tables
>
>IPX/SAP Hash Size (entries).....179
>IPX/SAP Hash Collisions (load).....0
>IPX/SAP Hash Collisions (use).....0
>
>
>Packets
>
>Received.....0
>Processed Immediately.....0
>Queued.....0
>Current Queue.....0
>Maximum Queue.....0
>--set-pcap-nonblocking sleep count.....0
>
>
>Host/Session counts - global
>
>Purged Hosts.....0
>Terminated Sessions.....0
>
>Host/Session counts - Device 0 (eth0)
>Hash Bucket Size.....3.7 KB
>Actual Hash Size.....16384
>Stored hosts.....1
>Bucket List Length.....[min 1][max 1][avg 1.0]
>Max host lookup.....0
>Session Bucket Size.....260
>Sessions.....0
>Max Num. Sessions.....0
>
>
>Address Resolution
>
>DNS Sniffed:
>
>DNS Packets sniffed.....0
> less 'requests'.....0
> less 'failed'.....0
> less 'reverse dns' (in-addr.arpa).....0
>DNS Packets processed.....0
>Stored in cache (includes aliases).....0
>
>
>IP to name - ipaddr2str():
>
>Total calls.....0
>....OK.....0
>....Total not found.....0
>........Not found in cache.....0
>........Too old in cache.....0
>
>
>Queued - dequeueAddress():
>
>Total Queued.....0
>Not queued (duplicate).....0
>Maximum Queued.....0
>Current Queue.....0
>
>
>Resolved - resolveAddress():
>
>Addresses to resolve.....0
>....less 'Error: No cache database'.....0
>....less 'Found in ntop cache'.....0
>Gives: # gethost (DNS lookup) calls.....0
>
>
>DNS Lookup Calls:
>
>DNS resolution attempts.....0
>....Success: Resolved.....0
>....Failed.....0
>........HOST_NOT_FOUND.....0
>........NO_DATA.....0
>........NO_RECOVERY.....0
>........TRY_AGAIN (don't store).....0
>........Other error (don't store).....0
>DNS lookups stored in cache.....0
>Host addresses kept numeric.....0
>
>
>Vendor Lookup Table
>
>Input lines read.....0
>Records added total.....0
>.....includes special records.....0
>getVendorInfo() calls.....0
>getSpecialVendorInfo() calls.....0
>Found 48bit (xx:xx:xx:xx:xx:xx) match.....0
>Found 24bit (xx:xx:xx) match.....0
>Found multicast bit set.....0
>Found LAA (Locally assigned address) bit set.....0
>
>
>Thread counts
>
>Active.....8
>Dequeue.....1
>Children (active).....3
>Directory (search) order
>
>Data Files......
> /usr/local/share/ntop
>Config Files......
> /usr/local/etc/ntop
> /etc
>Plugins....../plugins
> /usr/local/lib/ntop/plugins
>
>
>Compile Time: ./configure
>
>./configure parameters.....&nbsp;
>Built on (Host).....i686-pc-linux-gnu
>Built for(Target).....i686-pc-linux-gnu
>compiler (cflags).....gcc -g -O2 -I/usr/local/include -Wshadow -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fPIC -DHAVE_CONFIG_H
>include path.....-I/home/derrb/tmp/ntop-3.0/myrrd
>system libraries.....-L/usr/X11R6/lib -L/usr/local/lib -L/home/derrb/tmp/ntop-3.0/myrrd -lpthread -lresolv -lnsl -lcrypt -lc -lpcap -lgdbm -lgd -lpng -lz -lmyrrd
>install path...../usr/local
>GNU C (gcc) version.....3.3.1 (SuSE Linux) (3.3.1)
>uname data.....sysname(Linux) release(2.4.23) version(#16 Fri Feb 20 16:23:40 CET 2004) machine(i686)
>
>
>Internationalization (i18n)
>
>i18n enabled.....No
>Locale.....C
>Numeric format.....1000.00
>
>
>Compile Time: Debug settings in globals-defines.h
>
>DEBUG.....no
>ADDRESS_DEBUG.....no
>CHKVER_DEBUG.....no
>CMPFCTN_DEBUG.....no
>DNS_DEBUG.....no
>DNS_SNIFF_DEBUG.....no
>FC_DEBUG.....no
>FINGERPRINT_DEBUG.....no
>FRAGMENT_DEBUG.....no
>FTP_DEBUG.....no
>GDBM_DEBUG.....no
>HASH_DEBUG.....no
>HOST_FREE_DEBUG.....no
>HTTP_DEBUG.....no
>I18N_DEBUG.....no
>IDLE_PURGE_DEBUG.....no
>INITWEB_DEBUG.....no
>MEMORY_DEBUG.....no
>NETFLOW_DEBUG.....no
>P2P_DEBUG.....no
>PACKET_DEBUG.....no
>PARAM_DEBUG.....no
>PLUGIN_DEBUG.....no
>PROBLEMREPORTID_DEBUG.....no
>RRD_DEBUG.....no
>SEMAPHORE_DEBUG.....no
>SESSION_TRACE_DEBUG.....no
>SSLWATCHDOG_DEBUG.....no
>STORAGE_DEBUG.....no
>UNKNOWN_PACKET_DEBUG.....no
>URL_DEBUG.....no
>VENDOR_DEBUG.....no
>
>
>Compile Time: config.h
>
>CFG_ETHER_HEADER_HAS_EA.....no
>CFG_MULTITHREADED.....yes
>CFG_NEED_INET_ATON.....no
>HAVE_ALARM.....yes
>HAVE_ALLOCA.....yes
>HAVE_ALLOCA_H.....yes
>HAVE_ARPA_INET_H.....yes
>HAVE_ARPA_NAMESER_H.....yes
>HAVE_BACKTRACE.....yes
>HAVE_BZERO.....yes
>HAVE_CRYPTGETFORMAT.....no
>HAVE_CRYPT_H.....yes
>HAVE_CTIME_R.....yes
>HAVE_DIRENT_H.....yes
>HAVE_DLFCN_H.....yes
>HAVE_DL_H.....no
>HAVE_DOPRNT.....no
>HAVE_ENDPWENT.....yes
>HAVE_ERRNO_H.....yes
>HAVE_FACILITYNAMES.....yes
>HAVE_FCNTL_H.....yes
>HAVE_FLOAT_H.....yes
>HAVE_FORK.....yes
>HAVE_GDBM_H.....yes
>HAVE_GD_H.....yes
>HAVE_GDOME_H.....no
>HAVE_GETHOSTBYADDR.....yes
>HAVE_GETHOSTBYADDR_R.....yes
>HAVE_GETHOSTBYNAME.....yes
>HAVE_GETHOSTNAME.....yes
>HAVE_GETIPNODEBYADDR.....no
>HAVE_GETOPT_H.....yes
>HAVE_GETPASS.....yes
>HAVE_GETTIMEOFDAY.....yes
>HAVE_GLIBCONFIG_H.....no
>HAVE_GLIB_H.....no
>HAVE_ICMP6_H.....no
>HAVE_IF_H.....no
>HAVE_IFLIST_SYSCTL.....no
>HAVE_IN6_ADDR.....yes
>HAVE_INET_NTOA.....yes
>HAVE_INT16_T.....yes
>HAVE_INT32_T.....yes
>HAVE_INT64_T.....yes
>HAVE_INT8_T.....yes
>HAVE_INTTYPES_H.....yes
>HAVE_IP6_H.....no
>HAVE_LANGINFO_H.....yes
>HAVE_LIBC.....yes
>HAVE_LIBC_R.....no
>HAVE_LIBCRYPT.....yes
>HAVE_LIBCRYPTO.....no
>HAVE_LIBDL.....no
>HAVE_LIBDLD.....no
>HAVE_LIBGD.....yes
>HAVE_LIBGDBM.....yes
>HAVE_LIBGDOME.....no
>HAVE_LIBGLIB.....no
>HAVE_LIBM.....no
>HAVE_LIBNSL.....yes
>HAVE_LIBPCAP.....yes
>HAVE_LIBPNG.....yes
>HAVE_LIBPOSIX4.....no
>HAVE_LIBPTHREAD.....yes
>HAVE_LIBPTHREADS.....no
>HAVE_LIBRESOLV.....yes
>HAVE_LIBRT.....no
>HAVE_LIBSOCKET.....no
>HAVE_LIBSSL.....no
>HAVE_LIBWRAP.....no
>HAVE_LIBXML2.....no
>HAVE_LIBXNET.....no
>HAVE_LIBZ.....yes
>HAVE_LIMITS_H.....yes
>HAVE_LINUX_IF_PPPOX_H.....yes
>HAVE_LOCALE_H.....yes
>HAVE_LOCALTIME_R.....yes
>HAVE_LONG_DOUBLE.....yes
>HAVE_MALLINFO_MALLOC_H.....yes
>HAVE_MALLOC_H.....yes
>HAVE_MATH_H.....yes
>HAVE_MEMCHR.....yes
>HAVE_MEMORY_H.....yes
>HAVE_MEMSET.....yes
>HAVE_NDIR_H.....no
>HAVE_NET_BPF_H.....no
>HAVE_NETDB_H.....yes
>HAVE_NET_ETHERNET_H.....yes
>HAVE_NET_IF_DL_H.....no
>HAVE_NET_IF_H.....yes
>HAVE_NETINET_ICMP6_H.....yes
>HAVE_NETINET_IF_ETHER_H.....yes
>HAVE_NETINET_IN_H.....yes
>HAVE_NETINET_IN_SYSTM_H.....yes
>HAVE_NETINET_IP6_H.....yes
>HAVE_NETINET_IP_H.....yes
>HAVE_NETINET_TCP_H.....yes
>HAVE_NETINET_UDP_H.....yes
>HAVE_NET_PPP_DEFS_H.....yes
>HAVE_NET_ROUTE_H.....yes
>HAVE_OPENSSL.....no
>HAVE_OPENSSL_CRYPTO_H.....no
>HAVE_OPENSSL_ERR_H.....no
>HAVE_OPENSSL_PEM_H.....no
>HAVE_OPENSSL_RSA_H.....no
>HAVE_OPENSSL_SSL_H.....no
>HAVE_OPENSSL_X509_H.....no
>HAVE_PCAP_BPF_H.....yes
>HAVE_PCAP_H.....yes
>HAVE_PCAP_OPEN_DEAD.....yes
>HAVE_PCAP_SETNONBLOCK.....yes
>HAVE_PNG_H.....yes
>HAVE_PTHREAD_ATFORK.....yes
>HAVE_PTHREAD_H.....yes
>HAVE_PUTENV.....yes
>HAVE_PWD_H.....yes
>HAVE_RE_COMP.....yes
>HAVE_REGCOMP.....yes
>HAVE_REGEX.....yes
>HAVE_SCHED_H.....yes
>HAVE_SCHED_YIELD.....yes
>HAVE_SECURITY_PAM_APPL_H.....no
>HAVE_SELECT.....yes
>HAVE_SEMAPHORE_H.....yes
>HAVE_SETJMP_H.....yes
>HAVE_SHADOW_H.....yes
>HAVE_SIGNAL_H.....yes
>HAVE_SNPRINTF.....yes
>HAVE_SOCKET.....yes
>HAVE_SQRT.....yes
>HAVE_STAT_EMPTY_STRING_BUG.....no
>HAVE_STDARG_H.....yes
>HAVE_STDDEF_H.....yes
>HAVE_STDINT_H.....yes
>HAVE_STDIO_H.....yes
>HAVE_STDLIB_H.....yes
>HAVE_STRCASECMP.....yes
>HAVE_STRCHR.....yes
>HAVE_STRCSPN.....yes
>HAVE_STRDUP.....yes
>HAVE_STRERROR.....yes
>HAVE_STRFTIME.....yes
>HAVE_STRING_H.....yes
>HAVE_STRINGS_H.....yes
>HAVE_STRNCASECMP.....yes
>HAVE_STRPBRK.....yes
>HAVE_STRRCHR.....yes
>HAVE_STRSPN.....yes
>HAVE_STRSTR.....yes
>HAVE_STRTOK_R.....yes
>HAVE_STRTOUL.....yes
>HAVE_STRUCT_TM_TM_ZONE.....yes
>HAVE_SYSCTL.....yes
>HAVE_SYS_DIR_H.....no
>HAVE_SYS_IOCTL_H.....yes
>HAVE_SYS_LDR_H.....no
>HAVE_SYSLOG_H.....yes
>HAVE_SYS_NDIR_H.....no
>HAVE_SYS_PARAM_H.....yes
>HAVE_SYS_RESOURCE_H.....yes
>HAVE_SYS_SCHED_H.....no
>HAVE_SYS_SELECT_H.....yes
>HAVE_SYS_SOCKET_H.....yes
>HAVE_SYS_SOCKIO_H.....no
>HAVE_SYS_STAT_H.....yes
>HAVE_SYS_SYSCTL_H.....yes
>HAVE_SYS_SYSLOG_H.....yes
>HAVE_SYS_TIME_H.....yes
>HAVE_SYS_TYPES_H.....yes
>HAVE_SYS_UN_H.....yes
>HAVE_SYS_UTSNAME_H.....yes
>HAVE_SYS_WAIT_H.....yes
>HAVE_TCPD_H.....no
>HAVE_TM_ZONE.....yes
>HAVE_TZNAME.....no
>HAVE_U_INT16_T.....yes
>HAVE_U_INT32_T.....yes
>HAVE_U_INT64_T.....yes
>HAVE_UINT64_T.....no
>HAVE_U_INT8_T.....yes
>HAVE_UNAME.....yes
>HAVE_UNISTD_H.....yes
>HAVE_VFORK.....yes
>HAVE_VFORK_H.....no
>HAVE_VPRINTF.....yes
>HAVE_WORKING_FORK.....yes
>HAVE_WORKING_VFORK.....yes
>HAVE_ZLIB_H.....yes
>INET6.....yes
>LSTAT_FOLLOWS_SLASHED_SYMLINK.....yes
>MAKE_STATIC_PLUGIN.....no
>MAKE_WITH_I18N.....no
>MAKE_WITH_SSLV3_SUPPORT.....no
>MAKE_WITH_SSLWATCHDOG_COMPILETIME.....no
>MAKE_WITH_ZLIB.....yes
>SETVBUF_REVERSED.....no
>STDC_HEADERS.....yes
>TIME_WITH_SYS_TIME.....yes
>TM_IN_SYS_TIME.....no
>CFG_CONFIGFILE_DIR - config file directory...../usr/local/etc/ntop
>CFG_DATAFILE_DIR - data file directory...../usr/local/share/ntop
>CFG_DBFILE_DIR - database file directory...../usr/local/var/ntop
>CFG_PLUGIN_DIR - plugin file directory...../usr/local/lib/ntop/plugins
>CFG_RUN_DIR - run file directory...../usr/local/var/ntop
>CFG_NEED_GETDOMAINNAME (getdomainname(2) function).....yes
>CFG_xxxxxx_ENDIAN (Hardware Endian).....little
>HAVE_FILEDESCRIPTORBUG.....no
>
>
>Compile Time: globals-defines.h
>
>CONST_ACTIVE_TCP_SESSIONS_HTML.....NetNetstat.html
>CONST_ADD_URLS_HTML.....addURLs.html
>CONST_ADD_USERS_HTML.....addUsers.html
>CONST_APACHELOG_TIMESPEC.....%d/%b/%Y:%H:%M:%S
>CONST_ASLIST_FILE.....AS-list.txt
>CONST_AS_LIST_HTML.....asList.html
>CONST_BAR_ALLPROTO_DIST.....allProtoDistribution
>CONST_BAR_FC_PROTO_DIST.....fcProtoDistribution
>CONST_BAR_HOST_DISTANCE.....hostsDistanceChart
>CONST_BAR_LUNSTATS_DIST.....scsiBytesLunDistribution
>CONST_BAR_VSAN_TRAF_DIST_RCVD.....vsanDomainTrafficDistribRcvd
>CONST_BAR_VSAN_TRAF_DIST_SENT.....vsanDomainTrafficDistribSent
>CONST_BROADCAST_ENTRY.....2
>CONST_CGI_HEADER.....ntop-bin/
>CONST_CHANGE_FILTER_HTML.....changeFilter.html
>CONST_COLOR_1.....#CCCCFF
>CONST_COLOR_2.....#FFCCCC
>CONST_CONST_PCTG_LOW_COLOR.....BGCOLOR=#C6EEF7
>CONST_CONST_PCTG_MID_COLOR.....BGCOLOR=#C6EFC8
>CONST_CREDITS_HTML.....Credits.html
>CONST_CRYPT_SALT.....99
>CONST_DAEMONNAME.....ntop
>CONST_DELETE_URL.....deleteURL
>CONST_DELETE_USER.....deleteUser
>CONST_DNSCACHE_LIFETIME.....86400
>CONST_DNSCACHE_PERMITTED_AGE.....900
>CONST_DO_ADD_URL.....doAddURL
>CONST_DO_ADD_USER.....doAddUser
>CONST_DO_CHANGE_FILTER.....doChangeFilter
>CONST_DOMAIN_STATS_HTML.....domainStats.html
>CONST_DOUBLE_TWO_MSL_TIMEOUT.....240
>CONST_DUMP_DATA_HTML.....dumpData.html
>CONST_DUMP_HOSTS_INDEXES_HTML.....dumpDataIndexes.html
>CONST_DUMP_NTOP_FLOWS_HTML.....dumpFlows.html
>CONST_DUMP_NTOP_HOSTS_MATRIX_HTML.....dumpHostsMatrix.html
>CONST_DUMP_NTOP_XML.....dump.xml
>CONST_DUMP_TRAFFIC_DATA_HTML.....dumpTrafficData.html
>CONST_FAVICON_ICO.....favicon.ico
>CONST_FC_ACTIVITY_HTML.....fcActivity.html
>CONST_FC_DATA_HTML.....fcData.html
>CONST_FC_HOSTS_INFO_HTML.....fcHostsInfo.html
>CONST_FC_SESSIONS_HTML.....fcSessions.html
>CONST_FC_THPT_HTML.....fcThpt.html
>CONST_FC_TRAFFIC_HTML.....fcShowStats.html
>CONST_FILEDESCRIPTORBUG_COUNT.....3
>CONST_FILTER_INFO_HTML.....filterInfo.html
>CONST_FINGERPRINT_LOOP_INTERVAL.....150
>CONST_FTPDATA.....20
>CONST_GRE_PROTOCOL_TYPE.....47
>CONST_HANDLEADDRESSLISTS_MAIN.....0
>CONST_HANDLEADDRESSLISTS_NETFLOW.....2
>CONST_HANDLEADDRESSLISTS_RRD.....yes
>CONST_HASH_INITIAL_SIZE.....16384
>CONST_HOME_HTML.....home.html
>CONST_HOME_UNDERSCORE_HTML.....home_.html
>CONST_HOST_HTML.....host.html
>CONST_HOSTS_INFO_HTML.....hostsInfo.html
>CONST_HOSTS_LOCAL_CHARACT_HTML.....localHostsCharacterization.html
>CONST_HOSTS_LOCAL_FINGERPRINT_HTML.....localHostsFingerprint.html
>CONST_HOST_SORT_NOTE_HTML.....hostSortNote.html
>CONST_HOSTS_REMOTE_FINGERPRINT_HTML.....remoteHostsFingerprint.html
>CONST_HTTP_ACCEPT_ALL.....*/*
>CONST_IMG_ARROW_DOWN.....<img src="/arrow_down.gif" border="0" alt="Descending order, click to reverse">
>CONST_IMG_ARROW_UP.....<img src="/arrow_up.gif" border="0" alt="Ascending order, click to reverse">
>CONST_IMG_BRIDGE.....<img src="/bridge.gif" border="0" alt="Bridge">
>CONST_IMG_DHCP_CLIENT.....<img src="/bulb.gif" border="0" alt="DHCP Client">
>CONST_IMG_DHCP_SERVER.....<img src="/antenna.gif" border="0" alt="DHCP Server">
>CONST_IMG_DIRECTORY_SERVER.....(nil)
>CONST_IMG_DNS_SERVER.....<img src="/dns.gif" border="0" alt="DNS">
>CONST_IMG_FC_VEN_BROCADE.....<img src="/brocade.gif" border="0" alt="Brocade Communications Systems, Inc.">
>CONST_IMG_FC_VEN_EMC.....<img src="/emc.gif" border="0" alt="EMC Corporation">
>CONST_IMG_FC_VEN_EMULEX.....<img src="/emulex.gif" border="0" alt="Emulex Corporation">
>CONST_IMG_FC_VEN_JNI.....<img src="/jni.gif" border="0" alt="JNI Corporation">
>CONST_IMG_FC_VEN_SEAGATE.....<img src="/seagate.gif" border="0" alt="Seagate Technology">
>CONST_IMG_FIBRECHANNEL_SWITCH.....<img src="/switch.gif" border="0" alt="FibreChannel Switch">
>CONST_IMG_FTP_SERVER.....(nil)
>CONST_IMG_HAS_P2P.....<img src="/p2p.gif" border="0" alt="P2P Server">
>CONST_IMG_HAS_USERS.....<img src="/users.gif" border="0" alt="Users">
>CONST_IMG_HIGH_RISK.....<img src="/Risk_high.gif" border="0" alt="High Risk">
>CONST_IMG_HTTP_SERVER.....<img src="/web.gif" border="0" alt="HTTP Server">
>CONST_IMG_IMAP_SERVER.....(nil)
>CONST_IMG_LOCK.....<img src="/lock.png" alt="secured URL" border="0">
>CONST_IMG_LOW_RISK.....<img src="/Risk_low.gif" border="0" alt="Low Risk">
>CONST_IMG_MEDIUM_RISK.....<img src="/Risk_medium.gif" border="0" alt="Medium Risk">
>CONST_IMG_MULTIHOMED.....<img src="/multihomed.gif"" border="0" alt="Multihomed">
>CONST_IMG_NIC_CARD.....<img src="/card.gif" border="0" alt="Network Card">
>CONST_IMG_NTP_SERVER.....<img src="/clock.gif" border="0" alt="NTP Server">
>CONST_IMG_OS_AIX.....<img alt="OS: AIX" align="middle" src="/statsicons/os/aix.gif">
>CONST_IMG_OS_BERKELEY.....<img alt="OS: BSD Unix" align="middle" src="/statsicons/os/bsd.gif">
>CONST_IMG_OS_BSD.....<img alt="OS: BSD Unix" align="middle" src="/statsicons/os/bsd.gif">
>CONST_IMG_OS_CISCO.....<img alt="OS: Cisco" align="middle" src="/statsicons/os/cisco.gif">
>CONST_IMG_OS_HP_JETDIRET.....<img alt="OS: HP/JetDirect" align="middle" src="/statsicons/os/hp.gif">
>CONST_IMG_OS_HP_UX.....<img alt="OS: HP-UX" align="middle" src="/statsicons/os/hp.gif">
>CONST_IMG_OS_IRIX.....<img alt="OS: Irix" align="middle" src="/statsicons/os/irix.gif">
>CONST_IMG_OS_LINUX.....<img alt="OS: Linux" align="middle" src="/statsicons/os/linux.gif">
>CONST_IMG_OS_MAC.....<img alt="OS: Apple Mac" align="middle" src="/statsicons/os/mac.gif">
>CONST_IMG_OS_NOVELL.....<img alt="OS: Novell" align="middle" src="/statsicons/os/novell.gif">
>CONST_IMG_OS_SOLARIS.....<img alt="OS: Solaris" align="middle" src="/statsicons/os/sun.gif">
>CONST_IMG_OS_SUNOS.....<img alt="OS: SunOS" align="middle" src="/statsicons/os/sun.gif">
>CONST_IMG_OS_UNIX.....<img alt="OS: BSD Unix" align="middle" src="/statsicons/os/bsd.gif">
>CONST_IMG_OS_WINDOWS.....<img alt="OS: Windows" align="middle" src="/statsicons/os/windows.gif">
>CONST_IMG_POP_SERVER.....(nil)
>CONST_IMG_PRINTER.....<img src="/printer.gif" border="0" alt="Printer">
>CONST_IMG_ROUTER.....<img src="/router.gif" border="0" alt="Router">
>CONST_IMG_SCSI_DISK.....<img src="/disk.gif" border="0" alt="SCSI Block Device (disk)">
>CONST_IMG_SCSI_INITIATOR.....<img src="/initiator.gif" border="0" alt="SCSI Initiator">
>CONST_IMG_SMTP_SERVER.....<img src="/mail.gif" border="0" alt="Mail (SMTP)">
>CONST_INDEX_HTML.....index.html
>CONST_INFO_NTOP_HTML.....info.html
>CONST_INVALIDNETMASK.....-1
>CONST_IP_L_2_L_HTML.....ipL2L.html
>CONST_IP_L_2_R_HTML.....ipL2R.html
>CONST_IP_PROTO_DISTRIB_HTML.....ipProtoDistrib.html
>CONST_IP_PROTO_USAGE_HTML.....ipProtoUsage.html
>CONST_IP_R_2_L_HTML.....ipR2L.html
>CONST_IP_R_2_R_HTML.....ipR2R.html
>CONST_IP_TRAFFIC_MATRIX_HTML.....ipTrafficMatrix.html
>CONST_ISO8601_TIMESPEC.....%Y-%m-%dT%H:%M:%S
>CONST_LEFTMENU_HTML.....leftmenu.html
>CONST_LEFTMENU_NOJS_HTML.....leftmenu-nojs.html
>CONST_LEGEND_BOX_SIZE.....7
>CONST_LIBGD_SO.....libgd.so
>CONST_LOCALE_TIMESPEC.....%c
>CONST_LOCAL_ROUTERS_LIST_HTML.....localRoutersList.html
>CONST_LOG_VIEW_BUFFER_SIZE.....50
>CONST_MAGIC_NUMBER.....1968
>CONST_MAN_NTOP_HTML.....ntop.html
>CONST_MODIFY_URL.....modifyURL
>CONST_MODIFY_USERS.....modifyUsers
>CONST_MULTICAST_MASK.....-536870912
>CONST_MULTICAST_STATS_HTML.....multicastStats.html
>CONST_NET_FLOWS_HTML.....NetFlows.html
>CONST_NETMASK_ENTRY.....yes
>CONST_NETWORK_ENTRY.....0
>CONST_NTOP_HELP_HTML.....help.html
>CONST_NTOP_P3P.....ntop.p3p
>CONST_NULL_HDRLEN.....4
>CONST_NUM_TABLE_ROWS_PER_PAGE.....128
>CONST_NUM_TRANSACTION_ENTRIES.....256
>CONST_OSFINGERPRINT_FILE.....etter.passive.os.fp
>CONST_P2C_FILE.....p2c.opt.table
>CONST_PACKET_QUEUE_LENGTH.....2048
>CONST_PATH_SEP.....47
>CONST_PCAPNONBLOCKING_SLEEP_TIME.....30000000
>CONST_PCAP_NW_INTERFACE_FILE.....pcap file
>CONST_PCTG_HIGH_COLOR.....BGCOLOR=#FF3118
>CONST_PCTG_LOW.....25
>CONST_PCTG_MID.....75
>CONST_PIE_FC_PKT_SZ_DIST.....fcPktSizeDistribPie
>CONST_PIE_INTERFACE_DIST.....interfaceTrafficPie
>CONST_PIE_IP_TRAFFIC.....ipTrafficPie
>CONST_PIE_PKT_CAST_DIST.....pktCastDistribPie
>CONST_PIE_PKT_SIZE_DIST.....pktSizeDistribPie
>CONST_PIE_TTL_DIST.....pktTTLDistribPie
>CONST_PIE_VSAN_CNTL_TRAF_DIST.....vsanControlTrafficDistribPie
>CONST_PLUGIN_ENTRY_FCTN_NAME.....PluginEntryFctn
>CONST_PLUGIN_EXTENSION......so
>CONST_PLUGINS_HEADER.....plugins/
>CONST_PPP_HDRLEN.....4
>CONST_PPP_PROTOCOL_TYPE.....34827
>CONST_PRIVACYCLEAR_HTML.....privacyFlagClear.html
>CONST_PRIVACYFORCE_HTML.....privacyFlagForce.html
>CONST_PRIVACYNOTICE_HTML.....privacyNotice.html
>CONST_PROBLEMRPT_HTML.....ntopProblemReport.html
>CONST_REPORT_ITS_DEFAULT.....(default)
>CONST_REPORT_ITS_EFFECTIVE..... (effective)
>CONST_RESET_STATS_HTML.....resetStats.html
>CONST_RFC1945_TIMESPEC.....%a, %d %b %Y %H:%M:%S GMT
>CONST_RRD_DEFAULT_FONT_NAME.....undefined
>CONST_RRD_DEFAULT_FONT_PATH.....undefined
>CONST_RRD_DEFAULT_FONT_SIZE.....undefined
>CONST_RRD_D_PERMISSIONS_EVERYONE.....493
>CONST_RRD_D_PERMISSIONS_GROUP.....488
>CONST_RRD_D_PERMISSIONS_PRIVATE.....448
>CONST_RRD_EXTENSION......rrd
>CONST_RRD_PERMISSIONS_EVERYONE.....2
>CONST_RRD_PERMISSIONS_GROUP.....yes
>CONST_RRD_PERMISSIONS_PRIVATE.....0
>CONST_RRD_UMASK_EVERYONE.....18
>CONST_RRD_UMASK_GROUP.....22
>CONST_RRD_UMASK_PRIVATE.....54
>CONST_SCSI_BYTES_HTML.....scsiBytes.html
>CONST_SCSI_STATUS_HTML.....scsiStatus.html
>CONST_SCSI_TIMES_HTML.....scsiTimes.html
>CONST_SCSI_TM_HTML.....scsiTMInfo.html
>CONST_SFLOW_TCPDUMP_MAGIC.....-1582119980
>CONST_SHOW_MUTEX_HTML.....showMutex.html
>CONST_SHOW_PLUGINS_HTML.....showPlugins.html
>CONST_SHOW_PORT_TRAFFIC_HTML.....showPortTraffic.html
>CONST_SHOW_URLS_HTML.....showURLs.html
>CONST_SHOW_USERS_HTML.....showUsers.html
>CONST_SHUTDOWN_NTOP_HTML.....shutdown.html
>CONST_SIZE_PCAP_ERR_BUF.....512
>CONST_SORT_DATA_HOST_TRAFFIC_HTML.....dataHostTraffic.html
>CONST_SORT_DATA_IP_HTML.....sortDataIP.html
>CONST_SORT_DATA_PROTOS_HTML.....sortDataProtos.html
>CONST_SORT_DATA_RCVD_HOST_TRAFFIC_HTML.....dataRcvdHostTraffic.html
>CONST_SORT_DATA_SENT_HOST_TRAFFIC_HTML.....dataSentHostTraffic.html
>CONST_SORT_DATA_THPT_HTML.....sortDataThpt.html
>CONST_SORT_DATA_THPT_STATS_HTML.....thptStats.html
>CONST_SSL_CERTF_FILENAME.....undefined
>CONST_SWITCH_NIC_HTML.....switch.html
>CONST_TEXT_INFO_NTOP_HTML.....textinfo.html
>CONST_THPTLABEL_TIMESPEC.....%b %d %H:%M
>CONST_THPT_STATS_MATRIX_HTML.....thptStatsMatrix.html
>CONST_THROUGHPUT_GRAPH.....thptGraph
>CONST_TOD_HOUR_TIMESPEC.....%H
>CONST_TOD_NOSEC_TIMESPEC.....%H:%M
>CONST_TOD_WSEC_TIMESPEC.....%H:%M:%S
>CONST_TRAFFIC_STATS_HTML.....trafficStats.html
>CONST_TRMTU.....2000
>CONST_TWO_MSL_TIMEOUT.....120
>CONST_UNKNOWN_MTU.....65355
>CONST_VERY_DETAIL_TRACE_LEVEL.....6
>CONST_VIEW_LOG_HTML.....viewLog.html
>CONST_VLAN_LIST_HTML.....vlanList.html
>CONST_VSAN_DETAIL_HTML.....vsanDetail.html
>CONST_VSAN_DISTRIB_HTML.....vsanDistrib.html
>CONST_VSAN_LIST_HTML.....vsanList.html
>CONST_W3C_CHARTYPE_LINE.....<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
>CONST_W3C_DOCTYPE_LINE_32.....<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
>CONST_W3C_DOCTYPE_LINE.....<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
>CONST_W3C_P3P_XML.....w3c/p3p.xml
>CONST_WIN32_PATH_NETWORKS.....networks
>CONST_XML_DOCTYPE_NAME.....ntop_dump
>CONST_XML_DTD_NAME.....ntopdump.dtd
>CONST_XMLDUMP_PLUGIN_NAME.....xmldump
>CONST_XML_TMP_NAME...../tmp/ntopxml
>CONTACTED_PEERS_THRESHOLD.....1024
>DEFAULT_AS_LOOKUP_URL.....http://ws.arin.net/cgi-bin/whois.pl?queryinput=AS
>DEFAULT_NETFLOW_PORT_STR.....2055
>DEFAULT_NTOP_ACCESS_LOG_FILE.....(null)
>DEFAULT_NTOP_AUTOREFRESH_INTERVAL.....120
>DEFAULT_NTOP_DAEMON_MODE.....0
>DEFAULT_NTOP_DEBUG.....0
>DEFAULT_NTOP_DEBUG_MODE.....0
>DEFAULT_NTOP_DEVICES.....(null)
>DEFAULT_NTOP_DISABLE_PROMISCUOUS.....0
>DEFAULT_NTOP_DOMAIN_NAME.....(nil)
>DEFAULT_NTOP_DONT_TRUST_MAC_ADDR.....0
>DEFAULT_NTOP_ENABLE_SESSIONHANDLE.....yes
>DEFAULT_NTOP_FAMILY.....0
>DEFAULT_NTOP_FILTER_EXPRESSION.....(null)
>DEFAULT_NTOP_FILTER_IN_FRAME.....0
>DEFAULT_NTOP_FLOW_SPECS.....(null)
>DEFAULT_NTOP_LOCAL_SUBNETS.....(null)
>DEFAULT_NTOP_MERGE_INTERFACES.....yes
>DEFAULT_NTOP_NUMERIC_IP_ADDRESSES.....0
>DEFAULT_NTOP_OTHER_PKT_DUMP.....0
>DEFAULT_NTOP_PACKET_DECODING.....yes
>DEFAULT_NTOP_PCAP_LOG_FILENAME.....(null)
>DEFAULT_NTOP_PID_DIRECTORY...../var/run
>DEFAULT_NTOP_PIDFILE.....ntop.pid
>DEFAULT_NTOP_STICKY_HOSTS.....0
>DEFAULT_NTOP_SUSPICIOUS_PKT_DUMP.....0
>DEFAULT_NTOP_TRACK_ONLY_LOCAL.....0
>DEFAULT_NTOP_TRAFFICDUMP_FILENAME.....(null)
>DEFAULT_NTOP_WEB_ADDR.....(null)
>DEFAULT_NTOP_WEB_PORT.....3000
>DEFAULT_RRD_DAYS.....90
>DEFAULT_RRD_HOURS.....72
>DEFAULT_RRD_INTERVAL.....300
>DEFAULT_RRD_MONTHS.....36
>DEFAULT_RRD_PERMISSIONS.....0
>DEFAULT_SFLOW_COLLECTOR_PORT.....6343
>DEFAULT_SFLOW_COLLECTOR_PORT_STR.....6343
>DEFAULT_SFLOW_SAMPLING_RATE.....400
>DEFAULT_SNAPLEN.....384
>DEFAULT_SYSLOG_FACILITY.....24
>DEFAULT_TCPWRAP_ALLOW.....undefined
>DEFAULT_TCPWRAP_DENY.....undefined
>DEFAULT_TRACE_LEVEL.....3
>DEFAULT_VSAN.....yes
>DEFAULT_WEBSERVER_REQUEST_QUEUE_LEN.....10
>EMSGSIZE.....90
>ETHERMTU.....1500
>LEN_ADDRESS_BUFFER.....44
>LEN_CMDLINE_BUFFER.....4096
>LEN_ETHERNET_ADDRESS_DISPLAY.....18
>LEN_ETHERNET_ADDRESS.....6
>LEN_ETHERNET_VENDOR_DISPLAY.....9
>LEN_ETHERNET_VENDOR.....3
>LEN_FC_ADDRESS_DISPLAY.....9
>LEN_FC_ADDRESS.....3
>LEN_FGETS_BUFFER.....512
>LEN_GENERAL_WORK_BUFFER.....1024
>LEN_MEDIUM_WORK_BUFFER.....128
>LEN_SMALL_WORK_BUFFER.....24
>LEN_TIMEFORMAT_BUFFER.....48
>LEN_WWN_ADDRESS_DISPLAY.....24
>LEN_WWN_ADDRESS.....8
>MAKE_ASYNC_ADDRESS_RESOLUTION.....yes
>MAKE_NTOP_PACKETSZ_DECLARATIONS.....no
>MAKE_WITH_FORK_COPYONWRITE.....yes
>MAKE_WITH_HTTPSIGTRAP.....no
>MAKE_WITH_LOG_XXXXXX.....no
>MAKE_WITH_NETFLOWSIGTRAP.....no
>MAKE_WITH_RRDSIGTRAP.....no
>MAKE_WITH_SCHED_YIELD.....yes
>MAKE_WITH_SEMAPHORES.....yes
>MAKE_WITH_SSLWATCHDOG.....no
>MAKE_WITH_SSLWATCHDOG_RUNTIME.....no
>MAKE_WITH_SYSLOG.....yes
>MAX_ADDRESSES.....35
>MAX_ALIASES.....35
>MAX_ASSIGNED_IP_PORTS.....1024
>MAXCDNAME.....255
>MAX_DEVICE_NAME_LEN.....64
>MAX_DLT_ARRAY.....123
>MAXDNAME.....1025
>MAX_ELEMENT_HASH.....4096
>MAX_FC_DOMAINS.....240
>MAX_HASHDUMP_ENTRY.....65535
>MAXHOSTNAMELEN.....64
>MAX_HOSTS_CACHE_LEN.....512
>MAX_HOSTS_PURGE_PER_CYCLE.....unlimited
>MAX_IP_PORT.....65534
>MAXLABEL.....63
>MAX_LANGUAGES_REQUESTED.....4
>MAX_LANGUAGES_SUPPORTED.....8
>MAX_LASTSEEN_TABLE_SIZE.....4096
>MAX_LEN_SYM_HOST_NAME_HTML.....256
>MAX_LEN_SYM_HOST_NAME.....64
>MAX_LEN_URL.....512
>MAX_LEN_VENDOR_NAME.....64
>MAX_NFS_NAME_HASH.....12288
>MAX_NODE_TYPES.....8
>MAX_NUM_BAD_IP_ADDRESSES.....3
>MAX_NUM_CONTACTED_PEERS.....8
>MAX_NUM_DEQUEUE_THREADS.....yes
>MAX_NUM_DEVICES.....32
>MAX_NUM_DEVICES_VIRTUAL.....7
>MAX_NUM_DHCP_MSG.....8
>MAX_NUM_FIN.....4
>MAX_NUM_IGNOREDFLOWS.....32
>MAX_NUM_LIST_ENTRIES.....32
>MAX_NUM_NETWORKS.....32
>MAX_NUM_OS.....256
>MAX_NUM_PROBES.....16
>MAX_NUM_PROTOS.....64
>MAX_NUM_PURGED_SESSIONS.....512
>MAX_NUM_PWFILE_ENTRIES.....32
>MAX_NUM_QUEUED_ADDRESSES.....4096
>MAX_NUM_RECENT_PORTS.....5
>MAX_NUM_ROUTERS.....512
>MAX_NUM_STORED_FLAGS.....4
>MAX_NUM_UNKNOWN_PROTOS.....5
>MAX_PACKET_LEN.....8232
>MAX_PASSIVE_FTP_SESSION_TRACKER.....384
>MAX_PDA_HOST_TABLE.....4096
>MAX_PER_DEVICE_HASH_LIST.....65535
>MAX_SESSIONS_CACHE_LEN.....512
>MAX_SSL_CONNECTIONS.....undefined
>MAX_SUBNET_HOSTS.....1024
>MAX_TOT_NUM_SESSIONS.....65535
>MAX_USER_VSAN.....1001
>MAX_VSANS_GRAPHED.....10
>MAX_VSANS.....4095
>MAX_WEBSERVER_REQUEST_QUEUE_LEN.....20
>MAX_WIN32_NET_ALIASES.....35
>MIN_SLICE_PERCENTAGE.....0
>MIN_WEBSERVER_REQUEST_QUEUE_LEN.....2
>NAME_MAX.....255
>NETDB_SUCCESS.....0
>NETFLOW_DEVICE_NAME.....NetFlow-device
>NS_CMPRSFLGS.....192
>NS_MAXCDNAME.....255
>PACKETSZ.....512
>PARM_ENABLE_EXPERIMENTAL.....no
>PARM_FORK_CHILD_PROCESS.....yes
>PARM_HOST_PURGE_INTERVAL.....120
>PARM_HOST_PURGE_MINIMUM_IDLE_ACTVSES.....1800
>PARM_HOST_PURGE_MINIMUM_IDLE_NOACTVSES.....600
>PARM_MIN_WEBPAGE_AUTOREFRESH_TIME.....15
>PARM_PASSIVE_SESSION_MINIMUM_IDLE.....60
>PARM_PRINT_ALL_SESSIONS.....no
>PARM_PRINT_RETRANSMISSION_DATA.....no
>PARM_SESSION_PURGE_MINIMUM_IDLE.....600
>PARM_SHOW_NTOP_HEARTBEAT.....no
>PARM_SSLWATCHDOG_WAIT_INTERVAL.....undefined
>PARM_SSLWATCHDOG_WAITWOKE_LIMIT.....undefined
>PARM_THROUGHPUT_REFRESH_INTERVAL.....30
>PARM_USE_CGI.....yes
>PARM_USE_COLOR.....no
>PARM_USE_HOST.....no
>PARM_USE_MACHASH_INVERT.....yes
>PARM_USE_SESSIONS_CACHE.....no
>PARM_WEDONTWANTTOTALKWITHYOU_INTERVAL.....300
>SFLOW_DEVICE_NAME.....sFlow-device
>THREAD_MODE.....MT
>
>
>Compile Time: globals-report.h
>
>Chart Format......png
>
>
>PLUGINS:
>
>RRD:
>RRD path...../usr/local/share/ntop/rrd
>New directory permissions.....0700
>New file umask.....0066
>
>
>
>
>


--
Luca Deri <deri@ntop.org> http://luca.ntop.org/
Hacker: someone who loves to program and enjoys being
clever about it - Richard Stallman