TCLSH Scripting

TCLSH command 

Tasks to be completed : 
1. Configure the IP address as per the topology.
2. Try to ping Each IP Address and confirm the reachability.
3. Run the Script and check the reachability.

Commands to do TCLSH:
Ping
tclsh
foreach address {
172.16.2.1
172.16.3.1
2.2.2.2
3.3.3.3

} {
ping $address }

Traceroute
tclsh
foreach address {
172.16.1.1
172.16.2.1
2.2.2.2
3.3.3.3

} {
traceroute $address }

Topology:


Solution Video:
TCLSH Scripting - LAB

Post a Comment