IP Traffic Export


Scenario:

You work for a local copyshop in a small town in the USA. To improve network security you have installed a new Intrusion Detection System (IDS) but right now it’s only receiving traffic from router Ditto. You are familiar with SPAN for switches but you don’t know how to export traffic on routers…let’s see if there’s a copycat in you!

Goals:

  • All IP addresses have been preconfigure for you.
  • EIGRP has been configured for connectivity.
  • Configure router Ditto so all EIGRP and HTTP traffic is exported to router IDS.

IOS:

c3640-jk9s-mz.124-16.bin

Topology:

IP Traffic Export

Video Solution:

Configuration Files

You need to register to download the GNS3 topology file. (Registration is free!)

Once you are logged in you will find the configuration files right here.

Opt In Image
Do you want your CCNA or CCNP Certificate?

The How to Master series helps you to understand complex topics like spanning-tree, VLANs, trunks, OSPF, EIGRP, BGP and more.

Written by René Molenaar - CCIE #41726

You May Also Like

About the Author: Rene Molenaar

René - CCIE #41726 is the creator of GNS3Vault.com where he shares CCNA, CCNP and CCIE R&S labs. He also blogs about networking on http://networklessons.com

4 Comments

  1. Hey, Rene

    Great lab!!!

    Thanks so much for all your help. Your labs have been amazing.

    I just have one small question about this lab. In your lab solution, you defined the access-list called "INSPECT."
    But, when you added the access-list in the traffic-export profile, you called it "EXPORT."
    Should it not be the same access list ?
    Even when you do "show ip traffic-export" on Ditto at the end, it says "Access List EXPORT [Unknown]." When I run that command, it says "Access List 100 [Extended]."

    Thanks again for all the helpful labs.

    Regards

  2. This looks like one of my monday morning jobs 😉 This is the correct config:

    [code]ip access-list extended INSPECT
    permit eigrp any any
    permit tcp any any eq www

    ip traffic-export profile IDS
    interface FastEthernet2/0
    bidirectional
    incoming access-list INSPECT
    outgoing access-list INSPECT
    mac-address

    interface FastEthernet0/0
    ip traffic-export apply IDS

    interface FastEthernet1/0
    ip traffic-export apply IDS[/code]

Comments are closed.