Device models
AntaDevice base class¶
UML representation¶
AntaDevice ¶
AntaDevice(name: str, tags: Optional[list[str]] = None, disable_cache: bool = False)
Bases: ABC
Abstract class representing a device in ANTA.
An implementation of this class must override the abstract coroutines _collect()
and
refresh()
.
Attributes:
Name | Type | Description |
---|---|---|
name |
str
|
Device name |
is_online |
bool
|
True if the device IP is reachable and a port can be open |
established |
bool
|
True if remote command execution succeeds |
hw_model |
Optional[str]
|
Hardware model of the device |
tags |
list[str]
|
List of tags for this device |
cache |
Optional[Cache]
|
In-memory cache from aiocache library for this device (None if cache is disabled) |
cache_locks |
Optional[defaultdict[str, Lock]]
|
Dictionary mapping keys to asyncio locks to guarantee exclusive access to the cache if not disabled |
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
Device name |
required |
tags |
Optional[list[str]]
|
List of tags for this device |
None
|
disable_cache |
bool
|
Disable caching for all commands for this device. Defaults to False. |
False
|
Source code in anta/device.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
|
cache_statistics
property
¶
cache_statistics: dict[str, Any] | None
Returns the device cache statistics for logging purposes
collect
async
¶
collect(command: AntaCommand) -> None
Collects the output for a specified command.
When caching is activated on both the device and the command, this method prioritizes retrieving the output from the cache. In cases where the output isn’t cached yet, it will be freshly collected and then stored in the cache for future access. The method employs asynchronous locks based on the command’s UID to guarantee exclusive access to the cache.
When caching is NOT enabled, either at the device or command level, the method directly collects the output
via the private _collect
method without interacting with the cache.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
command |
AntaCommand
|
The command to process. |
required |
Source code in anta/device.py
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 |
|
collect_commands
async
¶
collect_commands(commands: list[AntaCommand]) -> None
Collect multiple commands.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
commands |
list[AntaCommand]
|
the commands to collect |
required |
Source code in anta/device.py
157 158 159 160 161 162 163 164 |
|
copy
async
¶
copy(sources: list[Path], destination: Path, direction: Literal['to', 'from'] = 'from') -> None
Copy files to and from the device, usually through SCP. It is not mandatory to implement this for a valid AntaDevice subclass.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sources |
list[Path]
|
List of files to copy to or from the device. |
required |
destination |
Path
|
Local or remote destination when copying the files. Can be a folder. |
required |
direction |
Literal['to', 'from']
|
Defines if this coroutine copies files to or from the device. |
'from'
|
Source code in anta/device.py
177 178 179 180 181 182 183 184 185 186 187 |
|
refresh
abstractmethod
async
¶
refresh() -> None
Update attributes of an AntaDevice instance.
This coroutine must update the following attributes of AntaDevice
is_online
: When the device IP is reachable and a port can be openestablished
: When a command execution succeedshw_model
: The hardware model of the device
Source code in anta/device.py
166 167 168 169 170 171 172 173 174 175 |
|
Async EOS device class¶
UML representation¶
AsyncEOSDevice ¶
AsyncEOSDevice(host: str, username: str, password: str, name: Optional[str] = None, enable: bool = False, enable_password: Optional[str] = None, port: Optional[int] = None, ssh_port: Optional[int] = 22, tags: Optional[list[str]] = None, timeout: Optional[float] = None, insecure: bool = False, proto: Literal['http', 'https'] = 'https', disable_cache: bool = False)
Bases: AntaDevice
Implementation of AntaDevice for EOS using aio-eapi.
Attributes:
Name | Type | Description |
---|---|---|
name |
Device name |
|
is_online |
True if the device IP is reachable and a port can be open |
|
established |
True if remote command execution succeeds |
|
hw_model |
Hardware model of the device |
|
tags |
List of tags for this device |
Parameters:
Name | Type | Description | Default |
---|---|---|---|
host |
str
|
Device FQDN or IP |
required |
username |
str
|
Username to connect to eAPI and SSH |
required |
password |
str
|
Password to connect to eAPI and SSH |
required |
name |
Optional[str]
|
Device name |
None
|
enable |
bool
|
Device needs privileged access |
False
|
enable_password |
Optional[str]
|
Password used to gain privileged access on EOS |
None
|
port |
Optional[int]
|
eAPI port. Defaults to 80 is proto is ‘http’ or 443 if proto is ‘https’. |
None
|
ssh_port |
Optional[int]
|
SSH port |
22
|
tags |
Optional[list[str]]
|
List of tags for this device |
None
|
timeout |
Optional[float]
|
Timeout value in seconds for outgoing connections. Default to 10 secs. |
None
|
insecure |
bool
|
Disable SSH Host Key validation |
False
|
proto |
Literal['http', 'https']
|
eAPI protocol. Value can be ‘http’ or ‘https’ |
'https'
|
disable_cache |
bool
|
Disable caching for all commands for this device. Defaults to False. |
False
|
Source code in anta/device.py
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 |
|
copy
async
¶
copy(sources: list[Path], destination: Path, direction: Literal['to', 'from'] = 'from') -> None
Copy files to and from the device using asyncssh.scp().
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sources |
list[Path]
|
List of files to copy to or from the device. |
required |
destination |
Path
|
Local or remote destination when copying the files. Can be a folder. |
required |
direction |
Literal['to', 'from']
|
Defines if this coroutine copies files to or from the device. |
'from'
|
Source code in anta/device.py
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 |
|
refresh
async
¶
refresh() -> None
Update attributes of an AsyncEOSDevice instance.
This coroutine must update the following attributes of AsyncEOSDevice: - is_online: When a device IP is reachable and a port can be open - established: When a command execution succeeds - hw_model: The hardware model of the device
Source code in anta/device.py
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 |
|