I have put a couple of questions together about TCL (Tool Command Language)
How do you determine if your IOS supports TCL interpreter?
How do you determine the TCL version?
How do you determine the TCL patch level?
What command is used to view a variable?
My dear friend and colleague, Wes Bryan, has completed his latest
masterpiece – “Deploying Windows 11 in Modern Networks” course. What
perfect timing! Wi...
6 days ago
1 comments:
How do you determine if your IOS supports TCL interpreter?
R1#show subsys name tcl
Name Class Version
tcl Library 2.000.001
How do you determine TCL version
R1(tcl)#info tclversion
8.3
How do you determine the TCL Patch level?
R1(tcl)#info patchlevel
8.3.4
What command is used to view a vairable?
"puts" command
Example:
R1(tcl)#set Y 1000 (sets a variable)
1000
R1(tcl)#puts $Y
1000
Post a Comment