ANTA catalog for MLAG tests
VerifyMlagConfigSanity ¶
Verifies there are no MLAG config-sanity inconsistencies.
Expected Results
- Success: The test will pass if there are NO MLAG config-sanity inconsistencies.
- Failure: The test will fail if there are MLAG config-sanity inconsistencies.
- Skipped: The test will be skipped if MLAG is ‘disabled’.
- Error: The test will give an error if ‘mlagActive’ is not found in the JSON response.
Examples
anta.tests.mlag:
- VerifyMlagConfigSanity:
Source code in anta/tests/mlag.py
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 |
|
VerifyMlagDualPrimary ¶
Verifies the dual-primary detection and its parameters of the MLAG configuration.
Expected Results
- Success: The test will pass if the dual-primary detection is enabled and its parameters are configured properly.
- Failure: The test will fail if the dual-primary detection is NOT enabled or its parameters are NOT configured properly.
- Skipped: The test will be skipped if MLAG is ‘disabled’.
Examples
anta.tests.mlag:
- VerifyMlagDualPrimary:
detection_delay: 200
errdisabled: True
recovery_delay: 60
recovery_delay_non_mlag: 0
Inputs¶
Name | Type | Description | Default |
---|---|---|---|
detection_delay |
PositiveInteger
|
Delay detection (seconds).
|
- |
errdisabled |
bool
|
Errdisabled all interfaces when dual-primary is detected.
|
False
|
recovery_delay |
PositiveInteger
|
Delay (seconds) after dual-primary detection resolves until non peer-link ports that are part of an MLAG are enabled.
|
- |
recovery_delay_non_mlag |
PositiveInteger
|
Delay (seconds) after dual-primary detection resolves until ports that are not part of an MLAG are enabled.
|
- |
Source code in anta/tests/mlag.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 |
|
VerifyMlagInterfaces ¶
Verifies there are no inactive or active-partial MLAG ports.
Expected Results
- Success: The test will pass if there are NO inactive or active-partial MLAG ports.
- Failure: The test will fail if there are inactive or active-partial MLAG ports.
- Skipped: The test will be skipped if MLAG is ‘disabled’.
Examples
anta.tests.mlag:
- VerifyMlagInterfaces:
Source code in anta/tests/mlag.py
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 |
|
VerifyMlagPrimaryPriority ¶
Verify the MLAG (Multi-Chassis Link Aggregation) primary priority.
Expected Results
- Success: The test will pass if the MLAG state is set as ‘primary’ and the priority matches the input.
- Failure: The test will fail if the MLAG state is not ‘primary’ or the priority doesn’t match the input.
- Skipped: The test will be skipped if MLAG is ‘disabled’.
Examples
anta.tests.mlag:
- VerifyMlagPrimaryPriority:
primary_priority: 3276
Inputs¶
Name | Type | Description | Default |
---|---|---|---|
primary_priority |
MlagPriority
|
The expected MLAG primary priority.
|
- |
Source code in anta/tests/mlag.py
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 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 |
|
VerifyMlagReloadDelay ¶
Verifies the reload-delay parameters of the MLAG configuration.
Expected Results
- Success: The test will pass if the reload-delay parameters are configured properly.
- Failure: The test will fail if the reload-delay parameters are NOT configured properly.
- Skipped: The test will be skipped if MLAG is ‘disabled’.
Examples
anta.tests.mlag:
- VerifyMlagReloadDelay:
reload_delay: 300
reload_delay_non_mlag: 330
Inputs¶
Name | Type | Description | Default |
---|---|---|---|
reload_delay |
PositiveInteger
|
Delay (seconds) after reboot until non peer-link ports that are part of an MLAG are enabled.
|
- |
reload_delay_non_mlag |
PositiveInteger
|
Delay (seconds) after reboot until ports that are not part of an MLAG are enabled.
|
- |
Source code in anta/tests/mlag.py
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 |
|
VerifyMlagStatus ¶
Verifies the health status of the MLAG configuration.
Expected Results
- Success: The test will pass if the MLAG state is ‘active’, negotiation status is ‘connected’, peer-link status and local interface status are ‘up’.
- Failure: The test will fail if the MLAG state is not ‘active’, negotiation status is not ‘connected’, peer-link status or local interface status are not ‘up’.
- Skipped: The test will be skipped if MLAG is ‘disabled’.
Examples
anta.tests.mlag:
- VerifyMlagStatus:
Source code in anta/tests/mlag.py
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 |
|