Hello,
If SecureCRT is your favorite telnet/ssh tool, you can now use it with Dynamips !
Procedure is quite simple and is described below :
- Modify your dynagen.ini file in C:\Program Files\Dynamips and add the following line :
telnet = start C:\progra~1\SecureCRT\SecureCRT.EXE /script c:\progra~1\dynamips\securecrt.vbs /arg %d /T /telnet %h %p & sleep 1
- Write a vbs script and copy it into the same folder as dynagen.ini file. The script filename must be securecrt.vbs
#$Language="VBScript"
#$Interface="1.0"
Sub main
crt.window.caption = crt.arguments(0)
End Sub
All is ready now, when you issue a “telnet /all” on dynamips console, SecureCRT will run and each router will be displayed in its own tab.
HTH