MAI COMPANY CONFIDENTIAL FIELD INFORMATION BULLETIN SERVICE GROUP(S): MICRO,MINI,LARGE MFG: PRACTICAL PERIPHERALS NACS TYPE(S): N155 MFG. MODEL(S): MODEMS CATEGORY: COMMUNICATIONS DESC: ALL MODEMS *** TABLE OF CONTENTS AS OF 09/23/96 *** FIB 00001.Practical Peripherals PT144MT 14400 modem configuration.....11/06/95 FIB 00002.Sample script to reset Practical Peripherals modem..........12/22/95 COMMUNICATIONS-PRACTICAL PERIPHERALS-MODEMS---------Table Of Contents Pg01 of 01 FIB 00001 MAI COMPANY CONFIDENTIAL 11/06/95 *** Practical Peripherals PT144MT 14400 modem configuration *** Attach the modem to a terminal or a pc to submit AT commands. Power the modem on. Enter: ATQ1E0 Turn on echo and response codes. Enter: AT&V to display configuration The top line will display: ACTIVE PROFILE: DTE:9600 DCE: PARITY:EVEN The above display CANNOT be changed by registers, it is determined by the configuration of the port on the system (or terminal) that the modem is connected to. In other words, if you are going to connect this modem to a port that will be configured for 9600 baud, even parity then you should connect to the modem with a terminal port set to 9600 baud, even parity. The modem handles data bits so we don't have to be concerned about that. If ``cu'' is being used to connect to the modem use the following to connect with even parity: cu -e -ltty2A (Assuming that in the Devices has the following entry: Direct tty2A - 9600 direct) Check the following settings also: @K3 RTS/CTS flow control @K4 XON/XOFF flow control (Pick one) @D0 Ignore DTR @Q0 Communicate in asynchronous mode @A0 Connect as answering modem when auto-answering S37=9 Maximum DCE (phone) line speed 9=9600 AT&W To save profile ORIGINATOR: Dan Arteritano COMMUNICATIONS-PRACTICAL PERIPHERALS-MODEMS---------FIB001 Pg001 FIB 00002 MAI COMPANY CONFIDENTIAL 12/22/95 *** Sample script to reset Practical Peripherals modem *** Create the following script using 'vi' or 'vedit'. NOTE: The @ symbol cannot be entered directly, precede the @ symbol with \ (\@). # Script to reset Practical Peripherals modems. echo "AT&F" > /dev/ttyxxx echo "ATQ1" > /dev/ttyxxx echo "ATE0" > /dev/ttyxxx echo "ATS0=1" > /dev/ttyxxx echo "AT@K4" > /dev/ttyxxx # K4=xon/xoff, K3=rts/cts echo "AT@D0" > /dev/ttyxxx # ignore DTR echo "AT@Q0" > /dev/ttyxxx # asynchronous mode echo "AT@A0" > /dev/ttyxxx echo "ATS37=9" > /dev/ttyxxx # 9=9600 baud echo "AT&W" > /dev/ttyxxx # saves settings ORIGINATOR: Norm Jones COMMUNICATIONS-PRACTICAL PERIPHERALS-MODEMS---------FIB002 Pg001