Expect Scripts
Expect scripts define series of commands that can be sent to devices and expected device replies that control script behavior. To execute an Expect script, Iotellect Server connects to a device using Telnet or SSH protocol.
Expect scripts are divided into three groups:
Read Configuration Scripts. Those scripts are called only from device configuration backup sequences.
Write Configuration Scripts.Those scripts are called only from device configuration restoration sequences.
Configuration Scripts. These are generic purpose scripts used for changing device configuration or controlling devices.
The scripts are managed via global configuration settings of the Network Host device driver.
Script Structure
Each Expect script is configured as a table. A record in this table defines a command to be sent to a device and expected device output.
Each script record contains:
Expect. This is an Iotellect Expression that should result in a string. This string will be treated as a regular expression that device output should match. The regular expression is "wrapped" into an Iotellect Expression to allow dynamic construction of regular expression that depends on environment.
![]() | To put a static regular expression into Expect field, just single-quote or double quote it and escape all quotes and backslashes inside the expression itself. |
![]() | Example: This Expect field value will result in the following regular expression: The regular expression will, in its turn, match |
Send. This is an Iotellect Expression that should result in a string. This string will be sent to a device when text matching Expect field value is received from a device.
![]() | Example: This Send field value will resolve to username defined in per-device configuration backup or restore settings. |
![]() | Example: This Send field value will cause sending |
![]() | Example: This Send field value refers |
Error Expect. Similarly to Expect field, this is an Iotellect Expression that should result in a string. This string will be treated as a regular expression that device output should match. If this happens, device reply is deemed an error and Expect script execution fails with an error message defined by Error Message field.
Error Message. This is an Iotellect Expression that should result in a string. This string will be returned as an error message if device output will match regular expression defined by Error Expect field.
Output. This is an Iotellect Expression that should result in a string representing a name of an environment variable. Any output produced by the device in response to Send command will be written into this variable.
![]() | Example: This expression will resolve to a |
Output Filter. This is an Iotellect Expression that should result in a string. This string will be treated as a regular expression. Any string matching this expression will be deleted from device's output received in response to Send command before this output is written to Output variable.
![]() | Example: This Output Filter field value will resolve to Thus, words |
Comment. Any hint describing the purpose of an Expect script line.
Resolution Environment for Expect, Send, Error Expect, Error Message, Output and Output Filter Expressions
Expect Script Expression Resolution Environment: | |||
Context of the device being configured. | |||
| |||
0 | |||
Standard variables. Environment variables defined by previously executed rules of configuration backup or restore sequence if the script was called from such a sequence. Additional variables: | |||
Variable Name | Value Type | Description | |
---|---|---|---|
configurationType | String | Type of device configuration being backed up or restored. This variable is not available for regular configuration scripts. |
Was this page helpful?