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?
I’m excited to announce my latest YouTube video, “CCNA with Packet Tracer
Chapter 5 Review Lab – SOLVED!” now available for viewing here: Watch the
Video...
1 day 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