Sign In
Register
Home
›
Cisco CCIE
›
CCIE Routing & Switching
›
CCIE Routing & Switching Lab Workbook Volume III Version 4
›
Lab 2
TCLSH
Internetwork Expert Archive
✭
July 2008
in
Lab 2
Hi,
Can anyone tell me how to run tcl scripts in switches ?
Script from SG wasn`t accepted.
Tks.
0
·
Share on Facebook
Share on Twitter
Comments
Internetwork Expert Archive
✭
July 2008
On a switch you will need to create a macro:
conf t
macro name PING-INTERNAL
do ping 150.1.1.1 repeat 2
do ping 150.2.2.2 repeat 2
...
macro global apply PING-INTERNAL
The "@" terminates the macro definition.
Darrell
0
·
Share on Facebook
Share on Twitter
Sign In
or
Register
to comment.
Comments
conf t
macro name PING-INTERNAL
do ping 150.1.1.1 repeat 2
do ping 150.2.2.2 repeat 2
...
macro global apply PING-INTERNAL
The "@" terminates the macro definition.
Darrell