Entradas

Mostrando entradas de agosto, 2024

Cisco 9800-CL deployment for home ESXi LAB

Imagen
 Hello, after my post " Cisco 9800 with a 2,4Ghz channel plan on 1, 5, 6, 9, 11 and 13? " I was asked on how I deployed those WLC 9800-CL so, I made this video: I hope is helpful ;)

Algunos scripts en TCL Shell para Cisco

Imagen
TCL Shell en Cisco IOS XE The TCL Shell for Cisco IOS has been around since Release 12.3(2)T, so it's been around for quite some time now. Still, it remains a very useful scripting utility in certain scenarios. I do a lot of network migrations or upgrades, so I often need to do multiple tests to make sure that everything that worked before that migration still works after it. Here you can find the references: https://www.cisco.com/c/en/us/td/docs/routers/ios/config/17-x/ntw-servs/b-network-services/m_nm-script-tcl-xe.html Ping to different destinations: One of the simplest scripts you can make, and which is very useful when you have to verify that you reach several destinations, is the following: tclsh foreach VAR { A.A.A.A B.B.B.B C.C.C.C } {ping $VAR} I think it is a self-descriptive script, for each of the variables that we will introduce after the loop, ping will be executed. Below I show what output we would see in our switch: For very easy scripts like the previous one, you c