guides:reference:vendors:vendor_state_actions
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
guides:reference:vendors:vendor_state_actions [2019/12/24 13:50] – [Scenario extensions] bdorlandt | guides:reference:vendors:vendor_state_actions [2024/07/03 12:31] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ===== Vendor State Actions ===== | ||
+ | |||
+ | ==== Tasker ==== | ||
+ | |||
+ | When executing jobs to interact with the network, the job is first added to the scheduler which then launches the job at the appropriate time. This job is executed using the **// | ||
+ | |||
+ | Every job has a mandatory component called the **// | ||
+ | |||
+ | > The action commands with their options are defined in [[menu: | ||
+ | |||
+ | Since these action commands need to interact with the various devices in specific ways, unique to the vendor, a method is needed to define how these actions need to be executed. | ||
+ | |||
+ | To this end, the Tasker uses a session-state-machine with a fixed set of states that define the possible sequences that session state changes can take. Per state a number of smaller actions are then executed. | ||
+ | |||
+ | ==== Tasker Session-states ==== | ||
+ | |||
+ | For each session, the Tasker will maintain a state-machine. After login and verification, | ||
+ | |||
+ | Scenario commands not modifying the configuration will be handled in the ' | ||
+ | |||
+ | When encountering a node-command, | ||
+ | |||
+ | {{: | ||
+ | |||
+ | |||
+ | ==== Multiple Sessions ==== | ||
+ | |||
+ | These states reflect the state of a ' | ||
+ | |||
+ | The Tasker maintains multiple sessions for multiple nodes when required. This is all transparent to the user, his task is limited to defining what action commands need to be executed on which nodes. Specifying the session interface type is an option that is usually ignored. | ||
+ | |||
+ | Sessions once established remain open and active for the duration of the scenario execution, allowing the scenario direct access to multiple nodes to make changes and do verifications. | ||
+ | |||
+ | While a session is in the " | ||
+ | |||
+ | |||
+ | === State_actions table === | ||
+ | |||
+ | When assuming a state, the appropriate " | ||
+ | |||
+ | To prevent this situation and to allow flexible customization and debugging, the logic of state-actions versus vendor and session-type are controlled using a database table. This is realized using the ' | ||
+ | |||
+ | Some sample records of this table: | ||
+ | |||
+ | ^Id ^Vendor_type ^Command ^State ^Action ^Seq ^Session_types | | ||
+ | |1001 |Cisco_ios | |start |node_info |1 |all | | ||
+ | |1003 |Cisco_ios | |start |reachable |2 |mgmt | | ||
+ | |1005 |Cisco_ios | |start |login |3 |mgmt | | ||
+ | |1007 |Cisco_ios | |verify |enable |1 |all | | ||
+ | |1009 |Cisco_ios | |verify |backup |2 |mgmt | | ||
+ | |1011 |Cisco_ios | |verify |check_os |3 |all | | ||
+ | |1013 |Cisco_ios | |base |disable |1 |all | | ||
+ | |1015 |Cisco_ios | |base |keep_alive |2 |mgmt console | | ||
+ | |1017 |Cisco_ios | |preconfig |no_alive |0 |mgmt console | | ||
+ | |1019 |Cisco_ios |import_cfg |preconfig |terminal |1 |mgmt console | | ||
+ | |1021 |Cisco_ios |import_cfg |preconfig |enable |2 |all | | ||
+ | |1023 |Cisco_ios |import_cfg |preconfig |backup |3 |mgmt | | ||
+ | |1025 |Cisco_ios |import_cfg |config |import |1 |all | | ||
+ | |1027 |Cisco_ios |import_cfg |postconfig |backup |1 |mgmt | | ||
+ | |1029 |Cisco_ios |import_cfg |base |special |0 |mgmt console | | ||
+ | |||
+ | The table uses general entries without a ' | ||
+ | |||
+ | This modification also permits to include additional, command-specific, | ||
+ | |||
+ | |||
+ | |||