SolarWinds Technical Reference - Cisco

2y ago
37 Views
2 Downloads
354.90 KB
15 Pages
Last View : 7d ago
Last Download : 3m ago
Upload by : Vicente Bone
Transcription

SolarWinds Technical ReferenceConfiguring Devices for Flow CollectionIntroduction. 3Cisco . 3Cisco Catalyst 3560/3750 . 4Cisco Catalyst 4500 . 7Cisco Catalyst 6500 . 9Cisco Nexus 7000/7010 . 11Cisco ASA 5500 . 14network management simplified - solarwinds.comThis paper provides annotated NetFlowconfiguration examples for devices that presentchallenges setting up for use withSolarWinds NTA.

Configuring Devices for Flow Collection 2Copyright 1995-2014 SolarWinds Worldwide, LLC. All rights reserved worldwide.No part of this document may be reproduced by any means nor modified, decompiled, disassembled, published or distributed, inwhole or in part, or translated to any electronic medium or other means without the written consent of SolarWinds. All right, title andinterest in and to the software and documentation are and shall remain the exclusive property of SolarWinds and its licensors.SolarWinds Orion , SolarWinds Cirrus , and SolarWinds Toolset are trademarks of SolarWinds and SolarWinds.net and theSolarWinds logo are registered trademarks of SolarWinds All other trademarks contained in this document and in the Software arethe property of their respective owners.SOLARWINDS DISCLAIMS ALL WARRANTIES, CONDITIONS OR OTHER TERMS, EXPRESS OR IMPLIED, STATUTORY OROTHERWISE, ON SOFTWARE AND DOCUMENTATION FURNISHED HEREUNDER INCLUDING WITHOUT LIMITATION THEWARRANTIES OF DESIGN, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. INNO EVENT SHALL SOLARWINDS, ITS SUPPLIERS OR ITS LICENSORS BE LIABLE FOR ANY DAMAGES, WHETHERARISING IN TORT, CONTRACT OR ANY OTHER LEGAL THEORY EVEN IF SOLARWINDS HAS BEEN ADVISED OF THEPOSSIBILITY OF SUCH DAMAGES.The SolarWinds, the SolarWinds & Design, ipMonitor, LANsurveyor, Orion, and other SolarWinds marks, identified on theSolarWinds website, as updated from SolarWinds from time to time and incorporated herein, are registered with the U.S. Patent andTrademark Office and may be registered or pending registration in other countries. All other SolarWinds trademarks may becommon law marks or registered or pending registration in the United States or in other countries. All other trademarks orregistered trademarks contained and/or mentioned herein are used for identification purposes only and may be trademarks orregistered trademarks of their respective companies. Microsoft , Windows , and SQL Server are registered trademarks ofMicrosoft Corporation in the United States and/or other countries.Revised: 5/28/2014network management simplified - solarwinds.com

Configuring Devices for Flow Collection 3IntroductionThe sections of this document—organized alphabetically by vendor—provide NetFlow configurationexamples for network devices that sometimes present problems in preparing them to work withSolarWinds NetFlow Traffic Analyzer.CiscoCisco Catalyst 3560/3750Cisco Catalyst 4500Cisco Catalyst 6500Cisco Nexus 7000Cisco ASA 5500For detailed information about setting up devices to use with SolarWinds NetFlow Traffic Analyzer, referto the section “Setting up Network Devices to Export NetFlow Data” in the SolarWinds NetFlow TrafficAnalyzer Administrator Guide.network management simplified - solarwinds.com

