ANTA catalog for Adaptive Virtual Topology (AVT) tests
Tests¶
VerifyAVTPathHealth ¶
Verifies the status of all Adaptive Virtual Topology (AVT) paths for all VRFs.
Expected Results
- Success: The test will pass if all AVT paths for all VRFs are active and valid.
- Failure: The test will fail if the AVT path is not configured or if any AVT path under any VRF is either inactive or invalid.
Examples
anta.tests.avt:
- VerifyAVTPathHealth:
Source code in anta/tests/avt.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
|
VerifyAVTRole ¶
Verifies the Adaptive Virtual Topology (AVT) role of a device.
Expected Results
- Success: The test will pass if the AVT role of the device matches the expected role.
- Failure: The test will fail if the AVT is not configured or if the AVT role does not match the expected role.
Examples
anta.tests.avt:
- VerifyAVTRole:
role: edge
Source code in anta/tests/avt.py
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
|
VerifyAVTSpecificPath ¶
Verifies the Adaptive Virtual Topology (AVT) path.
This test performs the following checks for each specified LLDP neighbor:
- Confirming that the AVT paths are associated with the specified VRF.
- Verifying that each AVT path is active and valid.
- Ensuring that the AVT path matches the specified type (direct/multihop) if provided.
Expected Results
- Success: The test will pass if all of the following conditions are met:
- All AVT paths for the specified VRF are active, valid, and match the specified path type (direct/multihop), if provided.
- If multiple paths are configured, the test will pass only if all paths meet these criteria.
- Failure: The test will fail if any of the following conditions are met:
- No AVT paths are configured for the specified VRF.
- Any configured path is inactive, invalid, or does not match the specified type.
Examples
anta.tests.avt:
- VerifyAVTSpecificPath:
avt_paths:
- avt_name: CONTROL-PLANE-PROFILE
vrf: default
destination: 10.101.255.2
next_hop: 10.101.255.1
path_type: direct
Inputs¶
Source code in anta/tests/avt.py
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 |
|
Input models¶
AVTPath ¶
AVT (Adaptive Virtual Topology) model representing path details and associated information.
Name | Type | Description | Default |
---|---|---|---|
vrf |
str
|
VRF context. Defaults to `default`.
|
'default'
|
avt_name |
str
|
The name of the Adaptive Virtual Topology (AVT).
|
- |
destination |
IPv4Address
|
The IPv4 address of the destination peer in the AVT.
|
- |
next_hop |
IPv4Address
|
The IPv4 address of the next hop used to reach the AVT peer.
|
- |
path_type |
str | None
|
Specifies the type of path for the AVT. If not specified, both types 'direct' and 'multihop' are considered.
|
None
|
Source code in anta/input_models/avt.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
|