This is a guest diary submitted by Basil Alawi. What is NetFlow? NetFlow is a traffic-summarization format that was first implemented by Cisco Systems, primarily for billing purposes. Network flow data (or Network flow) is a generalization of NetFlow. Network flow collection differs from direct packet capture, such as tcpdump, in that it builds a summary of communications between sources and destinations on a network. This summary covers all traffic matching seven particular keys that are relevant for addressing: the source and destination IP addresses, the source and destination ports, the protocol type, the type of service, and the interface on the router[i]. SiLK SiLK is a suite of network traffic collection and analysis tools developed and maintained by the CERT Network Situational Awareness Team (CERT NetSA) at Carnegie Mellon University to facilitate security analysis of large networks. The SiLK tool suite supports the efficient collection, storage, and analysis of network flow data, enabling network security analysts to rapidly query large historical traffic data sets[ii]. Netflow on VMware ESXi: NetFlow is available in vSphere distributed switch version 5 or later as well as in Cisco Nexus 1000v. VMware vSphere 5 supports NetFlow v5 while Cisco Nexus 1000v support Netflow v5 as well as Netflow v9. Running netflow on a vSphere environment will provide visibility of the following: · Intrahost virtual machine traffic (virtual machine–to–virtual machine traffic on the same host) · Interhost virtual machine traffic (virtual machine–to–virtual machine traffic on different hosts) · Virtual machine to physical infrastructure traffic
Test Lab The test lab consist of Vmware ESXi 5.1 as a host ,Ubuntu 13.04 as netflow collector and analysis workstation , Kali Linux with an IP of 192.168.207.30 , Linux#1 server with an IP 192.168.207.12 , Linux#2 with an IP of 192.168.207 and Cisco Nexus 1000v switch with an IP of 192.168.207.139.
SiLK Installation For this diary the SiLK will be running on a fresh Ubuntu 13.04 installation. Here is a step by step instruction on how to install SiLK on Ubuntu Linux.
1-Install gcc , gcc-c++, glib2, glib2-devel, libpcap, libpcap-devel, python and python-devel
2-Download Silk and fixbuf. Latest version can be found at http://tools.netsa.cert.org/
3-Install fixbuf
3-Install Yaf
4-Install SiLK
5- Add the following paths to ld.so.conf
6- Run ldconfig
7-Create /data directory
8- Configure rwflowpack
9- copy the startup script into /etc/init.d and set it to start on boot.
SiLK configuration:
1-Create and configure the /data/silk.conf file. You can use the below text, replace the word Nexus with your netflow enabled device.
2-create and configure the sensor.conf file
3-Allow traffic from udp port 9901 from the Nexus Management port
4-Start the rwflowpack
Nexus Cisco 1000v I am not going to discuss the installation of Nexus Cisco 1000v in this diary; a step by step guide is available at http://www.cisco.com/en/US/docs/switches/datacenter/nexus1000/sw/4_2_1_s_v_2_2_1/install_upgrade/guide/b_Installation_and_Upgrade_Release_4_2_1SV2_2_1_series_release.html
Nexus Cisco 1000v Configuration Cisco Nexus 1000v: Here is the steps to configure 1-Enable netflow
2-Configure the exporter
3-configure the flow monitor
4-Assigning the Flow Monitor to an Interface
SiLK Commands: Here is a very brief description of some SiLK commands: rwfilter [1] : rwfilter is the most used command in the SiLK suite. It serves as the starting point for most Analyses.
rwcut[2] :
rwcut Print selected fields of binary SiLK Flow records and prints the records to the screen in a textual, bar ( rwstat [3] : rwstats - Print top-N or bottom-N lists or summarize data by protocol , rwstats has two modes of operation: it can compute a Top-N or Bottom-N list, or it can summarize data for a list of protocols. SiLK Usage: Here are some examples of SiLK usage: 1-Finding the top talkers
In this example rwfilter will read data from Nexus sensor, --protocol switch is the IP protocol number[4] ,the most common used protocols are icmp=1,tcp=6 and udp=17 ,0-255 means select all possible IP protocols ,. The --protocol switch is a partitioning switch, --pass=stdout will Send SiLK flow records matching partitioning parameters to pipe . By default the output of rwfilter is in binary format not in ascii format. The rwstats will compute the Top-N list, the –fields sIP,dIP will display source IP address and destination IP address ,--count=10 will choose the top 10 and –bytes will choose the top 10 based on the bytes value.
2-Filttering traffic based on port number
In this example rwfilter will read data from Nexus sensor,--protocol=17 will select UDP flow records,---aport=123 will filter traffic based on port number 123 which is NTP port . rwuniq[5] will summarize SiLK Flow records by a user-specified key comprised of record attributes , --fields sIP will display the source IP address.
3-Finding traffic with outside world:
In this example rwfilter will write all the records that doesn’t have both source and destination IP address within the 192.168.20.0 range. 4- Finding all the traffic the exceed a certain size
In this example rwfilter will pass all of the records that have 10000 bytes or more. The hyphen symbol (-) is more or equal. [1] http://tools.netsa.cert.org/silk/rwfilter.html [2] http://tools.netsa.cert.org/silk/rwcut.html [3] http://tools.netsa.cert.org/silk/rwstats.html [5] http://tools.netsa.cert.org/silk/rwuniq.html [i] http://tools.netsa.cert.org/silk/faq.html#what-is-flow I will be teaching next: Defending Web Applications Security Essentials - SANS Cyber Security West: March 2021 |
Johannes 4067 Posts ISC Handler Oct 22nd 2013 |
|||||||||||||||||||||||||
Thread locked Subscribe |
Oct 22nd 2013 7 years ago |
|||||||||||||||||||||||||
Nice write-up.
You may want to consider open-source FlowViewer for a robust web-based front-end to SiLK See: http://sourceforge.net/projects/flowviewer/ |
Anonymous |
|||||||||||||||||||||||||
Quote |
Oct 24th 2013 7 years ago |
Sign Up for Free or Log In to start participating in the conversation!