ANTA catalog for generic routing tests
Tests¶
VerifyIPv4RouteType ¶
Verifies the route-type of the IPv4 prefixes.
This test performs the following checks for each IPv4 route: 1. Verifies that the specified VRF is configured. 2. Verifies that the specified IPv4 route is exists in the configuration. 3. 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 |
---|
Source code in anta/tests/routing/generic.py
188 189 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 |
|
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
165 166 167 168 169 |
|
Source code in anta/tests/routing/generic.py
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 177 178 179 180 181 182 183 184 185 |
|
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 |
|
Input models¶
IPv4Routes ¶
Model for a list of IPV4 route entries.
Name | Type | Description | Default |
---|---|---|---|
prefix |
IPv4Network
|
The IPV4 network to validate the route type.
|
- |
vrf |
str
|
VRF context. Defaults to `default` VRF.
|
'default'
|
route_type |
IPv4RouteType
|
List of IPV4 Route type to validate the valid rout type.
|
- |
Source code in anta/input_models/routing/generic.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
|