sync_driver
scrapli.driver.core.cisco_iosxr.sync_driver
IOSXRDriver
¶
Bases: NetworkDriver
Source code in driver/core/cisco_iosxr/sync_driver.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
|
__init__(host: str, privilege_levels: Optional[Dict[str, PrivilegeLevel]] = None, default_desired_privilege_level: str = 'privilege_exec', port: Optional[int] = None, auth_username: str = '', auth_password: str = '', auth_private_key: str = '', auth_private_key_passphrase: str = '', auth_strict_key: bool = True, auth_bypass: bool = False, timeout_socket: float = 15.0, timeout_transport: float = 30.0, timeout_ops: float = 30.0, comms_return_char: str = '\n', ssh_config_file: Union[str, bool] = False, ssh_known_hosts_file: Union[str, bool] = False, on_init: Optional[Callable[..., Any]] = None, on_open: Optional[Callable[..., Any]] = None, on_close: Optional[Callable[..., Any]] = None, transport: str = 'system', transport_options: Optional[Dict[str, Any]] = None, channel_log: Union[str, bool, BytesIO] = False, channel_log_mode: str = 'write', channel_lock: bool = False, logging_uid: str = '', auth_secondary: str = '', failed_when_contains: Optional[List[str]] = None, textfsm_platform: str = 'cisco_xr', genie_platform: str = 'iosxr')
¶
IOSXRDriver Object
Please see scrapli.driver.base.base_driver.Driver
for all "base driver" arguments!
noqa: DAR101¶
Parameters:
Name | Type | Description | Default |
---|---|---|---|
privilege_levels |
Optional[Dict[str, PrivilegeLevel]]
|
optional user provided privilege levels, if left None will default to scrapli standard privilege levels |
None
|
default_desired_privilege_level |
str
|
string of name of default desired priv, this is the
priv level that is generally used to disable paging/set terminal width and things
like that upon first login, and is also the priv level scrapli will try to acquire
for normal "command" operations ( |
'privilege_exec'
|
auth_secondary |
str
|
password to use for secondary authentication (enable) |
''
|
on_open |
Optional[Callable[..., Any]]
|
callable that accepts the class instance as its only argument. this callable, if provided, is executed immediately after authentication is completed. Common use cases for this callable would be to disable paging or accept any kind of banner message that prompts a user upon connection |
None
|
on_close |
Optional[Callable[..., Any]]
|
callable that accepts the class instance as its only argument. this callable, if provided, is executed immediately prior to closing the underlying transport. Common use cases for this callable would be to save configurations prior to exiting, or to logout properly to free up vtys or similar. |
None
|
textfsm_platform |
str
|
string name of textfsm parser platform |
'cisco_xr'
|
genie_platform |
str
|
string name of cisco genie parser platform |
'iosxr'
|
failed_when_contains |
Optional[List[str]]
|
List of strings that indicate a command/config has failed |
None
|
Returns:
Type | Description |
---|---|
None |
Source code in driver/core/cisco_iosxr/sync_driver.py
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
|
iosxr_on_close(conn: NetworkDriver) -> None
¶
IOSXRDriver default on_close callable
Parameters:
Name | Type | Description | Default |
---|---|---|---|
conn |
NetworkDriver
|
NetworkDriver object |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in driver/core/cisco_iosxr/sync_driver.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
|
iosxr_on_open(conn: NetworkDriver) -> None
¶
IOSXRDriver default on_open callable
Parameters:
Name | Type | Description | Default |
---|---|---|---|
conn |
NetworkDriver
|
NetworkDriver object |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in driver/core/cisco_iosxr/sync_driver.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|