Posts tagged TCL
Ping Multiple Addresses Using TCL Script Part 2
Jun 17th
Part 1 of this tutorial showed how to ping multiple IP addresses using TCL script. This tutorial will further refine the script which was in Part 1. Instead of foreach loop, we will be using for loop to make the script shorter.
TCL Script
Here is the sample script
for { set i 1 } { $i < = 10 } { incr i } {
ping 192.168.1.$i re 2
}
Ping Multiple Addresses Using TCL Script Part 1
Jun 13th
There might be situation where you might need to ping multiple IP addresses to check the full connectivity between devices.
This tutorial shows you exactly how to do that using TCL script.
I’ll be explaining how it works in details so you don’t need to have any programming or scripting experience.
Read more →
