Speed Test from Cisco IOS-XE Router
As a network engineer or support engineer ever faced issue that clients are complaning slow internet and ISP says internet speed is working fine. Most of the time we perform speed test from a client browser which is behind Firewall and core switches and some time due to more no. of hops we are not able to conclude what speed we are actually getting from ISP when the ISP is directly connected to cisco router.
we can perform speedtest directly from a router were ISP is connected using some CLI command.
In this blog will show you how to perform speed test directly from a router using a cli and some python/Linux command.
Steps
1. Enable Wan interface
2. Enable Lan interface
Configure lan to wan Nat
In my case Gig 0/0/0 is wan and 0/0/1 is LAN
configure template with Nat for Guestshell ( from lan to wan Nat is not covered in this blog)
conf t
iox
interface virtualportGroup0
ip add 192.168.35.1 255.255.255.252
ip nat inside
Exit
permit 192.168.35.0 0.0.0.3
Comments
Post a Comment