Sometimes we have to perform the same change on many devices and instead of spending on it couple of hours we can use script to automate our task. The easiest option is using VBScript, which can be used with CRT (popular telnet/ssh client). Below you can find an example of script which you can copy* and save as a script file. From CRT menu click ‘Script’->‘Run’ and select the file. I added some comments for those who are not familiar with the Visual Basic. # $language = "VBScript" # $interface = "1.0" GTAC_USERNAME = " username " <-- set here the correct value GTAC_SPASSWORD = " password " <-- set here the correct value G_ENABLEPASSWORD = " enable-password " <-- set here the correct value Sub Main Dim IP ( 11 ) <-- in my example we have list of 11 devices IP ( 0 )= "57.196.12.38" IP ( 1 )= "57.196.12.39" … <- complete th...