02-22-2011 12:49 AM - edited 03-06-2019 03:40 PM
Hi all,
i have 2650xm router and int fa0/0 goes to ISP modem---Wan
It has int fa1/0 which connects to my layer 3 switch-----Lan
i need to confirm netflow on router so that i can see what traffic is going out from my network and what is coming into network.
i want to see the LAN IP of user PC and what destination traffic they are trying to access???
for this which interface i should config the netflow fa0/0 or fa1/0?
or do i need to config netflow on both lan and wan interface of router ???
also when i config netflow on router interface say fa0/0
2650XM(config-if)#ip flow ?
egress Enable outbound NetFlow
ingress Enable inbound NetFlow
what does egress mean --- is this mean traffic going from fa0/0 interface to the internet
what does ingress mean --- is this mean traffic coming from internet to fa0/0 interface of router
please confirm if my understanding is ok for the egreee and ingress???
Solved! Go to Solution.
02-22-2011 02:59 AM
Hi,
You need to configure netflow Fa1/0 as source interface like below...
ip flow-export source FastEthernet1/0
ip flow-export version 5
ip flow-export destination 10.10.10.50 9996
And now you can configure ip flow ingress or ip flow egress on the interface Fa0/0 ---To ISP
interface FastEthernet1/0
ip flow egress
Please rate the helpfull posts.
Regards,
Naidu.
02-22-2011 12:15 PM
Mahesh,
Per your current config, NetFlow will account for packets entering the LAN interface (from your internal network) and packets exiting the router towards the WAN.
Your Netflow will produce about the same information from both interfaces as packets entering the router from the LAN will use the WAN to their destination.
You are not account for the return traffic on the WAN interface so I recommend configuring 'ip flow ingress' at the WAN as well.
As you are accounting for egress packets on the WAN, having 'ip route-cache flow' on the LAN does not provide much benefit.
The IP address on the 'ip flow-export destination' command denotes the server collecting your NetFlow data.
If you don't enter this command, you won't be able to run NetFlow reports and statistical data.
With regards to your second question - you will see data once you configure the 'ip flow-export destination' command and have a server accepting this data.
02-22-2011 02:59 AM
Hi,
You need to configure netflow Fa1/0 as source interface like below...
ip flow-export source FastEthernet1/0
ip flow-export version 5
ip flow-export destination 10.10.10.50 9996
And now you can configure ip flow ingress or ip flow egress on the interface Fa0/0 ---To ISP
interface FastEthernet1/0
ip flow egress
Please rate the helpfull posts.
Regards,
Naidu.
02-22-2011 11:26 AM
Hi naidu,
Many thanks for reply.
i did config my lan interface of router as below
ip flow-export source FastEthernet1/0
ip flow-export version 5
ip flow-export destination 10.10.10.50 9996 *****************
what IP should i put here my routers wan interface IP or someother ip.
As right now i do not know how to collect data from netflow.
or is it necessary we have to use the command ip flow-export destination ?
regards
mahesh
02-22-2011 11:28 AM
Hi Naidu,
under which interface i should use the command
ip route-cache flow lan or wan interface of router???
02-22-2011 11:36 AM
Under any interface you want NetFlow enabled. If you want to monitor both, applied the command under the WAN and LAN interface.
02-22-2011 11:50 AM
Hi Edison,
thanks for reply.
here is my config for lan interface
sh run int fa1/0
Building configuration...
Current configuration : 237 bytes
!
interface FastEthernet1/0
description Lan connection
ip route-cache flow
and for wan interface
nterface FastEthernet0/0
description WAN Connection to ISP modem
ip flow egress
Here is output
#sh ip cache flow
IP packet size distribution (234407 total packets):
1-32 64 96 128 160 192 224 256 288 320 352 384 416 448 480
.000 .374 .006 .018 .003 .003 .002 .002 .001 .002 .022 .001 .002 .002 .002
512 544 576 1024 1536 2048 2560 3072 3584 4096 4608
.000 .001 .001 .016 .532 .000 .000 .000 .000 .000 .000
IP Flow Switching Cache, 278544 bytes
8 active, 4088 inactive, 5803 added
114649 ager polls, 0 flow alloc failures
Active flows timeout in 30 minutes
Inactive flows timeout in 15 seconds
IP Sub Flow Cache, 21640 bytes
2 active, 1022 inactive, 1122 added, 1122 added to flow
0 alloc failures, 0 force free
1 chunk, 1 chunk added
last clearing of statistics never
Protocol Total Flows Packets Bytes Packets Active(Sec) Idle(Sec)
-------- Flows /Sec /Flow /Pkt /Sec /Flow /Flow
TCP-WWW 2486 0.0 72 884 0.0 3.6 9.4
TCP-X 1 0.0 1 40 0.0 0.0 15.3
TCP-other 1148 0.0 32 791 0.0 4.5 8.3
UDP-DNS 9 0.0 1 77 0.0 0.0 15.5
UDP-NTP 549 0.0 1 76 0.0 0.0 15.2
UDP-other 1581 0.0 9 479 0.0 13.9 15.4
ICMP 21 0.0 38 60 0.0 37.7 15.7
Total: 5795 0.0 40 839 0.0 6.4 11.4
SrcIf SrcIPaddress DstIf DstIPaddress Pr SrcP DstP Pkts
Fa1/0 192.168.20.53 Fa0/0 135.52.7.91 06 079A 01BB 3
Fa1/0 192.168.20.53 Fa0/0 135.52.7.85 11 007B 007B 1
i have two questions
flow-export destination 10.10.10.50 9996 *****************
what IP should i put here my routers wan interface IP or someother ip.
As right now i do not know how to collect data from netflow.
or is it necessary we have to use the command ip flow-export destination ?
other is when i run the command
sh ip flow export************************************************
Flow export v5 is disabled for main cache
Exporting using source interface FastEthernet1/0
Version 5 flow records
0 flows exported in 0 udp datagrams
0 flows failed due to lack of export packet
it does not show any data amd also say that flow export is disabled for main cache.what does this mean?
thanks
mahesh
02-22-2011 12:15 PM
Mahesh,
Per your current config, NetFlow will account for packets entering the LAN interface (from your internal network) and packets exiting the router towards the WAN.
Your Netflow will produce about the same information from both interfaces as packets entering the router from the LAN will use the WAN to their destination.
You are not account for the return traffic on the WAN interface so I recommend configuring 'ip flow ingress' at the WAN as well.
As you are accounting for egress packets on the WAN, having 'ip route-cache flow' on the LAN does not provide much benefit.
The IP address on the 'ip flow-export destination' command denotes the server collecting your NetFlow data.
If you don't enter this command, you won't be able to run NetFlow reports and statistical data.
With regards to your second question - you will see data once you configure the 'ip flow-export destination' command and have a server accepting this data.
02-22-2011 01:32 PM
Hi Edison,
Many thanks that you took time to explain me in detail.
best regards
mahesh
02-22-2011 01:42 PM
Mahesh,
It was a pleasure and thanks for the rating.
07-27-2016 06:00 AM
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide