<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Advanced NetFlow Traffic Analysis - Network traffic monitoring  Archives</title>
    <link rel="alternate" type="text/html" href="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/" />
    <link rel="self" type="application/atom+xml" href="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/network-traffic-monitoring/atom.xml" />
    <id>tag:blog.tmcnet.com,2012-01-03:/advanced-netflow-traffic-analysis//164</id>
    <updated>2013-03-13T09:56:01Z</updated>
    

<entry>
    <title>Building a NetFlow Cache: Exporting IPFIX</title>
    <link rel="alternate" type="text/html" href="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/2013/03/building-a-netflow-cache-exporting-ipfix.html" />
    <id>tag:blog.tmcnet.com,2013:/advanced-netflow-traffic-analysis//164.50824</id>

    <published>2013-03-12T20:28:49Z</published>
    <updated>2013-03-13T09:56:01Z</updated>

    <summary><![CDATA[Most engineers implementing NetFlow or IPFIX know how to get started.&nbsp; Where they sometimes stumble is in the area of a properly structured export with well thought out relationships between the templates. Today I want to provide an good example.This&nbsp;...]]></summary>
    <author>
        <name>Michael Patterson</name>
        <uri>http://blog.tmcnet.com/advanced-netflow-traffic-analysis/</uri>
    </author>
    
        <category term="Network traffic monitoring " scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="ipfix" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="bookonnetflowandipfix" label="book on NetFlow and IPFIX" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="buildinganetflowcache" label="Building a NetFlow Cache" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="exportingipfix" label="Exporting IPFIX" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="netflowandipfix" label="NetFlow and IPFIX" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="networktrafficmonitoring" label="Network Traffic Monitoring" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/">
        <![CDATA[Most engineers implementing NetFlow or IPFIX know how to get started.&nbsp; Where they sometimes stumble is in the area of a properly structured export with well thought out relationships between the templates. Today I want to provide an good example.<br /><br />This&nbsp; post on building a NetFlow Cache and exporting IPFIX is pretty deep. For this reason, my prior post on <a title="NetFlow and IPFIX" href="http://www.plixer.com/blog/cisco-netflow/exporting-netflow-or-ipfix/">Exporting NetFlow or IPFIX</a>&nbsp;&nbsp; really should be reviewed first.&nbsp; A flow cache entry in a router or switch is built using the first packet between two hosts and the cache table is maintained for all active connections (i.e. flows).&nbsp;&nbsp; When a packet comes into the device, its tuple is compared to existing entries in the cache table.&nbsp; A match of the key fields triggers a flow entry update where packet, byte counts and perhaps other fields are incremented and updated. Packets that don&rsquo;t match a flow entry are compared to policy (e.g. firewall or ACL rules) and are ultimately dropped or used to create new cache entries.&nbsp; Flow entries are exported to a flow collector periodically based on timers (I.e. Active Timeout) or flow behaviors. <br /><!-- pagebreak -->When talking with a vendor about building out a flow cache, it is very important that we first establish what we want to export.&nbsp; For most vendor implementations, this decision is easy and they copy NetFlow v5. Some software developers however, want to take their flow export to another level and provide the very best in Network Traffic Monitoring metrics. To do this, a list of all the details that need to be exported should be created. <br />
<ul>
<li>All of the data available in NetFlow v5</li>
<li>VoIP details on caller ID, Codec, Jitter and packet loss</li>
<li>Cloud service details on round trip time, URLs and deep packet inspection details that identify tricky applications like Skype, Webex and BitTorrent.</li>
<li>Interface names and speeds to avoid the reporting tools dependency on SNMP</li>
<li>Syslog and trap message details</li>
</ul>
The next step is to layout the IPFIX elements needed for each template.&nbsp; We have to use IPFIX because in all likelihood your company name isn&rsquo;t Cisco and even if it is, the list includes elements that will end up being variable length fields such as URL and syslog details.&nbsp; These are, for all practical reasons, difficult to export using NetFlow v9.&nbsp; Let&rsquo;s get started on IPFIX template creation and take the list above one item at a time.&nbsp; Each element name is preceded by an IANA or a dot separated vendor specific IE.<br /><br />Be sure to take notice that <a title="IPFIX Standard on Elements" href="http://www.iana.org/assignments/ipfix/ipfix.xml">IANA defined IEs</a> are always the preference over vendor specific IEs.&nbsp; The vendor specific IEs are followed by the vendor Private Enterprise Number (PEN) (e.g. .32473). <br />
<ul>
<li>A) Template: All of the data available in NetFlow v5/v9. This template is easy to define because all of the information necessary has been defined by IANA:</li>
</ul>
<ol>
<ul>
<li>1 octetDeltaCount</li>
<li>2 packetDeltaCount</li>
<li>4 protocolIdentifier</li>
<li>5 ipClassOfService</li>
<li>6 tcpControlBits</li>
<ul>
<li>Sent as 0 for non TCP traffic</li>
</ul>
<li>7 sourceTransportPort</li>
<li>8 sourceIPv4Address</li>
<li>9 sourceIPv4PrefixLength</li>
<li>10 ingressInterface</li>
<li>11 destinationTransportPort</li>
<li>12 destinationIPv4Address</li>
<li>13 destinationIPv4PrefixLength</li>
<li>14 egressInterface</li>
<li>15 ipNextHopIPv4Address</li>
<li>16 bgpSourceAsNumber</li>
<li>17 bgpDestinationAsNumber</li>
<li>21 flowEndSysUpTime</li>
<li>22 flowStartSysUpTime</li>
<li>95 Application ID</li>
<ul>
<li>This element causes another template below</li>
</ul>
<li>148 Flow ID</li>
<ul>
<li>This element is used to link to other templates</li>
</ul>
</ul>
</ol>The above template is used for all protocols not sent by a more specific template.&nbsp; See below.<br />
<ul>
<li>B) Template: VoIP details on caller ID, Codec, Jitter and packet loss.&nbsp; These elements are exported using a new template that contains meta data related to the flows exported above for the UDP real-time protocol (RTP).&nbsp; It contains the following IDs:</li>
</ul>
<ol>
<ul>
<li>148 Flow ID</li>
<ul>
<li>Links to the flow in A)</li>
</ul>
<li>400.32473 Caller ID</li>
<li>401.32473 Codec</li>
<li>402.32473 Jitter</li>
<li>403.32473 Packet Loss</li>
</ul>
</ol>
<ul>
<li>C) Template: Cloud service details on round trip time, URLs and deep packet inspection details that identify tricky applications like Skype and BitTorrent.&nbsp; These elements are exported using a meta data template similar to the one created in b).&nbsp; In this case however, the template is only used for TCP traffic and includes the following IDs:</li>
</ul>
<ol>
<ul>
<li>148 Flow ID</li>
<ul>
<li>Links to the flow in a)</li>
</ul>
<li>501.32473 Round Trip Time</li>
<li>503.32473 URL</li>
</ul>
</ol>
<ul>
<li>D) Template: Interface names and speeds to avoid the reporting tools dependency on SNMP:<br />
<ul>
<li>10 ingressInterface</li>
<li>82 interfaceName</li>
<li>83 interfaceDescription</li>
<li>82.32473 ifSpeed</li>
</ul>
</li>
</ul>
IMPORTANT: Always check with IANA for the IE before creating one with the company PEN! This helps guarantee wider acceptance from collectors built by different vendors and improves cross vendor reporting.
<ul>
<li>E) Template: Syslog and trap message details:<br />
<ul>
<li>322 observationTimeSeconds</li>
<li>700.32473 Facility</li>
<li>701.32473 Severity</li>
<li>8 sourceIPv4Address</li>
<li>10 ingressInterface</li>
<li>12 destinationIPv4Address</li>
<li>704.32473 Message</li>
</ul>
</li>
</ul>
<ul>
<li>F) Template: Application Name - This template provides the correlation between the application ID and the actual name of the application.&nbsp; There is an effort underway to standardize this export which would allow consistency across vendors.</li>
</ul>
<ol>
<ul>
<li>95 Application ID</li>
<ul>
<li>Links to the flow in a)</li>
</ul>
<li>96 Application Name</li>
</ul>
</ol>With the templates above defined, it is time to find an IPFIX software solution that will export the data from your appliance. There are plenty of open source projects on the Internet that can do this.&nbsp; One favorite is IPFIXify which also takes care of the template refresh (e.g. every 1-5 minutes) that has to be reported periodically.&nbsp; IPFIXify also exports the RFC 5610 details.&nbsp; To learn more about the above process, consider purchasing my book on NetFlow and IPFIX titled <a title="book on NetFlow" href="http://www.plixer.com/Scrutinizer-Netflow-Sflow/book-on-netflow-and-ipfix.html">Unleashing the Power of NetFlow and IPFIX</a>.<br /><br />]]>
        
    </content>
