STP
ANTA catalog for STP tests¶
Test functions related to various Spanning Tree Protocol (STP) settings
VerifySTPBlockedPorts ¶
Bases: AntaTest
Verifies there is no STP blocked ports.
Expected Results
- success: The test will pass if there are NO ports blocked by STP.
- failure: The test will fail if there are ports blocked by STP.
Source code in anta/tests/stp.py
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
|
VerifySTPCounters ¶
Bases: AntaTest
Verifies there is no errors in STP BPDU packets.
Expected Results
- success: The test will pass if there are NO STP BPDU packet errors under all interfaces participating in STP.
- failure: The test will fail if there are STP BPDU packet errors on one or many interface(s).
Source code in anta/tests/stp.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
|
VerifySTPForwardingPorts ¶
Bases: AntaTest
Verifies that all interfaces are in a forwarding state for a provided list of VLAN(s).
Expected Results
- success: The test will pass if all interfaces are in a forwarding state for the specified VLAN(s).
- failure: The test will fail if one or many interfaces are NOT in a forwarding state in the specified VLAN(s).
Source code in anta/tests/stp.py
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 |
|
Input ¶
VerifySTPMode ¶
Bases: AntaTest
Verifies the configured STP mode for a provided list of VLAN(s).
Expected Results
- success: The test will pass if the STP mode is configured properly in the specified VLAN(s).
- failure: The test will fail if the STP mode is NOT configured properly for one or more specified VLAN(s).
Source code in anta/tests/stp.py
19 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 |
|
VerifySTPRootPriority ¶
Bases: AntaTest
Verifies the STP root priority for a provided list of VLAN or MST instance ID(s).
Expected Results
- success: The test will pass if the STP root priority is configured properly for the specified VLAN or MST instance ID(s).
- failure: The test will fail if the STP root priority is NOT configured properly for the specified VLAN or MST instance ID(s).
Source code in anta/tests/stp.py
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 188 189 190 191 192 193 194 195 196 197 198 |
|
Input ¶
Bases: Input
Source code in anta/tests/stp.py
170 171 172 173 174 |
|