ANTA catalog for generic routing tests
Tests¶
Module related to generic routing tests.
VerifyIPv4RouteNextHops ¶
Verifies the next-hops of the IPv4 prefixes.
This test performs the following checks for each IPv4 prefix:
- Verifies the specified IPv4 route exists in the routing table.
- For each specified next-hop:
- Verifies a path with matching next-hop exists.
- Supports
strict: True
to verify that routes must be learned exclusively via the exact next-hops specified.
Expected Results
- Success: The test will pass if routes exist with paths matching the expected next-hops.
- Failure: The test will fail if:
- A route entry is not found for given IPv4 prefixes.
- A path with specified next-hop is not found.
Examples
anta.tests.routing:
generic:
- VerifyIPv4RouteNextHops:
route_entries:
- prefix: 10.10.0.1/32
vrf: default
strict: false
nexthops:
- 10.100.0.8
- 10.100.0.10
Inputs¶
Name | Type | Description | Default |
---|---|---|---|
route_entries |
list[IPv4Routes]
|
List of IPv4 route(s).
|
- |
Source code in anta/tests/routing/generic.py
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 |
|
VerifyIPv4RouteType ¶
Verifies the route-type of the IPv4 prefixes.
This test performs the following checks for each IPv4 route:
- Verifies that the specified VRF is configured.
- Verifies that the specified IPv4 route is exists in the configuration.
- Verifies that the the specified IPv4 route is of the expected type.
Expected Results
- Success: If all of the following conditions are met:
- All the specified VRFs are configured.
- All the specified IPv4 routes are found.
- All the specified IPv4 routes are of the expected type.
- Failure: If any of the following occur:
- A specified VRF is not configured.
- A specified IPv4 route is not found.
- Any specified IPv4 route is not of the expected type.
Examples
anta.tests.routing:
generic:
- VerifyIPv4RouteType:
routes_entries:
- prefix: 10.10.0.1/32
vrf: default
route_type: eBGP
- prefix: 10.100.0.12/31
vrf: default
route_type: connected
- prefix: 10.100.1.5/32
vrf: default
route_type: iBGP
Inputs¶
Name | Type | Description | Default |
---|---|---|---|
routes_entries |
list[IPv4Routes]
|
List of IPv4 route(s).
|
- |
Source code in anta/tests/routing/generic.py
190 191 192 193 194 195 196 197 198 199 200 201 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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
|
VerifyRoutingProtocolModel ¶
Verifies the configured routing protocol model.
Expected Results
- Success: The test will pass if the configured routing protocol model is the one we expect.
- Failure: The test will fail if the configured routing protocol model is not the one we expect.
Examples
anta.tests.routing:
generic:
- VerifyRoutingProtocolModel:
model: multi-agent
Inputs¶
Name | Type | Description | Default |
---|---|---|---|
model |
Literal['multi-agent', 'ribd']
|
Expected routing protocol model. Defaults to `multi-agent`.
|
'multi-agent'
|
Source code in anta/tests/routing/generic.py
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 |
|
VerifyRoutingTableEntry ¶
Verifies that the provided routes are present in the routing table of a specified VRF.
Expected Results
- Success: The test will pass if the provided routes are present in the routing table.
- Failure: The test will fail if one or many provided routes are missing from the routing table.
Examples
anta.tests.routing:
generic:
- VerifyRoutingTableEntry:
vrf: default
routes:
- 10.1.0.1
- 10.1.0.2
Inputs¶
Name | Type | Description | Default |
---|---|---|---|
vrf |
str
|
VRF context. Defaults to `default` VRF.
|
'default'
|
routes |
list[IPv4Address]
|
List of routes to verify.
|
- |
collect |
Literal['one', 'all']
|
Route collect behavior: one=one route per command, all=all routes in vrf per command. Defaults to `one`
|
'one'
|
ip_interface_ip
cached
staticmethod
¶
ip_interface_ip(route: str) -> IPv4Address
Return the IP address of the provided ip route with mask.
Source code in anta/tests/routing/generic.py
167 168 169 170 171 |
|
Source code in anta/tests/routing/generic.py
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 177 178 179 180 181 182 183 184 185 186 187 |
|
VerifyRoutingTableSize ¶
Verifies the size of the IP routing table of the default VRF.
Expected Results
- Success: The test will pass if the routing table size is between the provided minimum and maximum values.
- Failure: The test will fail if the routing table size is not between the provided minimum and maximum values.
Examples
anta.tests.routing:
generic:
- VerifyRoutingTableSize:
minimum: 2
maximum: 20
Inputs¶
Name | Type | Description | Default |
---|---|---|---|
minimum |
PositiveInteger
|
Expected minimum routing table size.
|
- |
maximum |
PositiveInteger
|
Expected maximum routing table size.
|
- |
Source code in anta/tests/routing/generic.py
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 |
|
Input models¶
Module containing input models for generic routing tests.
IPv4Routes ¶
Model for a list of IPV4 route entries.
Name | Type | Description | Default |
---|---|---|---|
prefix |
IPv4Network
|
IPv4 prefix in CIDR notation.
|
- |
vrf |
str
|
VRF context. Defaults to `default` VRF.
|
'default'
|
route_type |
IPv4RouteType | None
|
Expected route type. Required field in the `VerifyIPv4RouteType` test.
|
None
|
nexthops |
list[IPv4Address] | None
|
A list of the next-hop IP addresses for the route. Required field in the `VerifyIPv4RouteNextHops` test.
|
None
|
strict |
bool
|
If True, requires exact matching of provided nexthop(s).
Can be enabled in `VerifyIPv4RouteNextHops` test.
|
False
|
Source code in anta/input_models/routing/generic.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|