</entry>

<entry>
    <title>Amazon EC2 Monitoring: Network Performance</title>
    <link rel="alternate" type="text/html" href="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/2013/01/amazon-ec2-monitoring-network-performance.html" />
    <id>tag:blog.tmcnet.com,2013:/advanced-netflow-traffic-analysis//164.50613</id>

    <published>2013-01-26T03:20:55Z</published>
    <updated>2013-01-26T03:28:07Z</updated>

    <summary><![CDATA[We recently did a cost analysis where we considered outsourcing to Amazon&rsquo;s EC2 (Elastic Computing Cloud) service and the topic of network performance monitoring among other issues came up.&nbsp; We considered the amount of bandwidth we would use as well...]]></summary>
    <author>
        <name>Michael Patterson</name>
        <uri>http://blog.tmcnet.com/advanced-netflow-traffic-analysis/</uri>
    </author>
    
        <category term="Network traffic monitoring " scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="flexible netflow" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="network performance monitoring" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="amazonec2monitoring" label="amazon ec2 monitoring" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="flexiblenetflow" label="flexible netflow" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="networkperformancemonitoring" label="network performance monitoring" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="networktrafficmonitoring" label="network traffic monitoring" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/">
        <![CDATA[<p>We recently did a cost analysis where we considered outsourcing to Amazon&rsquo;s EC2 (<a href="http://aws.amazon.com/ec2/" target="_blank">Elastic Computing Cloud</a>) service and the topic of network performance monitoring among other issues came up.&nbsp; We considered the amount of bandwidth we would use as well as how we would monitor the quality of service our customers were gaining through our use of EC2 and the final decision was that Amazon EC2 was not of us.<br /><!-- pagebreak --></p>
<p><!-- pagebreak --><!-- pagebreak --><br /><br />Amazon EC2 services allow companies to create a server hosted by Amazon and manipulate it pretty much as if it were your own.&nbsp; Once configured, the server can either sit on the internet for remote access or a VPN can be setup to allow the Amazon hosted server to sit on your internal network.&nbsp; It is a great concept.&nbsp; To monitor network performance to and from the hosted server, we planned on installing the <a href="http://www.plixer.com/Scrutinizer-Netflow-Sflow/nbox.html" target="_blank">nProbe</a> to monitor TCP connection times to all of our customers. This would allow us to trend metrics on round trip times (RTT) and gain metrics on the Cisco IP SLA monitors used to verify acceptable connection times.&nbsp;</p>
<p>The nProbe, similar to Cisco&rsquo;s performance monitoring Flexible NetFlow technology for medianets, watches TCP handshakes to provide metrics on RTT.&nbsp; Understandably this technology is not ideal for long lived TCP connections as a 2nd TCP hand shake doesn&rsquo;t occur during a long lived connection.&nbsp; In our implementation however, nearly all connections are short lived hence a technology leveraging TCP handshakes to calculate a RTT works fine if not ideal because the RTT measured is of the actual end user connection and not a synthetic transaction like when using IP SLA monitors.&nbsp; There is a great white paper on <a href="http://www.plixer.com/Whitepapers/measuring-latency-using-netflow.html" target="_blank">calculating latency with NetFlow and TCP flags</a>.</p>
<p><img src="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/images/cisco-performance-monitoring-with-scrutinizer.jpg" alt="cisco-performance-monitoring-with-scrutinizer.jpg" width="550" height="303" /></p>
<p>Imagine leveraging a cloud service like salesforce.com and being able to gain metrics on every TCP connection.&nbsp; You would be able to gain insight on which remote offices, subnets and individuals within those groups are seeing the worse connection times.&nbsp; Being a network traffic monitoring company, we have grown accustom to always having this type of insight at our finger tips.&nbsp; The more we looked at the Amazon EC2 service offering the more attractive it became until we started crunching the numbers.</p>
<p>Because we maintain a network traffic baseline of current traffic patterns, we were able to calculate the Amazon EC2 costs times our expected bandwidth use for an entire year.&nbsp; The final figures were in favor of us buying a bigger server and having it hosted at our local service provider.&nbsp; We learned that although Amazon&rsquo;s Elastic Computing Cloud is an attractive offering for many applications, it was not ideal&nbsp; for our specific use.&nbsp; The bandwidth our server would use made the switch to Amazon EC2 cost prohibitive.&nbsp;</p>
We will certainly consider this service in the future and you can bet when we do, the use of Cisco Performance Monitoring and or the nProbe will be part of the solution.&nbsp; Learn more by watching the Network <a href="http://www.plixer.com/Webcasts/webcast-request-form-cisco-performance-monitoring-metrics-meets-plixer-s-scrutinizer.html" target="_blank">Performance Monitoring webcast</a>.]]>
        
    </content>
