![Multitech MultiConnect AW User Manual Download Page 45](http://html.mh-extra.com/html/multitech/multiconnect-aw/multiconnect-aw_user-manual_1855847045.webp)
Chapter 6 – Configuration Scripts
Multi-Tech Systems, Inc. MultiConnect AW User Guide
45
sendln "1 D ON_DEMAND" ; Choices for the last parameter: "ON_DEMAND", "ALWAYS_ON"
wait 'OK'
;--------------------------------------------------------------
; Save Configuration?
;--------------------------------------------------------------
sendln "SAVE"
wait 'OK'
;--------------------------------------------------------------
; Configuration is done
;--------------------------------------------------------------
sendln "FINISH"
GSM Configuration Script Example
;
;TeraTerm Script
;
;Configuration Script for MT100A2W-G (GSM) device
;Date: 07/14/2009
;Author: Thanh Q. Tran
;Version: 1.0 - Initial Version
;
; 12/09/2009 - Added "Debug section - Enable or Disable debug"
;NOTE: use ';' to comment out any option and its corresponding wait'OK'
; that are not needed to be modified.
;
; Parameters within the double quotes are separated by a single space.
; Parameters have to be in Capital letters.
;
; Make sure to reboot the device before running this script
;--------------------------------------------------------------
; Determined which menu we are currently in
;--------------------------------------------------------------
send 10
timeout = 1
wait 'Please enter password to login =>' 'Enter selection =>'
if result=1 goto LOGIN
pause 1
sendln ""
goto HANDSHAKE
:LOGIN
timeout = 0
pause 2
sendln "admin" ; Login password
pause 1
:HANDSHAKE
;--------------------------------------------------------------