Imported upstream version 1.5
[manpages-zh.git] / raw / man8 / chat.8
blob5498904a64fcc86de1e44c516d510e7a1541cdb1
1 .\" -*- nroff -*-
2 .\" manual page [] for chat 1.8
3 .\" SH section heading
4 .\" SS subsection heading
5 .\" LP paragraph
6 .\" IP indented paragraph
7 .\" TP hanging label
8 .TH CHAT 8 "22 May 1999" "Chat Version 1.22"
9 .SH NAME
10 chat \- Automated conversational script with a modem
11 .SH SYNOPSIS
12 .B chat
14 .I options
16 .I script
17 .SH DESCRIPTION
18 .LP
19 The \fIchat\fR program defines a conversational exchange between the
20 computer and the modem. Its primary purpose is to establish the
21 connection between the Point-to-Point Protocol Daemon (\fIpppd\fR) and
22 the remote's \fIpppd\fR process.
23 .SH OPTIONS
24 .TP
25 .B -f \fI<chat file>
26 Read the chat script from the chat \fIfile\fR. The use of this option
27 is mutually exclusive with the chat script parameters. The user must
28 have read access to the file. Multiple lines are permitted in the
29 file. Space or horizontal tab characters should be used to separate
30 the strings.
31 .TP
32 .B -t \fI<timeout>
33 Set the timeout for the expected string to be received. If the string
34 is not received within the time limit then the reply string is not
35 sent. An alternate reply may be sent or the script will fail if there
36 is no alternate reply string. A failed script will cause the
37 \fIchat\fR program to terminate with a non-zero error code.
38 .TP
39 .B -r \fI<report file>
40 Set the file for output of the report strings. If you use the keyword
41 \fIREPORT\fR, the resulting strings are written to this file. If this
42 option is not used and you still use \fIREPORT\fR keywords, the
43 \fIstderr\fR file is used for the report strings.
44 .TP
45 .B -e
46 Start with the echo option turned on. Echoing may also be turned on
47 or off at specific points in the chat script by using the \fIECHO\fR
48 keyword. When echoing is enabled, all output from the modem is echoed
49 to \fIstderr\fR.
50 .TP
51 .B -E
52 Enables environment variable substituion within chat scripts using the
53 standard \fI$xxx\fR syntax.
54 .TP
55 .B -v
56 Request that the \fIchat\fR script be executed in a verbose mode. The
57 \fIchat\fR program will then log the execution state of the chat
58 script as well as all text received from the modem and the output
59 strings sent to the modem.  The default is to log through the SYSLOG;
60 the logging method may be altered with the -S and -s flags.
61 .TP
62 .B -V
63 Request that the \fIchat\fR script be executed in a stderr verbose
64 mode. The \fIchat\fR program will then log all text received from the
65 modem and the output strings sent to the modem to the stderr device. This
66 device is usually the local console at the station running the chat or
67 pppd program.
68 .TP
69 .B -s
70 Use stderr.  All log messages from '-v' and all error messages will be
71 sent to stderr.
72 .TP
73 .B -S
74 Do not use the SYSLOG.  By default, error messages are sent to the
75 SYSLOG.  The use of -S will prevent both log messages from '-v' and
76 error messages from being sent to the SYSLOG.
77 .TP
78 .B -T \fI<phone number>
79 Pass in an arbitary string, usually a phone number, that will be
80 substituted for the \\T substitution metacharacter in a send string.
81 .TP
82 .B -U \fI<phone number 2>
83 Pass in a second string, usually a phone number, that will be
84 substituted for the \\U substitution metacharacter in a send string.
85 This is useful when dialing an ISDN terminal adapter that requires two 
86 numbers.
87 .TP
88 .B script
89 If the script is not specified in a file with the \fI-f\fR option then
90 the script is included as parameters to the \fIchat\fR program.
91 .SH CHAT SCRIPT
92 .LP
93 The \fIchat\fR script defines the communications.
94 .LP
95 A script consists of one or more "expect-send" pairs of strings,
96 separated by spaces, with an optional "subexpect-subsend" string pair,
97 separated by a dash as in the following example:
98 .IP
99 ogin:-BREAK-ogin: ppp ssword: hello2u2
101 This line indicates that the \fIchat\fR program should expect the string
102 "ogin:". If it fails to receive a login prompt within the time interval
103 allotted, it is to send a break sequence to the remote and then expect the
104 string "ogin:". If the first "ogin:" is received then the break sequence is
105 not generated.
107 Once it received the login prompt the \fIchat\fR program will send the
108 string ppp and then expect the prompt "ssword:". When it receives the
109 prompt for the password, it will send the password hello2u2.
111 A carriage return is normally sent following the reply string. It is not
112 expected in the "expect" string unless it is specifically requested by using
113 the \\r character sequence.
115 The expect sequence should contain only what is needed to identify the
116 string. Since it is normally stored on a disk file, it should not contain
117 variable information. It is generally not acceptable to look for time
118 strings, network identification strings, or other variable pieces of data as
119 an expect string.
121 To help correct for characters which may be corrupted during the initial
122 sequence, look for the string "ogin:" rather than "login:". It is possible
123 that the leading "l" character may be received in error and you may never
124 find the string even though it was sent by the system. For this reason,
125 scripts look for "ogin:" rather than "login:" and "ssword:" rather than
126 "password:".
128 A very simple script might look like this:
130 ogin: ppp ssword: hello2u2
132 In other words, expect ....ogin:, send ppp, expect ...ssword:, send hello2u2.
134 In actual practice, simple scripts are rare. At the vary least, you
135 should include sub-expect sequences should the original string not be
136 received. For example, consider the following script:
138 ogin:--ogin: ppp ssword: hello2u2
140 This would be a better script than the simple one used earlier. This would look
141 for the same login: prompt, however, if one was not received, a single
142 return sequence is sent and then it will look for login: again. Should line
143 noise obscure the first login prompt then sending the empty line will
144 usually generate a login prompt again.
145 .SH COMMENTS
146 Comments can be embedded in the chat script. A comment is a line which
147 starts with the \fB#\fR (hash) character in column 1. Such comment
148 lines are just ignored by the chat program. If a '#' character is to
149 be expected as the first character of the expect sequence, you should
150 quote the expect string.
151 If you want to wait for a prompt that starts with a # (hash)
152 character, you would have to write something like this:
154 # Now wait for the prompt and send logout string
156 \'# ' logout
159 .SH SENDING DATA FROM A FILE
160 If the string to send starts with an at sign (@), the rest of the
161 string is taken to be the name of a file to read to get the string to
162 send.  If the last character of the data read is a newline, it is
163 removed.  The file can be a named pipe (or fifo) instead of a regular
164 file.  This provides a way for \fBchat\fR to communicate with another
165 program, for example, a program to prompt the user and receive a
166 password typed in.
169 .SH ABORT STRINGS
170 Many modems will report the status of the call as a string. These
171 strings may be \fBCONNECTED\fR or \fBNO CARRIER\fR or \fBBUSY\fR. It
172 is often desirable to terminate the script should the modem fail to
173 connect to the remote. The difficulty is that a script would not know
174 exactly which modem string it may receive. On one attempt, it may
175 receive \fBBUSY\fR while the next time it may receive \fBNO CARRIER\fR.
177 These "abort" strings may be specified in the script using the \fIABORT\fR
178 sequence. It is written in the script as in the following example:
180 ABORT BUSY ABORT 'NO CARRIER' '' ATZ OK ATDT5551212 CONNECT
182 This sequence will expect nothing; and then send the string ATZ. The
183 expected response to this is the string \fIOK\fR. When it receives \fIOK\fR,
184 the string ATDT5551212 to dial the telephone. The expected string is
185 \fICONNECT\fR. If the string \fICONNECT\fR is received the remainder of the
186 script is executed. However, should the modem find a busy telephone, it will
187 send the string \fIBUSY\fR. This will cause the string to match the abort
188 character sequence. The script will then fail because it found a match to
189 the abort string. If it received the string \fINO CARRIER\fR, it will abort
190 for the same reason. Either string may be received. Either string will
191 terminate the \fIchat\fR script.
192 .SH CLR_ABORT STRINGS
193 This sequence allows for clearing previously set \fBABORT\fR strings.
194 \fBABORT\fR strings are kept in an array of a pre-determined size (at
195 compilation time); \fBCLR_ABORT\fR will reclaim the space for cleared
196 entries so that new strings can use that space.
197 .SH SAY STRINGS
198 The \fBSAY\fR directive allows the script to send strings to the user
199 at the terminal via standard error.  If \fBchat\fR is being run by
200 pppd, and pppd is running as a daemon (detached from its controlling
201 terminal), standard error will normally be redirected to the file
202 /etc/ppp/connect-errors.
204 \fBSAY\fR strings must be enclosed in single or double quotes. If
205 carriage return and line feed are needed in the string to be output,
206 you must explicitely add them to your string.
208 The SAY strings could be used to give progress messages in sections of
209 the script where you want to have 'ECHO OFF' but still let the user
210 know what is happening.  An example is:
212 ABORT BUSY 
214 ECHO OFF 
216 SAY "Dialling your ISP...\\n" 
218 \'' ATDT5551212 
220 TIMEOUT 120
222 SAY "Waiting up to 2 minutes for connection ... "
224 CONNECT '' 
226 SAY "Connected, now logging in ...\n"
228 ogin: account
230 ssword: pass
232 $ \c
233 SAY "Logged in OK ...\n"
234 \fIetc ...\fR
236 This sequence will only present the SAY strings to the user and all
237 the details of the script will remain hidden. For example, if the
238 above script works, the user will see:
240 Dialling your ISP...
242 Waiting up to 2 minutes for connection ... Connected, now logging in ...
244 Logged in OK ...
247 .SH REPORT STRINGS
248 A \fBreport\fR string is similar to the ABORT string. The difference
249 is that the strings, and all characters to the next control character
250 such as a carriage return, are written to the report file.
252 The report strings may be used to isolate the transmission rate of the
253 modem's connect string and return the value to the chat user. The
254 analysis of the report string logic occurs in conjunction with the
255 other string processing such as looking for the expect string. The use
256 of the same string for a report and abort sequence is probably not
257 very useful, however, it is possible.
259 The report strings to no change the completion code of the program.
261 These "report" strings may be specified in the script using the \fIREPORT\fR
262 sequence. It is written in the script as in the following example:
264 REPORT CONNECT ABORT BUSY '' ATDT5551212 CONNECT '' ogin: account
266 This sequence will expect nothing; and then send the string
267 ATDT5551212 to dial the telephone. The expected string is
268 \fICONNECT\fR. If the string \fICONNECT\fR is received the remainder
269 of the script is executed. In addition the program will write to the
270 expect-file the string "CONNECT" plus any characters which follow it
271 such as the connection rate.
272 .SH CLR_REPORT STRINGS
273 This sequence allows for clearing previously set \fBREPORT\fR strings.
274 \fBREPORT\fR strings are kept in an array of a pre-determined size (at
275 compilation time); \fBCLR_REPORT\fR will reclaim the space for cleared
276 entries so that new strings can use that space.
277 .SH ECHO
278 The echo options controls whether the output from the modem is echoed
279 to \fIstderr\fR. This option may be set with the \fI-e\fR option, but
280 it can also be controlled by the \fIECHO\fR keyword. The "expect-send"
281 pair \fIECHO\fR \fION\fR enables echoing, and \fIECHO\fR \fIOFF\fR
282 disables it. With this keyword you can select which parts of the
283 conversation should be visible. For instance, with the following
284 script:
286 ABORT   'BUSY'
288 ABORT   'NO CARRIER'
290 ''      ATZ
292 OK\\r\\n  ATD1234567
294 \\r\\n    \\c
296 ECHO    ON
298 CONNECT \\c
300 ogin:   account
302 all output resulting from modem configuration and dialing is not visible,
303 but starting with the \fICONNECT\fR (or \fIBUSY\fR) message, everything
304 will be echoed.
305 .SH HANGUP
306 The HANGUP options control whether a modem hangup should be considered
307 as an error or not.  This option is useful in scripts for dialling
308 systems which will hang up and call your system back.  The HANGUP
309 options can be \fBON\fR or \fBOFF\fR.
311 When HANGUP is set OFF and the modem hangs up (e.g., after the first
312 stage of logging in to a callback system), \fBchat\fR will continue
313 running the script (e.g., waiting for the incoming call and second
314 stage login prompt). As soon as the incoming call is connected, you
315 should use the \fBHANGUP ON\fR directive to reinstall normal hang up
316 signal behavior.  Here is an (simple) example script:
318 ABORT   'BUSY'
320 ''      ATZ
322 OK\\r\\n  ATD1234567
324 \\r\\n    \\c
326 CONNECT \\c
328 \'Callback login:' call_back_ID
330 HANGUP OFF
332 ABORT "Bad Login"
334 \'Callback Password:' Call_back_password
336 TIMEOUT 120
338 CONNECT \\c
340 HANGUP ON
342 ABORT "NO CARRIER"
344 ogin:--BREAK--ogin: real_account
346 \fIetc ...\fR
348 .SH TIMEOUT
349 The initial timeout value is 45 seconds. This may be changed using the \fB-t\fR
350 parameter.
352 To change the timeout value for the next expect string, the following
353 example may be used:
355 ATZ OK ATDT5551212 CONNECT TIMEOUT 10 ogin:--ogin: TIMEOUT 5 assword: hello2u2
357 This will change the timeout to 10 seconds when it expects the login:
358 prompt. The timeout is then changed to 5 seconds when it looks for the
359 password prompt.
361 The timeout, once changed, remains in effect until it is changed again.
362 .SH SENDING EOT
363 The special reply string of \fIEOT\fR indicates that the chat program
364 should send an EOT character to the remote. This is normally the
365 End-of-file character sequence. A return character is not sent
366 following the EOT.
368 The EOT sequence may be embedded into the send string using the
369 sequence \fI^D\fR.
370 .SH GENERATING BREAK
371 The special reply string of \fIBREAK\fR will cause a break condition
372 to be sent. The break is a special signal on the transmitter. The
373 normal processing on the receiver is to change the transmission rate.
374 It may be used to cycle through the available transmission rates on
375 the remote until you are able to receive a valid login prompt.
377 The break sequence may be embedded into the send string using the
378 \fI\\K\fR sequence.
379 .SH ESCAPE SEQUENCES
380 The expect and reply strings may contain escape sequences. All of the
381 sequences are legal in the reply string. Many are legal in the expect.
382 Those which are not valid in the expect sequence are so indicated.
384 .B ''
385 Expects or sends a null string. If you send a null string then it will still
386 send the return character. This sequence may either be a pair of apostrophe
387 or quote characters.
389 .B \\\\b
390 represents a backspace character.
392 .B \\\\c
393 Suppresses the newline at the end of the reply string. This is the only
394 method to send a string without a trailing return character. It must
395 be at the end of the send string. For example,
396 the sequence hello\\c will simply send the characters h, e, l, l, o.
397 .I (not valid in expect.)
399 .B \\\\d
400 Delay for one second. The program uses sleep(1) which will delay to a
401 maximum of one second.
402 .I (not valid in expect.)
404 .B \\\\K
405 Insert a BREAK
406 .I (not valid in expect.)
408 .B \\\\n
409 Send a newline or linefeed character.
411 .B \\\\N
412 Send a null character. The same sequence may be represented by \\0.
413 .I (not valid in expect.)
415 .B \\\\p
416 Pause for a fraction of a second. The delay is 1/10th of a second.
417 .I (not valid in expect.)
419 .B \\\\q
420 Suppress writing the string to the SYSLOG file. The string ?????? is
421 written to the log in its place.
422 .I (not valid in expect.)
424 .B \\\\r
425 Send or expect a carriage return.
427 .B \\\\s
428 Represents a space character in the string. This may be used when it
429 is not desirable to quote the strings which contains spaces. The
430 sequence 'HI TIM' and HI\\sTIM are the same.
432 .B \\\\t
433 Send or expect a tab character.
435 .B \\\\T
436 Send the phone number string as specified with the \fI-T\fR option
437 .I (not valid in expect.)
439 .B \\\\U
440 Send the phone number 2 string as specified with the \fI-U\fR option
441 .I (not valid in expect.)
443 .B \\\\\\\\
444 Send or expect a backslash character.
446 .B \\\\ddd
447 Collapse the octal digits (ddd) into a single ASCII character and send that
448 character.
449 .I (some characters are not valid in expect.)
451 .B \^^C
452 Substitute the sequence with the control character represented by C.
453 For example, the character DC1 (17) is shown as \^^Q.
454 .I (some characters are not valid in expect.)
455 .SH ENVIRONMENT VARIABLES
456 Environment variables are available within chat scripts, if  the \fI-E\fR
457 option was specified in the command line. The metacharacter \fI$\fR is used
458 to introduce the name of the environment variable to substitute. If the
459 substition fails, because the requested environment variable is not set,
460 \fInothing\fR is replaced for the variable.
461 .SH TERMINATION CODES
462 The \fIchat\fR program will terminate with the following completion
463 codes.
465 .B 0
466 The normal termination of the program. This indicates that the script
467 was executed without error to the normal conclusion.
469 .B 1
470 One or more of the parameters are invalid or an expect string was too
471 large for the internal buffers. This indicates that the program as not
472 properly executed.
474 .B 2
475 An error occurred during the execution of the program. This may be due
476 to a read or write operation failing for some reason or chat receiving
477 a signal such as SIGINT.
479 .B 3
480 A timeout event occurred when there was an \fIexpect\fR string without
481 having a "-subsend" string. This may mean that you did not program the
482 script correctly for the condition or that some unexpected event has
483 occurred and the expected string could not be found.
485 .B 4
486 The first string marked as an \fIABORT\fR condition occurred.
488 .B 5
489 The second string marked as an \fIABORT\fR condition occurred.
491 .B 6
492 The third string marked as an \fIABORT\fR condition occurred.
494 .B 7
495 The fourth string marked as an \fIABORT\fR condition occurred.
497 .B ...
498 The other termination codes are also strings marked as an \fIABORT\fR
499 condition.
501 Using the termination code, it is possible to determine which event
502 terminated the script. It is possible to decide if the string "BUSY"
503 was received from the modem as opposed to "NO DIAL TONE". While the
504 first event may be retried, the second will probably have little
505 chance of succeeding during a retry.
506 .SH SEE ALSO
507 Additional information about \fIchat\fR scripts may be found with UUCP
508 documentation. The \fIchat\fR script was taken from the ideas proposed
509 by the scripts used by the \fIuucico\fR program.
511 uucico(1), uucp(1)
512 .SH COPYRIGHT
513 The \fIchat\fR program is in public domain. This is not the GNU public
514 license. If it breaks then you get to keep both pieces.