Configuring Devices for Flow Collection 4Cisco Catalyst 3560/3750Standard 3750 and 3560 switches do not support NetFlow. The 3750-X and 3560-X L3 switches onlysupport NetFlow if they have the C3KX-SM-10G Service module; and in this case the only option is usingFlexible NetFlow.The tasks involved in creating a Flexible NetFlow configuration are:1. Enabling ingress and egress on the C3KX-SM-10G module uplink ports.2. Creating and configuring the flow record.3. Creating and configuring the flow exporter(s).4. Creating a to appropriate interfaces.interface Ethernet2/1ip flow monitor NetFlow-Monitor inputip flow monitor NetFlow-Monitor output7KH IORZ PRQLWRU SDUW RI WKH FRQILJXUDWLRQ H[DPSOH FUHDNetFlow Monitor WKDW uses the record and exporter commands to bind the flow record (OrionNetFlow) to the flow exporter(NetFlow-to-Orion) you already created. The interface command defines the interface (Ethernet2/1)to which the flow monitor NetFlow Monitor applies and ip flow monitor command specifies the captureof both ingress (input) and egress (output) data.Note: You can enter a VLAN range prior to entering the command above (i.e. vlan 1 3967 instead ofeach vlan separately).network management simplified - solarwinds.com

Configuring Devices for Flow Collection 13The overall configuration without annotations looks like this:flow record OrionNetFlowmatch ip tosmatch ip protocolmatch interface inputmatch ipv4 source addressmatch ipv4 destination addressmatch transport source-portmatch transport destination-portmatch interface inputmatch interface outputmatch flow directioncollect counter bytescollect counter packetsflow exporter NetFlow-to-Oriondestination 10.10.10.10source vlanXXXtransport udp 2055version 9template data timeout 60flow monitor NetFlow-Monitordescription xxxxrecord OrionNetFlowexporter NetFlow-to-Orioninterface Ethernet2/1ip flow monitor NetFlow-Monitor inputip flow monitor NetFlow-Monitor outputnetwork management simplified - solarwinds.com

Configuring Devices for Flow Collection 14Cisco ASA 5500Besides the usual target address for flow exports, devices in this series require a service policy thatenables flow data to be exported.The following example includes annotations that explain the requirements for successfully configuringNetFlow on this device.ip flow-export destination inside 1.1.1.1 2055This command sets the export target IP address and port (NTA collector at 1.1.1.1 2055) and designatesit as inside the network that includes the ASA device.ip flow-export template timeout-rate 1This command sets the timeout of the current v9 template(in this case it is set to 1 minute) and results in re-sending the template with the flow data as soon as thetimeout is reached.ip flow-export delay flow-create 60This command delays the creation of a NetFlow record and so delays exporting flow data until thenumber of seconds (60 in this case) are reached.ip access-list netflow-export extended permit ip any anyThis command creates an access list (access-list) called netflow-export that the device to export flowrecords from any IP address (outside interface) to any IP address (in this case, the result is that exportswill go to the NetFlow collector target as specified in the ip flow-export destination command)class-map netflow-export-classmatch access-list netflow-exportpolicy-map global policyclass netflow-export-classservice-policy global policy globalflow-export event-type all destination 1.1.1.1Note: If a global policy already exist just add the NetFlow policy map to it.These commands create the Modular QoS traffic management setup to enable flow packet traffic to getRXW RI WKH GHYLFH¶V RXWVLGH LQWHUIDFHV DQG PDNH LW WR W1. Creates a traffic class (class-map) called netflow-export-class2. Specifies that the access list netflow-export should be applied (match) to this class3. Selects (policy-map) default traffic inspection rules (global policy) for flow traffic4. Applies (service-policy) those rules to all interfaces (global) on the device through which flowpackets is transferred5. Specifies that all events that trigger creation of flow records should be targeted at the NTAcollector (1.1.1.1).network management simplified - solarwinds.com

Configuring Devices for Flow Collection 15The overall configuration without annotations looks like this:flow-export destination inside 1.1.1.1 2055flow-export template timeout-rate 1flow-export delay flow-create 60access-list netflow-export extended permit ip any anyclass-map netflow-export-classmatch access-list netflow-exportpolicy-map global policyclass netflow-export-classflow-export event-type all destination 1.1.1.1service-policy global policy globalnetwork management simplified - solarwinds.com

Cisco Catalyst 3560/3750 Standard 3750 and 3560 switches do not support NetFlow. The 3750-X and 3560-X L3 switches only support NetFlow if they have the C3KX-SM-10G Service module; and in this case the only option is using Flexible NetFlow. The tasks involved in creating a Flexible NetFlow configuration are: 1.

Related Documents:

SolarWinds Network Topology Mapper - Annual Maintenance Renewal 17171 1 357.77 357.77 1008 SolarWinds Engineer's Toolset Per Seat License - Annual Maintenance Renewal 1009 SolarWinds IP Address Manager IPX (unlimited IPs) - Annual Maintenance Renewal 1010 SolarWinds Database Performance Analyzer per Oracle EE, DB2, or

Cisco ASA 5505 Cisco ASA 5505SP Cisco ASA 5510 Cisco ASA 5510SP Cisco ASA 5520 Cisco ASA 5520 VPN Cisco ASA 5540 Cisco ASA 5540 VPN Premium Cisco ASA 5540 VPN Cisco ASA 5550 Cisco ASA 5580-20 Cisco ASA 5580-40 Cisco ASA 5585-X Cisco ASA w/ AIP-SSM Cisco ASA w/ CSC-SSM Cisco C7600 Ser

DBA SURVIVOR GUIDE: YOUR FIRST 100 DAYS THE INCOMPLETE GUIDE TO INTEGRATING SOLARWINDS ORION INTO SLACK 5 ALL ABOUT ABOUT THE AUTHORS Leon Adato Leon Adato is a Head Geek and technical evangelist at SolarWinds, and is a Cisco Certified Network Associate (CCNA ), MCSE and SolarWinds Certified Professional . His experience spans financial, healthcare, food and beverage, and other .

Sep 11, 2017 · Note: Refer to the Getting Started with Cisco Commerce User Guide for detailed information on how to use common utilities for a record in Cisco Commerce. See Cisco Commerce Estimates and Configurations User Guide for more information.File Size: 664KBPage Count: 5Explore furtherSolved: Cisco Serial Number Lookups - Cisco Communitycommunity.cisco.comHow to view and/or update your CCO profilewww.cisco.comSolved: How do I associate a contract to my Cisco.com .community.cisco.comHow do I find my Cisco Contract Number? - Ciscowww.cisco.comPower calculator tool - Cisco Communitycommunity.cisco.comRecommended to you b

Supported Devices - Cisco SiSi NetFlow supported Cisco devices Cisco Catalyst 3560 Cisco 800 Cisco 7200 Cisco Catalyst 3750 Cisco 1800 Cisco 7600 Cisco Catalyst 4500 Cisco 1900 Cisco 12000 Cisco Catalyst 6500 Cisco 2800 Cisco ASR se

Cisco Nexus 1000V Cisco Nexus 1010 Cisco Nexus 4000 Cisco MDS 9100 Series Cisco Nexus 5000 Cisco Nexus 2000 Cisco Nexus 6000 Cisco MDS 9250i Multiservice Switch Cisco MDS 9700 Series Cisco Nexus 7000/7700 Cisco Nexus 3500 and 3000 CISCO NX-OS: From Hypervisor to Core CISCO DCNM: Single

Cisco Nexus 7706 Cisco ASR1001 . Cisco ISR 4431 Cisco Firepower 1010 Cisco Firepower 1140 Cisco Firepower 2110 Cisco Firepower 2130 Cisco FMC 1600 Cisco MDS 91485 Cisco Catalyst 3750X Cisco Catalyst 3850 Cisco Catalyst 4507 Cisco 5500 Wireless Controllers Cisco Aironet Access Points .

Apr 05, 2017 · Cisco 4G LTE and Cisco 4G LTE-Advanced Network Interface Module Installation Guide Table 1 Cisco 4G LTE NIM and Cisco 4G LTE-Advanced NIM SKUs Cisco 4G LTE NIM and Cisco 4G LTE-Advanced NIM SKUs Description Mode Operating Region Band NIM-4G-LTE-LA Cisco 4G LTE NIM module (LTE 2.5) for LATAM/APAC carriers. This SKU is File Size: 2MBPage Count: 18Explore furtherCisco 4G LTE Software Configuration Guide - GfK Etilizecontent.etilize.comSolved: 4G LTE Configuration - Cisco Communitycommunity.cisco.comCisco 4G LTE Software Configuration Guide - Ciscowww.cisco.comCisco 4G LTE-Advanced Configurationwww.cisco.com4G LTE Configuration - Cisco Communitycommunity.cisco.comRecommended to you b