<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to support-requests</title><link>https://sourceforge.net/p/nfdump/support-requests/</link><description>Recent changes to support-requests</description><atom:link href="https://sourceforge.net/p/nfdump/support-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Mon, 15 Apr 2013 09:56:18 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/nfdump/support-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>1M = 1000000 or 1M = 1024*1024</title><link>https://sourceforge.net/p/nfdump/support-requests/6/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi!&lt;br /&gt;
I have a question about nfdump. I execute this command:&lt;br /&gt;
nfdump -r /var/netflow/nfcapd.201304101213 -o fmt:%sa%da%byt -q&lt;br /&gt;
After that i've got this data:&lt;/p&gt;
&lt;p&gt;91.214.242.128  91.149.149.207     196&lt;br /&gt;
213.176.239.12   91.214.242.84   3.1 M&lt;br /&gt;
78.31.73.172  91.214.240.173    3789&lt;br /&gt;
91.214.242.247   91.224.223.96  137182&lt;br /&gt;
95.182.104.86  91.214.242.247   1.5 M&lt;br /&gt;
The question is, how can i translate this digits:&lt;br /&gt;
1M = 1000000 or 1M = 1024*1024 ? &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Mon, 15 Apr 2013 09:56:18 -0000</pubDate><guid>https://sourceforge.net2e48b3af36445e78036e01fde43090e303ab1390</guid></item><item><title>lAwUXL  &lt;a href="http://gxrhzvxteyvh.com/"&gt;gxrhzvxteyvh&lt;/a&gt;,</title><link>https://sourceforge.net/p/nfdump/support-requests/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;lAwUXL  &amp;lt;a href="http://gxrhzvxteyvh.com/"&amp;gt;gxrhzvxteyvh&amp;lt;/a&amp;gt;, [url=http://cnmlefzuxwka.com/]cnmlefzuxwka[/url], [link=http://xebkmrcqlvii.com/]xebkmrcqlvii[/link], &lt;a href="http://noibdymskzoz.com/" rel="nofollow"&gt;http://noibdymskzoz.com/&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sun, 14 Apr 2013 01:16:59 -0000</pubDate><guid>https://sourceforge.neted98e575691c44a4bcddc72dd2f4118e82934d82</guid></item><item><title>v1.3.6p1 compilation problem</title><link>https://sourceforge.net/p/nfdump/support-requests/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I have successfully compiled/installed nfdump with ./configure, make, make install (on Centos 5.6) but it doesn't work when (I need it for nfsen):&lt;/p&gt;
&lt;p&gt;./configure --enable-nfprofile&lt;/p&gt;
&lt;p&gt;It complains:&lt;/p&gt;
&lt;p&gt;checking for rrd_update in -lrrd... no&lt;br /&gt;
configure: error: Can not link librrd. Please specify --with-rrdpath=.. configure failed!&lt;/p&gt;
&lt;p&gt;Then I do:&lt;/p&gt;
&lt;p&gt;./configure --enable-nfprofile --with-rrdpath=/usr/lib64/librrd.so.4&lt;/p&gt;
&lt;p&gt;and it fails:&lt;/p&gt;
&lt;p&gt;configure: error: in `/root/nfdump-1.6.3p1':&lt;br /&gt;
configure: error: C preprocessor "/lib/cpp" fails sanity check&lt;/p&gt;
&lt;p&gt;What can I do?&lt;/p&gt;
&lt;p&gt;I attach config.log (gzipped).&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;
Nick&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nick Apple</dc:creator><pubDate>Sat, 16 Apr 2011 15:17:00 -0000</pubDate><guid>https://sourceforge.net8abb33ac5c5e7a1cbf4a9e1aa6ba97feaaeacd2a</guid></item><item><title>new templates</title><link>https://sourceforge.net/p/nfdump/support-requests/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hello,&lt;br /&gt;
I'm looking for add new netflow templates in nfdump. NProbe sends new templates about latencies and http infos and I will try to collect them with nscaptured and visualize with nfsen.&lt;/p&gt;
&lt;p&gt;I added in nfx.c&lt;br /&gt;
{ EX_LATENCY,         24, 15, 0,   "latency"},&lt;br /&gt;
(are 6 fields of 32 bit)&lt;/p&gt;
&lt;p&gt;then in nffile.h added the new structure:&lt;br /&gt;
#define EX_LATENCY 26&lt;br /&gt;
typedef struct tpl_ext_26_s {&lt;br /&gt;
uint32_t       client_nw_delay_usec;&lt;br /&gt;
uint32_t       client_nw_delay_sec;&lt;br /&gt;
uint32_t       server_nw_delay_usec;&lt;br /&gt;
uint32_t       server_nw_delay_sec;&lt;br /&gt;
uint32_t       appl_latency_usec;&lt;br /&gt;
uint32_t       appl_latency_sec;&lt;br /&gt;
uint8_t        data[4];  // points to further data&lt;br /&gt;
} tpl_ext_26_t;&lt;br /&gt;
and&lt;br /&gt;
added the fields in the master_record&lt;/p&gt;
&lt;p&gt;The problem is that only the first field is filled.&lt;br /&gt;
They are other steps or hints that you can give me?&lt;/p&gt;
&lt;p&gt;If the integration succeds, can I provide you a patch to integrate in the mainstream?&lt;/p&gt;
&lt;p&gt;thanks!&lt;/p&gt;
&lt;p&gt;Luca&lt;/p&gt;
&lt;p&gt;P.S. I will try to document how implement a new template.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Luca Di Stefano</dc:creator><pubDate>Wed, 23 Feb 2011 15:12:13 -0000</pubDate><guid>https://sourceforge.net5a6308008ae728e04baa7e012d3bddf29f255412</guid></item><item><title>UDP Extended output shows "Flags"</title><link>https://sourceforge.net/p/nfdump/support-requests/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;In some cases dumping flowdata shows "tcpflags" in extended format.&lt;br /&gt;
2010-04-12 16:53:44.408     0.000 UDP      192.168.0.1 -&amp;gt;        192.168.0.1.:53    .A....   0        1       73        0        0     73     1&lt;/p&gt;
&lt;p&gt;does this output have any special means? udp itself obviously does not have any "flags". &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Mon, 12 Apr 2010 15:11:59 -0000</pubDate><guid>https://sourceforge.net973557c15e95c431f2cea6eb649230f00caf30b7</guid></item><item><title>How nfdump-1.5.7 will handle 4 byte AS numbers.</title><link>https://sourceforge.net/p/nfdump/support-requests/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;nfdump-1.6 very well support the 4 byte AS numbers but does the old nfdump version 1.5.7 would crash if it see 4 byte AS numbers (new 4 byte AS dot notation) in the netflow?&lt;br /&gt;
I dont have v9 netflow captured to test this. Please respond.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 11 Feb 2010 09:53:33 -0000</pubDate><guid>https://sourceforge.net2f6ef17af68bd2c52d7c2d82456c467ef8e6a8c4</guid></item></channel></rss>