ng_netflow unable to capture data
George Uhl
george.uhl at gsfc.nasa.gov
Thu Jun 14 18:16:21 UTC 2007
I'm using a freebsd 6.2-RELEASE host as a passive monitor between two
routers. I have a netoptics fiber tap that I use to split out the
transmit signal from each router and I run them into two fiber
interfaces on my host. With ng_eiface I've created a virtual
ethernet interface that I use to combine the two transmit streams
using ng_one2many. I can see the combined transmit streams on the
virtual interface using tcpdump. However, I'm unable to capture
netflow data. Any help would be appreciated.
Script to set up netflow using netgraph:
#!/bin/sh
kldload ng_ether
kldload ng_tee
kldload ng_one2many
kldload ng_netflow
kldload ng_ksocket
# ifaces accepting transmit streams from the routers
ifconfig em2 promisc -arp up
ifconfig em3 promisc -arp up
# create a netgraph virtual interface and attach a tee node to it
ngctl mkpeer . eiface hook ether
ngctl mkpeer ngeth0: tee lower right
ngctl name ngeth0:lower tee0
# bring up ngeth0
ifconfig ngeth0 promisc -arp up
# create a one2many node, attach tapped interfaces to it and hook it
to tee node
ngctl mkpeer tee0: one2many left one
ngctl name tee0:left o2m0
ngctl connect em2: o2m0: lower many0
ngctl connect em3: o2m0: lower many1
# hook up netflow to tap
ngctl mkpeer tee0: netflow right2left iface0
ngctl name tee0:right2left flow0
# hook up netflow export to ksocket
ngctl mkpeer flow0: ksocket export inet/dgram/udp
ngctl msg flow0:export connect inet/127.0.0.1:4444
--
-----------------------------------------------
George Uhl
ESDIS Network Prototyping Lab
email: george.uhl at gsfc.nasa.gov
phone: 301-614-5155
More information about the freebsd-net
mailing list