</entry>

<entry>
    <title>Migrating to Flexible NetFlow : BEST PRACTICES</title>
    <link rel="alternate" type="text/html" href="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/2012/03/migrating-to-flexible-netflow-best-practices.html" />
    <id>tag:blog.tmcnet.com,2012:/advanced-netflow-traffic-analysis//164.48959</id>

    <published>2012-03-08T12:12:24Z</published>
    <updated>2012-03-08T12:43:08Z</updated>

    <summary><![CDATA[Migrating to Flexible NetFlow (FnF) is a simple and for some of us, an exciting process. It is exciting because of the deeper and improved insight into network traffic monitoring. If your company is interested in migrating to FnF&nbsp; from...]]></summary>
    <author>
        <name>Michael Patterson</name>
        <uri>http://blog.tmcnet.com/advanced-netflow-traffic-analysis/</uri>
    </author>
    
        <category term="Network traffic monitoring " scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="netflow reporting" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="configuringflexiblenetflow" label="configuring flexible netflow" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="iproutecacheflow" label="ip route-cache flow" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="migratingtoflexiblenetflow" label="Migrating to flexible netflow" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="netflowreporting" label="NetFlow reporting" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="networksecuritymonitoring" label="network security monitoring" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="networktrafficmonitoring" label="network traffic monitoring" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="setupflexiblenetflow" label="setup Flexible NetFlow" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/">
        <![CDATA[<strong>Migrating to Flexible NetFlow</strong> (FnF) is a simple and for some of us, an exciting process. It is exciting because of the deeper and improved insight into <strong>network traffic monitoring</strong>. If your company is interested in <a title="Migrating to Flexible NetFlow" href="http://www-search.cisco.com/en/US/prod/collateral/iosswrel/ps6537/ps6555/ps6601/ps6965/white_paper_c11-545581.html">migrating to FnF</a>&nbsp; from traditional NetFlow, there are a few things to consider. <br /><!-- pagebreak -->The 5 steps to make this change are easy.<br /><br />1)&nbsp;&nbsp;&nbsp; List what business applications you want to monitor?&nbsp; Ask yourself: Do I want to measure performance to Cloud services such as salesforce.com, Skype or in house applications such as SAP? <br />2)&nbsp;&nbsp;&nbsp; Decide what metrics you want to export.&nbsp; FnF can export MAC addresses, VLAN details and depending on the hardware, you can export entire packets, Cisco TrustSec, CoS, Jitter, packet loss, TCP latency, NAT details, NBAR, IP SLA, etc.&nbsp; Make sure your <strong>NetFlow Analyzer</strong> can filter and report on these details else, by our NetFlow collector!<br /><img class="mt-image-none" src="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/images/latencyOnNbarApps.png" alt="latencyOnNbarApps.png" width="674" height="386" /><br />&nbsp;<br />3)&nbsp;&nbsp;&nbsp; Make sure you are running the proper IOS version.&nbsp; Cisco IOS 15.2(2)T or more recent for the most capable Flexible NetFlow exports which combine <strong>Cisco NBAR</strong> and <strong>Cisco Medianet Performance Monitoring</strong>.<br />4)&nbsp;&nbsp;&nbsp; Telnet to the router and disable traditional NetFlow and remove all of the commands from the router.&nbsp; Now try to forget about how to setup NetFlow.&nbsp; Commands like <a title="setting up NetFlow v9" href="http://www.plixer.com/blog/general/ip-route-cache-flow-or-ip-flow-ingress-which-do-i-use/">ip route-cache flow</a> aren&rsquo;t going to work anymore.<br />5)&nbsp;&nbsp;&nbsp; Then, just <a title="configuring Flexible NetFlow" href="http://www.networkworld.com/community/node/57502">setup Flexible NetFlow</a> <br /><br />Keep in mind that performing step 5 and <a title="setting up flexible netflow" href="http://www.youtube.com/watch?v=g4x8rLB-OMQ">configuring flexible netflow</a> prior to step 4 will cause some duplicate flow exports.&nbsp; This is not something you want as it will over state utilization in the <strong>NetFlow reporting</strong> and it can also potentially cause problems for network security monitoring.&nbsp; Either way, it&rsquo;s really a simple process and a huge value add to your overall network monitoring efforts.&nbsp; Don't forget to setup the new Cisco <a title="Cisco PfR NetFlow" href="http://www.plixer.com/blog/general/cisco-performance-routing-netflow-reports/">Performance Routing Flexible NetFlow</a> exports.&nbsp; Call us if you need help.<br /><br /><br /><br />]]>
        
    </content>
