ANTA catalog for services tests
VerifyDNSLookup ¶
Verifies the DNS (Domain Name Service) name to IP address resolution.
Expected Results
- Success: The test will pass if a domain name is resolved to an IP address.
- Failure: The test will fail if a domain name does not resolve to an IP address.
- Error: This test will error out if a domain name is invalid.
Examples
anta.tests.services:
- VerifyDNSLookup:
domain_names:
- arista.com
- www.google.com
- arista.ca
Source code in anta/tests/services.py
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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
|
VerifyDNSServers ¶
Verifies if the DNS (Domain Name Service) servers are correctly configured.
Expected Results
- Success: The test will pass if the DNS server specified in the input is configured with the correct VRF and priority.
- Failure: The test will fail if the DNS server is not configured or if the VRF and priority of the DNS server do not match the input.
Examples
anta.tests.services:
- VerifyDNSServers:
dns_servers:
- server_address: 10.14.0.1
vrf: default
priority: 1
- server_address: 10.14.0.11
vrf: MGMT
priority: 0
Inputs¶
Name | Type | Description | Default |
---|---|---|---|
dns_servers |
list[DnsServer]
|
List of DNS servers to verify.
|
- |
DnsServer¶
Name | Type | Description | Default |
---|---|---|---|
server_address |
IPv4Address | IPv6Address
|
The IPv4/IPv6 address of the DNS server.
|
- |
vrf |
str
|
The VRF for the DNS server. Defaults to 'default' if not provided.
|
'default'
|
priority |
int
|
The priority of the DNS server from 0 to 4, lower is first.
|
Field(ge=0, le=4)
|
Source code in anta/tests/services.py
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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
|
VerifyErrdisableRecovery ¶
Verifies the errdisable recovery reason, status, and interval.
Expected Results
- Success: The test will pass if the errdisable recovery reason status is enabled and the interval matches the input.
- Failure: The test will fail if the errdisable recovery reason is not found, the status is not enabled, or the interval does not match the input.
Examples
anta.tests.services:
- VerifyErrdisableRecovery:
reasons:
- reason: acl
interval: 30
- reason: bpduguard
interval: 30
Inputs¶
Name | Type | Description | Default |
---|---|---|---|
reasons |
list[ErrDisableReason]
|
List of errdisable reasons.
|
- |
ErrDisableReason¶
Name | Type | Description | Default |
---|---|---|---|
reason |
ErrDisableReasons
|
Type or name of the errdisable reason.
|
- |
interval |
ErrDisableInterval
|
Interval of the reason in seconds.
|
- |
Source code in anta/tests/services.py
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 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 |
|
VerifyHostname ¶
Verifies the hostname of a device.
Expected Results
- Success: The test will pass if the hostname matches the provided input.
- Failure: The test will fail if the hostname does not match the provided input.
Examples
anta.tests.services:
- VerifyHostname:
hostname: s1-spine1
Source code in anta/tests/services.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 |
|