This blog was originally started to better help me understand the technologies in the CCIE R&S blueprint; after completing the R&S track I have decided to transition the blog into a technology blog.

CCIE #29033

This blog will continue to include questions, troubleshooting scenarios, and references to existing and new technologies but will grow to include a variety of different platforms and technologies. Currently I have created over 185 questions/answers in regards to the CCIE R&S track!! Note: answers are in the comment field or within "Read More" section.

You can also follow me on twitter @FE80CC1E


Monday, November 1, 2010

Question 164

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?

1 comments:

Packets Analyzed said...

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