</entry>

<entry>
    <title>Monitoring Video Performance with NetFlow</title>
    <link rel="alternate" type="text/html" href="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/2012/02/monitoring-video-performance-with-netflow.html" />
    <id>tag:blog.tmcnet.com,2012:/advanced-netflow-traffic-analysis//164.48831</id>

    <published>2012-02-19T07:41:55Z</published>
    <updated>2012-02-19T08:43:34Z</updated>

    <summary>Three years ago I was listening to John Chambers - CEO of Cisco Systems, proclaim that video was going to be the rage. I snickered and though it would be long time before anyone will be monitoring video performance with...</summary>
    <author>
        <name>Michael Patterson</name>
        <uri>http://blog.tmcnet.com/advanced-netflow-traffic-analysis/</uri>
    </author>
    
        <category term="Medianet performance monitoring " scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="Monitoring Video Performance with NetFlow" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="NetFlow Performance monitoring" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="Network traffic monitoring " scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="cisco medianet" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="ip route-cache flow" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="monitor cloud services" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="network monitoring" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="flexiblenetflow" label="Flexible NetFlow" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="skype" label="Skype" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/">
        <![CDATA[Three years ago I was listening to John Chambers - CEO of Cisco Systems, proclaim that video was going to be the rage. I snickered and though it would be long time before anyone will be monitoring video performance with NetFlow. Well, here we are and John Chambers was right. My daughter is the one that made me realize why video vs. only voice will continue to grow. <br /><!-- pagebreak --><br /><br /><strong>Reporting on Skype with NetFlow</strong><br />During a Skype connection with my daughter who was in my wife's car, my daughter wanted to show me her sneakers and then her book:<br /><br /><img class="mt-image-none" src="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/images/videoConfWithDaughter.png" alt="Video Conference call with Daughter" width="197" height="363" /><br /><br />I noticed a big difference from when we just talked over the telephone.&nbsp; Seeing my face made her realize that I was fully engaged in what she had to say.&nbsp; She then put her jacket and shoes on and took the mobile phone outside to show me the fort she had built using scraps of wood.&nbsp; I couldn't believe it. She moved the camera in close for me to see things. She then brought be inside and put the phone in front of the dog so that I could say hello to 'Charlie'.<br /><br />I have to admit, I liked the video especially since I was in London, England and my daughter was in Maine. What I didn't like was the jitter.&nbsp; I'm glad there are tools in our NetFlow traffic analyzer called Scrutinizer to monitor this. <br /><br />Three years later at Cisco Live 2012 in London I was listening to Chief Cisco Futurist David Evans about the future of networking. I learned that video and data in general over the internet will continue to explode.&nbsp; This time I BELIEVE!<br /><br /><strong>Cisco Performance Monitoring</strong><br />Plixer was the first Cisco NetFlow Partner to become certified for Cisco <a title="Cisco Medianet Traffic Monitoring" href="http://blogs.cisco.com/borderless/performance-monitoring-with-plixer%e2%80%99s-scrutinizer-8-5/">Medianet Performance monitoring</a> reports. Check out the VoIP jitter or lost packets in the network monitoring report below.&nbsp; <br /><br /><img class="mt-image-none" src="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/images/monitorSkypeTrafficWithNetFlow.png" alt="Monitor Video Traffic With NetFlow" width="528" height="322" /><br /><br />The above is VoIP with our Asterisk server.&nbsp; Skype traffic uses both TCP and UDP. We can measure the TCP latency during the connection setup with NetFlow Performance monitoring to look at Skype traffic as well. Today, customers can monitor cloud services with NetFlow. The example report below is filtering for the Cisco NBAR detected application: Skype.<br /><br /><img class="mt-image-none" src="http://blog.tmcnet.com/advanced-netflow-traffic-analysis/images/latencyOnNbarApps2.png" alt="latency On Nbar Applications" width="543" height="298" /><br /><br /><strong>Next Generation NetFlow</strong><br />Keep in mind that these reports require the use of Flexible NetFlow which doesn't use the command <a title="enabling NetFlow configuration" href="http://www.plixer.com/blog/general/ip-route-cache-flow-or-ip-flow-ingress-which-do-i-use/">ip route-cache flow</a>. Make sure you are running IOS 15.2(2)T or more recent for the most capable Flexible NetFlow exports. The latest version provides even more network latency details than what is displayed above. I'm talking about Cisco IP SLA.&nbsp; <br /><br /><strong>Performance Routing NetFlow</strong><br /><a title="IP SLA with Flexible NetFlow" href="http://www.plixer.com/blog/netflow/cisco-performance-routing-netflow-support/">Cisco Performance Routing</a> (PfR) can export IP SLA details using Flexible NetFlow. When a router determines that a connection is a bit congested, it will evaluate existing flows and reroute traffic over different connections ensuring priority to time sensitive traffic. By using PfR and Cisco Performance Monitoring together with Flow Hopper, administrators gain <a title="network connectivity path" href="http://netflow.tmcnet.com/articles/263842-netflow-provider-plixer-international-speaks-attendance-ciscolive-2012.htm">end to end network visibility</a> on a link by link, hop by hop basis all with NetFlow.&nbsp; <br /><br />The bottom line: Network traffic monitoring with NetFlow is at a whole new level from just two years ago. Join <a title="NetFlow Forum" href="http://www.linkedin.com/groups/NetFlow-Developments-3890849">NetFlow Developments on Linkedin</a> and stay on top of the future of NetFlow. <br /><br /><br /><br />
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=a636d07a-fc27-4206-920a-6793b7f6484c" alt="Enhanced by Zemanta" /></a></div>]]>
        
    </content>
</entry>

</feed>
