03-18-2021 07:36 PM
Hi All,
This might be a long shot, but figure I post and see.
I have a VIP client that when they try to do certain things, it maxes out their 500Mb Internet connection.
I've enabled Top Talker on their Cisco ISR4331, and I know Top Talker is a real time application only.
Is there a way I can get the data to some kind of log file? like have the Cisco convert it to TopTalker.csv and tftp to pull it?
Or maybe use a program like PRTG or Solarwinds to reflect what Source/Destination IPs with the amount of bandwidth on each conversation?
Solved! Go to Solution.
03-19-2021 02:26 AM
Hello,
you could use an EEM applet such as the one below (which runs every 60 seconds):
event manager applet TOP_TALKER
event timer watchdog time 60
action 0.1 info type routername
action 1.0 cli command "enable"
action 2.0 cli command "show ip flow top-talkers"
action 3.0 file open fh flash0:top_talkers.csv w
action 4.0 file write fh "$_cli_result"
action 5.0 file close fh
action 6.0 cli command "copy flash0: tftp" pattern "Address"
action 7.0 cli command "w.x.y.z" pattern "filename"
action 8.0 cli command "$_info_routername-top_talkers_$_event_pub_sec"
action 9.0 syslog priority informational msg "Top Talker file written to TFTP server!"
03-19-2021 01:22 AM
>Or maybe use a program like PRTG or Solarwinds to reflect what Source/Destination IPs with the amount of bandwidth on each conversation?
- That is probably the best option
M.
03-19-2021 02:26 AM
Hello,
you could use an EEM applet such as the one below (which runs every 60 seconds):
event manager applet TOP_TALKER
event timer watchdog time 60
action 0.1 info type routername
action 1.0 cli command "enable"
action 2.0 cli command "show ip flow top-talkers"
action 3.0 file open fh flash0:top_talkers.csv w
action 4.0 file write fh "$_cli_result"
action 5.0 file close fh
action 6.0 cli command "copy flash0: tftp" pattern "Address"
action 7.0 cli command "w.x.y.z" pattern "filename"
action 8.0 cli command "$_info_routername-top_talkers_$_event_pub_sec"
action 9.0 syslog priority informational msg "Top Talker file written to TFTP server!"
03-20-2021 03:19 PM
Thank you both for the information.
I'll try it out and see what happens!
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