Quantcast
Channel: All Open Tickets - Tera Term on OSDN
Viewing all articles
Browse latest Browse all 2128

Running a macro after a (GUI) connect - Tera Term Ticket #14241 on OSDN

$
0
0

Running a macro after a (GUI) connect

Eröffnet am: 2008-12-09 22:55

Letztes Update: 1970-01-01 09:00

Auswertung:(Anonym)Verantwortlicher:(Keine)
Priorität:5 - MittelMeilenstein:(Keine)
Typ:FunktionsanfragenSchweregrad:5 - Mittel
Komponente:(Keine)Status:Offen
LösungKeine

Einzelheiten

I would appreciate the following feature:

a extension to the "new connection" dialog with a checkbox "after connect run macro ..." and a combobox with some user selectable macros (just like the hosts-combo)
plus integration of this feature to the command line.

we have some devices that would require some routine procedure when logging in.
but the ip-adress would almost always be different.
So instead of 'n'-Macrofiles with only different connect statements this would help having only one general purpose macro while making use of the hosts-combo.

a different way to achieve this could be to open the "new connection" dialog from the "connect" command in a macro using a special option - i.e. a "connect /ask_the_user" or sth. similar.

searching the forum with "macro after connect" did not do what i expected it to do. :-)

Letzte Aktualisierung für dieses Ticket

2009-01-08 16:23 Aktualisiert von: None

Kommentar

After connect with telnet, Tera Term macro can send/receive line or characters.
See also login.ttl, the sample script.

Example:
inputbox 'input hostname' 'test' '192.168.1.'
host = inputstr
sprintf "%s:23 /nossh" host
conn = inputstr

inputbox 'input login name' 'test'
login = inputstr

inputbox 'input password' 'test'
passwd = inputstr

connect conn
; use login and passwd


Viewing all articles
Browse latest Browse all 2128