Security
ANTA catalog for security tests¶
Test functions related to the EOS various security settings
VerifyAPIHttpStatus ¶
Bases: AntaTest
Verifies if eAPI HTTP server is disabled globally.
Expected Results
- success: The test will pass if eAPI HTTP server is disabled globally.
- failure: The test will fail if eAPI HTTP server is NOT disabled globally.
Source code in anta/tests/security.py
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
|
VerifyAPIHttpsSSL ¶
Bases: AntaTest
Verifies if eAPI HTTPS server SSL profile is configured and valid.
Expected results
- success: The test will pass if the eAPI HTTPS server SSL profile is configured and valid.
- failure: The test will fail if the eAPI HTTPS server SSL profile is NOT configured, misconfigured or invalid.
Source code in anta/tests/security.py
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
|
VerifyAPIIPv4Acl ¶
Bases: AntaTest
Verifies if eAPI has the right number IPv4 ACL(s) configured for a specified VRF.
Expected results
- success: The test will pass if eAPI has the provided number of IPv4 ACL(s) in the specified VRF.
- failure: The test will fail if eAPI has not the right number of IPv4 ACL(s) in the specified VRF.
Source code in anta/tests/security.py
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 |
|
VerifyAPIIPv6Acl ¶
Bases: AntaTest
Verifies if eAPI has the right number IPv6 ACL(s) configured for a specified VRF.
Expected results
- success: The test will pass if eAPI has the provided number of IPv6 ACL(s) in the specified VRF.
- failure: The test will fail if eAPI has not the right number of IPv6 ACL(s) in the specified VRF.
- skipped: The test will be skipped if the number of IPv6 ACL(s) or VRF parameter is not provided.
Source code in anta/tests/security.py
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 273 274 275 276 277 |
|
VerifyAPISSLCertificate ¶
Bases: AntaTest
Verifies the eAPI SSL certificate expiry, common subject name, encryption algorithm and key size.
Expected Results
- success: The test will pass if the certificate’s expiry date is greater than the threshold, and the certificate has the correct name, encryption algorithm, and key size.
- failure: The test will fail if the certificate is expired or is going to expire, or if the certificate has an incorrect name, encryption algorithm, or key size.
Source code in anta/tests/security.py
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 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 |
|
Input ¶
Bases: Input
Input parameters for the VerifyAPISSLCertificate test.
Source code in anta/tests/security.py
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 |
|
certificates
instance-attribute
¶
certificates: List[APISSLCertificates]
List of API SSL certificates
APISSLCertificates ¶
Bases: BaseModel
This class defines the details of an API SSL certificate.
Source code in anta/tests/security.py
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 |
|
certificate_name
instance-attribute
¶
certificate_name: str
The name of the certificate to be verified.
encryption_algorithm
instance-attribute
¶
encryption_algorithm: EncryptionAlgorithm
The encryption algorithm of the certificate.
expiry_threshold
instance-attribute
¶
expiry_threshold: int
The expiry threshold of the certificate in days.
key_size
instance-attribute
¶
key_size: Union[RsaKeySize, EcdsaKeySize]
The encryption algorithm key size of the certificate.
validate_inputs ¶
validate_inputs() -> BaseModel
Validate the key size provided to the APISSLCertificates class.
If encryption_algorithm is RSA then key_size should be in {2048, 3072, 4096}.
If encryption_algorithm is ECDSA then key_size should be in {256, 384, 521}.
Source code in anta/tests/security.py
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
|
VerifyBannerLogin ¶
Bases: AntaTest
Verifies the login banner of a device.
Expected results
- success: The test will pass if the login banner matches the provided input.
- failure: The test will fail if the login banner does not match the provided input.
Source code in anta/tests/security.py
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 |
|
VerifyBannerMotd ¶
Bases: AntaTest
Verifies the motd banner of a device.
Expected results
- success: The test will pass if the motd banner matches the provided input.
- failure: The test will fail if the motd banner does not match the provided input.
Source code in anta/tests/security.py
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 |
|
VerifyIPv4ACL ¶
Bases: AntaTest
Verifies the configuration of IPv4 ACLs.
Expected results
- success: The test will pass if an IPv4 ACL is configured with the correct sequence entries.
- failure: The test will fail if an IPv4 ACL is not configured or entries are not in sequence.
Source code in anta/tests/security.py
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 |
|
Input ¶
Bases: Input
Inputs for the VerifyIPv4ACL test.
Source code in anta/tests/security.py
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 |
|
IPv4ACL ¶
Bases: BaseModel
Detail of IPv4 ACL
Source code in anta/tests/security.py
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 |
|
IPv4ACLEntries ¶
Bases: BaseModel
IPv4 ACL entries details
Source code in anta/tests/security.py
476 477 478 479 480 481 482 |
|
VerifySSHIPv4Acl ¶
Bases: AntaTest
Verifies if the SSHD agent has the right number IPv4 ACL(s) configured for a specified VRF.
Expected results
- success: The test will pass if the SSHD agent has the provided number of IPv4 ACL(s) in the specified VRF.
- failure: The test will fail if the SSHD agent has not the right number of IPv4 ACL(s) in the specified VRF.
Source code in anta/tests/security.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
|
Input ¶
Bases: Input
Source code in anta/tests/security.py
64 65 66 67 68 |
|
VerifySSHIPv6Acl ¶
Bases: AntaTest
Verifies if the SSHD agent has the right number IPv6 ACL(s) configured for a specified VRF.
Expected results
- success: The test will pass if the SSHD agent has the provided number of IPv6 ACL(s) in the specified VRF.
- failure: The test will fail if the SSHD agent has not the right number of IPv6 ACL(s) in the specified VRF.
Source code in anta/tests/security.py
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 |
|
Input ¶
Bases: Input
Source code in anta/tests/security.py
102 103 104 105 106 |
|
VerifySSHStatus ¶
Bases: AntaTest
Verifies if the SSHD agent is disabled in the default VRF.
Expected Results
- success: The test will pass if the SSHD agent is disabled in the default VRF.
- failure: The test will fail if the SSHD agent is NOT disabled in the default VRF.
Source code in anta/tests/security.py
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 |
|
VerifyTelnetStatus ¶
Bases: AntaTest
Verifies if Telnet is disabled in the default VRF.
Expected Results
- success: The test will pass if Telnet is disabled in the default VRF.
- failure: The test will fail if Telnet is NOT disabled in the default VRF.
Source code in anta/tests/security.py
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
|