├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── bin └── update_static_json_file.sh ├── example_data ├── causing_error.txt ├── ospf_state_output_apr_16_2023.txt └── ospf_state_output_mar_29_2023.txt ├── pyproject.toml ├── src └── bird_parser │ ├── __init__.py │ ├── main.py │ ├── output_schema.json │ ├── parse_bird_output.py │ └── utils.py └── test ├── artifacts ├── expected_output.json └── ospf_state_output_apr_29_2023.txt ├── test_comprehensive.py ├── test_live_data.py └── test_simple.py /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .venv/ 3 | .idea/ 4 | build/ 5 | *.egg-info/ 6 | .pytest_cache/ 7 | 8 | dist/ -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Andrew Dickinson 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include src/bird_parser/output_schema.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Bird OSFP Link Database Parser 3 | 4 | Parses the output of the BIRD Routing Daemon's `birdc show ospf state` command into a machine-readable JSON string. 5 | 6 | ```sh 7 | > birdc show ospf state | parse-bird-link-db - | jq | less 8 | { 9 | "areas": { 10 | "0.0.0.0": { 11 | "routers": { 12 | "10.68.29.50": { 13 | "links": { 14 | "router": [ 15 | { 16 | "id": "10.69.7.31", 17 | "metric": 10 18 | } 19 | ], 20 | "stubnet": [ 21 | { 22 | "id": "10.69.29.50/32", 23 | "metric": 0 24 | }, 25 | { 26 | "id": "10.68.29.50/32", 27 | "metric": 0 28 | } 29 | ], 30 | "external": [ 31 | { 32 | "id": "10.70.174.0/24", 33 | "metric": 20 34 | } 35 | ] 36 | } 37 | }, 38 | "10.68.73.125": { 39 | "links": { 40 | "router": [ 41 | { 42 | "id": "10.69.73.25", 43 | "metric": 10 44 | }, 45 | { 46 | "id": "10.69.52.83", 47 | "metric": 30 48 | }, 49 | { 50 | "id": "10.69.73.25", 51 | "metric": 30 52 | } 53 | ], 54 | "stubnet": [ 55 | { 56 | "id": "10.69.73.125/32", 57 | "metric": 0 58 | }, 59 | { 60 | "id": "10.68.73.125/32", 61 | "metric": 0 62 | } 63 | ] 64 | } 65 | }, 66 | ... 67 | } 68 | } 69 | } 70 | } 71 | ``` 72 | 73 | ## Output Format 74 | 75 | The output format is detailed using [JSON Schema](https://json-schema.org/) in `src/bird_parser/output_schema.json` 76 | 77 | ## Usage 78 | 79 | Pre-requisites: `python3` available via the shell 80 | 81 | First, install the CLI via pip: 82 | ```shell 83 | pip install bird-ospf-link-db-parser 84 | ``` 85 | 86 | then invoke the tool with the CLI command: 87 | ```shell 88 | birdc show ospf state | parse-bird-link-db - 89 | ``` 90 | 91 | But you probably want to use `jq` and `less` to make this output a bit more manageable: 92 | ```shell 93 | sudo apt update && sudo apt install jq less 94 | birdc show ospf state | parse-bird-link-db - | jq | less 95 | ``` 96 | 97 | ## Dev Setup 98 | 99 | Pre-requisites: `python3` available via the shell 100 | 101 | Setup by cloning, creating a virtual env, and installing the application 102 | ```sh 103 | git clone https://github.com/Andrew-Dickinson/bird-ospf-link-db-parser 104 | cd bird-ospf-link-db-parser 105 | python3 -m venv .venv 106 | source .venv/bin/activate 107 | pip install -e . 108 | ``` 109 | 110 | then invoke the tool with the CLI command: 111 | ```sh 112 | birdc show ospf link state > parse-bird-link-db - 113 | ``` 114 | 115 | ## Running the unit tests 116 | 117 | Follow the instructions under "Dev Setup" above, to clone a local copy of this application and activate 118 | the virtual environment. Then installing the test dependencies with: 119 | ```sh 120 | pip install -e ".[test,dev]" 121 | ``` 122 | 123 | Finally, invoke the test suite using pytest: 124 | ``` 125 | pytest test/ 126 | ``` 127 | 128 | ## Building to PyPi 129 | 130 | Follow the instructions above to clone a local copy of this application, activate 131 | the virtual environment, and run the tests. 132 | 133 | Then, build & upload the application with 134 | ``` 135 | rm -rf dist/* 136 | python -m build . 137 | twine upload dist/* 138 | ``` 139 | 140 | ## License 141 | 142 | Distributed under the MIT License. See `LICENSE.txt` for more information. 143 | 144 | ## Contributing 145 | 146 | Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**. 147 | 148 | If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". 149 | Don't forget to give the project a star! Thanks again! 150 | 151 | 1. Fork the Project 152 | 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) 153 | 3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`) 154 | 4. Push to the Branch (`git push origin feature/AmazingFeature`) 155 | 5. Open a Pull Request 156 | 157 | 158 | ## Acknowledgments 159 | * [Best-README-Template](https://github.com/othneildrew/Best-README-Template/) 160 | -------------------------------------------------------------------------------- /bin/update_static_json_file.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin" 4 | export TIMESTAMP=$(date +%s) 5 | birdc show ospf state | parse-bird-link-db - | tail -1 | sed "s/$/ {\"updated\": $TIMESTAMP}/" | jq -s add -c > /var/www/html/api/v1/mesh_ospf_data.json 6 | 7 | 8 | -------------------------------------------------------------------------------- /example_data/ospf_state_output_mar_29_2023.txt: -------------------------------------------------------------------------------- 1 | BIRD 1.6.8 ready. 2 | 3 | area 0.0.0.0 4 | 5 | router 10.10.10.10 6 | distance 61 7 | network 10.70.76.0/24 metric 10 8 | external 10.10.10.10/32 metric 1 9 | external 10.10.10.11/32 metric 1 10 | 11 | router 10.68.29.50 12 | distance 51 13 | router 10.69.7.31 metric 10 14 | stubnet 10.69.29.50/32 metric 0 15 | stubnet 10.68.29.50/32 metric 0 16 | external 10.70.174.0/24 metric 20 17 | 18 | router 10.68.73.125 19 | distance 136 20 | router 10.69.73.25 metric 10 21 | router 10.69.52.83 metric 30 22 | router 10.69.73.25 metric 30 23 | stubnet 10.69.73.125/32 metric 0 24 | stubnet 10.68.73.125/32 metric 0 25 | 26 | router 10.69.0.3 27 | distance 61 28 | router 10.69.2.27 metric 10 29 | router 10.69.2.168 metric 10 30 | stubnet 10.69.0.3/32 metric 0 31 | stubnet 10.68.0.3/32 metric 0 32 | external 10.96.0.192/26 metric 20 33 | 34 | router 10.69.0.10 35 | distance 32 36 | router 10.69.19.34 metric 1 37 | router 10.70.102.6 metric 1 38 | stubnet 10.70.253.38/31 metric 1 39 | stubnet 10.70.103.0/24 metric 1 40 | stubnet 10.70.102.0/30 metric 1 41 | stubnet 10.70.102.4/30 metric 1 42 | stubnet 10.69.0.10/32 metric 0 43 | 44 | router 10.69.0.18 45 | distance 46 46 | router 10.69.45.6 metric 100 47 | router 10.69.44.59 metric 100 48 | router 10.69.44.2 metric 100 49 | router 10.69.48.91 metric 100 50 | router 10.69.44.59 metric 10 51 | stubnet 10.68.0.18/32 metric 0 52 | stubnet 10.69.0.18/32 metric 0 53 | external 10.96.4.128/26 metric 20 54 | 55 | router 10.69.0.48 56 | distance 36 57 | router 10.69.3.20 metric 10 58 | router 10.69.34.61 metric 10 59 | router 10.69.3.20 metric 100 60 | stubnet 10.69.0.48/32 metric 0 61 | stubnet 10.68.0.48/32 metric 0 62 | external 10.96.12.0/26 metric 20 63 | external 199.167.59.91/32 metric 20 64 | 65 | router 10.69.1.15 66 | distance 46 67 | router 10.69.71.3 metric 10 68 | router 10.69.10.84 metric 10 69 | router 10.69.4.43 metric 10 70 | router 10.69.57.12 metric 10 71 | router 10.69.4.43 metric 100 72 | router 10.69.71.3 metric 100 73 | router 10.69.57.12 metric 100 74 | stubnet 10.69.1.15/32 metric 0 75 | stubnet 10.68.1.15/32 metric 0 76 | external 10.96.28.192/26 metric 20 77 | 78 | router 10.69.1.16 79 | distance 38 80 | router 10.69.2.56 metric 10 81 | router 10.69.13.40 metric 10 82 | router 10.69.2.56 metric 100 83 | router 10.69.28.74 metric 100 84 | router 10.69.75.82 metric 100 85 | stubnet 10.69.1.16/32 metric 0 86 | stubnet 10.68.1.16/32 metric 0 87 | external 10.96.29.0/26 metric 20 88 | 89 | router 10.69.1.35 90 | distance 56 91 | router 10.69.8.98 metric 10 92 | router 10.70.89.133 metric 41 93 | stubnet 10.69.1.35/32 metric 10 94 | stubnet 10.70.251.30/32 metric 41 95 | external 10.70.251.28/30 metric 1 96 | external 10.70.253.49/32 metric 1 97 | external 10.96.33.192/26 metric 1 98 | 99 | router 10.69.1.37 100 | distance 76 101 | router 10.69.4.95 metric 10 102 | router 10.69.1.56 metric 100 103 | router 10.69.4.95 metric 100 104 | router 10.69.3.37 metric 100 105 | stubnet 10.69.1.37/32 metric 0 106 | stubnet 10.68.1.37/32 metric 0 107 | external 10.96.34.64/26 metric 20 108 | 109 | router 10.69.1.38 110 | distance 51 111 | router 10.69.41.181 metric 10 112 | router 10.69.7.31 metric 10 113 | router 10.69.41.81 metric 100 114 | stubnet 10.69.1.38/32 metric 0 115 | stubnet 10.68.1.38/32 metric 0 116 | external 10.96.34.128/26 metric 20 117 | 118 | router 10.69.1.46 119 | distance 61 120 | router 10.69.2.27 metric 10 121 | router 10.69.2.70 metric 100 122 | stubnet 10.69.1.46/32 metric 0 123 | stubnet 10.68.1.46/32 metric 0 124 | external 10.96.36.128/26 metric 20 125 | 126 | router 10.69.1.47 127 | distance 33 128 | router 10.69.59.16 metric 10 129 | stubnet 10.69.1.47/32 metric 0 130 | stubnet 10.68.1.47/32 metric 0 131 | external 10.96.36.192/26 metric 20 132 | 133 | router 10.69.1.48 134 | distance 56 135 | router 10.70.251.26 metric 10 136 | router 10.69.78.0 metric 10 137 | stubnet 10.69.1.48/32 metric 0 138 | stubnet 10.68.1.48/32 metric 0 139 | external 10.96.37.0/26 metric 20 140 | 141 | router 10.69.1.49 142 | distance 48 143 | router 10.69.50.14 metric 10 144 | router 10.69.2.54 metric 100 145 | router 10.69.33.96 metric 100 146 | stubnet 10.69.1.49/32 metric 0 147 | stubnet 10.68.1.49/32 metric 0 148 | external 10.96.37.64/26 metric 20 149 | 150 | router 10.69.1.51 151 | distance 71 152 | router 10.69.18.48 metric 10 153 | router 10.69.35.31 metric 100 154 | router 10.69.18.48 metric 100 155 | router 10.70.175.1 metric 100 156 | router 10.69.14.40 metric 100 157 | stubnet 10.69.1.51/32 metric 0 158 | stubnet 10.68.1.51/32 metric 0 159 | external 10.96.37.192/26 metric 20 160 | 161 | router 10.69.1.54 162 | distance 36 163 | router 10.69.4.186 metric 10 164 | router 10.69.34.61 metric 10 165 | stubnet 10.69.1.54/32 metric 0 166 | stubnet 10.68.1.54/32 metric 0 167 | external 10.96.38.128/26 metric 20 168 | 169 | router 10.69.1.55 170 | distance 33 171 | router 10.69.27.16 metric 10 172 | router 10.69.2.20 metric 10 173 | router 10.69.59.16 metric 10 174 | router 10.69.2.19 metric 10 175 | router 10.69.3.96 metric 10 176 | stubnet 10.69.1.55/32 metric 0 177 | stubnet 10.68.1.55/32 metric 0 178 | external 10.96.38.192/26 metric 20 179 | 180 | router 10.69.1.56 181 | distance 66 182 | router 10.69.57.12 metric 10 183 | router 10.69.4.95 metric 100 184 | router 10.69.1.37 metric 100 185 | router 10.69.3.37 metric 100 186 | stubnet 10.69.1.56/32 metric 0 187 | stubnet 10.68.1.56/32 metric 0 188 | external 10.96.39.0/26 metric 20 189 | 190 | router 10.69.1.58 191 | distance 38 192 | router 10.69.13.40 metric 10 193 | stubnet 10.69.1.58/32 metric 0 194 | stubnet 10.68.1.58/32 metric 0 195 | external 10.96.39.128/26 metric 20 196 | 197 | router 10.69.1.59 198 | distance 33 199 | router 10.69.2.92 metric 80 200 | router 10.69.1.159 metric 80 201 | router 10.69.59.16 metric 80 202 | router 10.69.2.92 metric 100 203 | router 10.69.32.33 metric 100 204 | router 10.69.4.73 metric 100 205 | stubnet 10.69.1.59/32 metric 0 206 | stubnet 10.68.1.59/32 metric 0 207 | external 10.96.39.192/26 metric 20 208 | 209 | router 10.69.1.63 210 | distance 61 211 | router 10.69.2.27 metric 10 212 | router 10.69.2.70 metric 100 213 | stubnet 10.69.1.63/32 metric 0 214 | stubnet 10.68.1.63/32 metric 0 215 | external 10.96.40.192/26 metric 20 216 | 217 | router 10.69.1.65 218 | distance 38 219 | router 10.69.13.40 metric 10 220 | router 10.69.2.74 metric 100 221 | router 10.69.3.87 metric 100 222 | stubnet 10.69.1.65/32 metric 0 223 | stubnet 10.68.1.65/32 metric 0 224 | external 10.96.41.64/26 metric 20 225 | external 199.170.132.92/32 metric 20 226 | 227 | router 10.69.1.66 228 | distance 66 229 | router 10.69.2.95 metric 10 230 | router 10.69.55.81 metric 100 231 | router 10.69.2.95 metric 100 232 | stubnet 10.69.1.66/32 metric 0 233 | stubnet 10.68.1.66/32 metric 0 234 | external 10.96.41.128/26 metric 20 235 | 236 | router 10.69.1.68 237 | distance 41 238 | router 10.69.19.34 metric 10 239 | stubnet 10.69.1.68/32 metric 0 240 | stubnet 10.68.1.68/32 metric 0 241 | external 10.96.42.0/26 metric 20 242 | 243 | router 10.69.1.69 244 | distance 86 245 | router 10.69.36.6 metric 10 246 | router 10.69.59.33 metric 100 247 | router 10.69.36.6 metric 100 248 | stubnet 10.69.1.69/32 metric 0 249 | stubnet 10.68.1.69/32 metric 0 250 | external 10.96.42.64/26 metric 20 251 | 252 | router 10.69.1.74 253 | distance 46 254 | router 10.69.73.98 metric 10 255 | router 10.69.72.50 metric 100 256 | router 10.69.2.10 metric 100 257 | router 10.69.79.76 metric 100 258 | router 10.69.73.98 metric 100 259 | router 10.69.74.65 metric 100 260 | router 10.69.78.94 metric 100 261 | router 10.69.79.85 metric 100 262 | stubnet 10.69.1.74/32 metric 0 263 | stubnet 10.68.1.74/32 metric 0 264 | external 10.96.43.128/26 metric 20 265 | 266 | router 10.69.1.75 267 | distance 26 268 | router 10.69.66.23 metric 10 269 | router 10.69.7.13 metric 10 270 | router 10.69.66.22 metric 100 271 | router 10.69.66.23 metric 100 272 | router 10.69.2.85 metric 100 273 | router 10.69.33.0 metric 100 274 | router 10.69.4.98 metric 100 275 | router 10.69.4.94 metric 100 276 | router 10.69.33.54 metric 100 277 | stubnet 10.69.1.75/32 metric 0 278 | stubnet 10.68.1.75/32 metric 0 279 | external 10.96.43.192/26 metric 20 280 | 281 | router 10.69.1.76 282 | distance 38 283 | router 10.69.13.40 metric 10 284 | router 10.69.44.62 metric 100 285 | stubnet 10.69.1.76/32 metric 0 286 | stubnet 10.68.1.76/32 metric 0 287 | external 10.96.44.0/26 metric 20 288 | 289 | router 10.69.1.77 290 | distance 36 291 | router 10.69.1.85 metric 200 292 | router 10.70.177.5 metric 1 293 | router 10.70.251.22 metric 10 294 | router 10.69.34.61 metric 10 295 | stubnet 10.68.1.77/32 metric 0 296 | stubnet 10.70.177.1/32 metric 0 297 | stubnet 10.69.1.77/32 metric 0 298 | external 10.70.177.128/25 metric 20 299 | external 10.96.44.64/26 metric 20 300 | external 199.170.132.82/32 metric 20 301 | 302 | router 10.69.1.78 303 | distance 70 304 | router 10.69.77.89 metric 10 305 | router 10.69.77.89 metric 100 306 | router 10.69.41.16 metric 100 307 | router 10.69.60.71 metric 100 308 | router 10.69.2.69 metric 100 309 | stubnet 10.69.1.78/32 metric 0 310 | stubnet 10.68.1.78/32 metric 0 311 | external 10.96.44.128/26 metric 20 312 | 313 | router 10.69.1.80 314 | distance 38 315 | router 10.69.13.40 metric 10 316 | router 10.69.2.74 metric 100 317 | stubnet 10.69.1.80/32 metric 0 318 | stubnet 10.68.1.80/32 metric 0 319 | external 10.96.45.0/26 metric 20 320 | 321 | router 10.69.1.81 322 | distance 36 323 | router 10.69.34.61 metric 10 324 | stubnet 10.69.1.81/32 metric 0 325 | stubnet 10.68.1.81/32 metric 0 326 | external 10.96.45.64/26 metric 20 327 | 328 | router 10.69.1.84 329 | distance 48 330 | router 10.69.50.14 metric 10 331 | router 10.69.6.72 metric 100 332 | router 10.69.21.1 metric 100 333 | router 10.69.1.88 metric 100 334 | stubnet 10.69.1.84/32 metric 0 335 | stubnet 10.68.1.84/32 metric 0 336 | external 10.96.46.0/26 metric 20 337 | 338 | router 10.69.1.85 339 | distance 36 340 | router 10.69.34.61 metric 50 341 | router 10.69.1.77 metric 200 342 | stubnet 10.69.1.85/32 metric 0 343 | stubnet 10.68.1.85/32 metric 0 344 | external 10.96.46.64/26 metric 20 345 | 346 | router 10.69.1.86 347 | distance 38 348 | router 10.69.13.40 metric 10 349 | stubnet 10.69.1.86/32 metric 0 350 | stubnet 10.68.1.86/32 metric 0 351 | external 10.96.46.128/26 metric 20 352 | 353 | router 10.69.1.87 354 | distance 33 355 | router 10.69.2.21 metric 10 356 | router 10.69.59.16 metric 10 357 | router 10.69.2.21 metric 100 358 | router 10.69.26.47 metric 100 359 | stubnet 10.69.1.87/32 metric 0 360 | stubnet 10.68.1.87/32 metric 0 361 | external 10.96.46.192/26 metric 20 362 | 363 | router 10.69.1.88 364 | distance 48 365 | router 10.69.4.21 metric 10 366 | router 10.69.50.90 metric 10 367 | router 10.69.2.75 metric 10 368 | router 10.69.50.14 metric 10 369 | router 10.69.2.75 metric 100 370 | router 10.69.4.21 metric 100 371 | router 10.69.50.90 metric 100 372 | router 10.69.1.84 metric 100 373 | stubnet 10.69.1.88/32 metric 0 374 | stubnet 10.68.1.88/32 metric 0 375 | external 10.96.47.0/26 metric 20 376 | 377 | router 10.69.1.89 378 | distance 38 379 | router 10.69.4.40 metric 10 380 | router 10.69.13.40 metric 10 381 | router 10.69.4.40 metric 100 382 | stubnet 10.69.1.89/32 metric 0 383 | stubnet 10.68.1.89/32 metric 0 384 | external 10.96.47.64/26 metric 20 385 | 386 | router 10.69.1.90 387 | distance 48 388 | router 10.69.3.47 metric 10 389 | router 10.69.74.89 metric 10 390 | router 10.69.3.47 metric 100 391 | stubnet 10.69.1.90/32 metric 0 392 | stubnet 10.68.1.90/32 metric 0 393 | external 10.96.47.128/26 metric 20 394 | 395 | router 10.69.1.93 396 | distance 53 397 | router 10.69.27.16 metric 10 398 | router 10.69.27.16 metric 100 399 | stubnet 10.69.1.93/32 metric 0 400 | stubnet 10.68.1.93/32 metric 0 401 | external 10.96.48.64/26 metric 20 402 | 403 | router 10.69.1.96 404 | distance 26 405 | router 10.69.7.13 metric 10 406 | stubnet 10.69.1.96/32 metric 0 407 | stubnet 10.68.1.96/32 metric 0 408 | external 10.96.49.0/26 metric 20 409 | 410 | router 10.69.1.97 411 | distance 48 412 | router 10.69.79.97 metric 10 413 | router 10.69.79.97 metric 100 414 | stubnet 10.69.1.97/32 metric 0 415 | stubnet 10.68.1.97/32 metric 0 416 | external 10.96.49.64/26 metric 20 417 | 418 | router 10.69.1.99 419 | distance 33 420 | router 10.69.59.16 metric 10 421 | router 10.69.54.25 metric 100 422 | stubnet 10.69.1.99/32 metric 0 423 | stubnet 10.68.1.99/32 metric 0 424 | external 10.96.49.192/26 metric 20 425 | 426 | router 10.69.1.159 427 | distance 48 428 | router 10.69.1.59 metric 10 429 | router 10.69.26.47 metric 10 430 | stubnet 10.69.1.159/32 metric 0 431 | 432 | router 10.69.2.2 433 | distance 43 434 | router 10.69.4.56 metric 10 435 | router 10.69.36.7 metric 10 436 | router 10.69.26.146 metric 10 437 | router 10.69.26.46 metric 100 438 | router 10.69.36.7 metric 100 439 | router 10.69.41.53 metric 100 440 | router 10.69.11.59 metric 100 441 | stubnet 10.69.2.2/32 metric 0 442 | stubnet 10.68.2.2/32 metric 0 443 | external 10.96.50.128/26 metric 20 444 | 445 | router 10.69.2.3 446 | distance 38 447 | router 10.69.4.20 metric 10 448 | router 10.69.13.40 metric 10 449 | router 10.69.4.20 metric 100 450 | stubnet 10.69.2.3/32 metric 0 451 | stubnet 10.68.2.3/32 metric 0 452 | external 10.96.50.192/26 metric 20 453 | 454 | router 10.69.2.5 455 | distance 33 456 | router 10.69.59.16 metric 10 457 | stubnet 10.69.2.5/32 metric 0 458 | stubnet 10.68.2.5/32 metric 0 459 | external 10.96.51.64/26 metric 20 460 | 461 | router 10.69.2.6 462 | distance 33 463 | router 10.69.59.16 metric 10 464 | router 10.69.2.184 metric 10 465 | router 10.69.75.3 metric 100 466 | stubnet 10.69.2.6/32 metric 0 467 | stubnet 10.68.2.6/32 metric 0 468 | external 10.96.51.128/26 metric 20 469 | 470 | router 10.69.2.8 471 | distance 43 472 | router 10.69.79.12 metric 10 473 | router 10.69.79.12 metric 100 474 | router 10.69.3.62 metric 100 475 | router 10.69.2.9 metric 100 476 | stubnet 10.69.2.8/32 metric 0 477 | stubnet 10.68.2.8/32 metric 0 478 | external 10.96.52.0/26 metric 20 479 | 480 | router 10.69.2.9 481 | distance 133 482 | router 10.69.3.62 metric 100 483 | router 10.69.3.64 metric 100 484 | router 10.69.2.8 metric 100 485 | stubnet 10.69.2.9/32 metric 0 486 | stubnet 10.68.2.9/32 metric 0 487 | external 10.96.52.64/26 metric 20 488 | 489 | router 10.69.2.10 490 | distance 53 491 | router 10.69.79.85 metric 10 492 | router 10.69.74.65 metric 100 493 | router 10.69.73.98 metric 100 494 | router 10.69.1.74 metric 100 495 | router 10.69.72.50 metric 100 496 | router 10.69.79.76 metric 100 497 | router 10.69.79.59 metric 100 498 | router 10.69.78.94 metric 100 499 | router 10.69.79.85 metric 100 500 | stubnet 10.69.2.10/32 metric 0 501 | stubnet 10.68.2.10/32 metric 0 502 | external 10.96.52.128/26 metric 20 503 | 504 | router 10.69.2.11 505 | distance 46 506 | router 10.69.40.62 metric 10 507 | router 10.69.40.62 metric 100 508 | stubnet 10.69.2.11/32 metric 0 509 | stubnet 10.68.2.11/32 metric 0 510 | external 10.96.52.192/26 metric 20 511 | 512 | router 10.69.2.12 513 | distance 38 514 | router 10.69.4.61 metric 10 515 | router 10.69.44.33 metric 10 516 | router 10.69.13.40 metric 10 517 | router 10.69.4.61 metric 100 518 | router 10.69.44.33 metric 100 519 | router 10.69.2.53 metric 100 520 | router 10.69.75.82 metric 100 521 | router 10.69.29.59 metric 100 522 | stubnet 10.69.2.12/32 metric 0 523 | stubnet 10.68.2.12/32 metric 0 524 | external 10.96.53.0/26 metric 20 525 | 526 | router 10.69.2.13 527 | distance 38 528 | router 10.69.13.40 metric 10 529 | stubnet 10.69.2.13/32 metric 0 530 | stubnet 10.68.2.13/32 metric 0 531 | external 10.96.53.64/26 metric 20 532 | external 199.170.132.10/32 metric 20 533 | 534 | router 10.69.2.14 535 | distance 43 536 | router 10.69.20.12 metric 10 537 | router 10.69.49.34 metric 100 538 | router 10.69.20.12 metric 100 539 | stubnet 10.69.2.14/32 metric 0 540 | stubnet 10.68.2.14/32 metric 0 541 | external 10.96.53.128/26 metric 20 542 | 543 | router 10.69.2.15 544 | distance 48 545 | router 10.69.75.82 metric 10 546 | router 10.69.75.82 metric 100 547 | router 10.69.3.81 metric 100 548 | stubnet 10.69.2.15/32 metric 0 549 | stubnet 10.68.2.15/32 metric 0 550 | external 10.96.53.192/26 metric 20 551 | 552 | router 10.69.2.16 553 | distance 91 554 | router 10.69.2.63 metric 10 555 | router 10.69.4.7 metric 10 556 | stubnet 10.69.2.16/32 metric 0 557 | stubnet 10.68.2.16/32 metric 0 558 | external 10.96.54.0/26 metric 20 559 | 560 | router 10.69.2.17 561 | distance 26 562 | router 10.69.7.13 metric 10 563 | stubnet 10.69.2.17/32 metric 0 564 | stubnet 10.68.2.17/32 metric 0 565 | external 10.96.54.64/26 metric 20 566 | 567 | router 10.69.2.19 568 | distance 33 569 | router 10.69.2.59 metric 10 570 | router 10.69.1.55 metric 10 571 | router 10.69.59.16 metric 10 572 | router 10.69.79.85 metric 10 573 | router 10.69.2.59 metric 100 574 | router 10.69.79.85 metric 100 575 | router 10.69.78.94 metric 100 576 | stubnet 10.69.2.19/32 metric 0 577 | stubnet 10.68.2.19/32 metric 0 578 | external 10.96.54.192/26 metric 20 579 | 580 | router 10.69.2.20 581 | distance 43 582 | router 10.69.1.55 metric 10 583 | router 10.69.4.2 metric 10 584 | router 10.69.68.45 metric 10 585 | router 10.69.3.96 metric 10 586 | router 10.69.4.2 metric 100 587 | router 10.69.68.45 metric 100 588 | router 10.69.70.7 metric 100 589 | stubnet 10.69.2.20/32 metric 0 590 | stubnet 10.68.2.20/32 metric 0 591 | external 10.96.55.0/26 metric 20 592 | 593 | router 10.69.2.21 594 | distance 43 595 | router 10.69.1.87 metric 100 596 | router 10.69.1.87 metric 10 597 | stubnet 10.68.2.21/32 metric 0 598 | stubnet 10.69.2.21/32 metric 0 599 | external 10.96.55.64/26 metric 20 600 | 601 | router 10.69.2.22 602 | distance 38 603 | router 10.69.3.6 metric 10 604 | router 10.69.13.40 metric 10 605 | router 10.69.3.6 metric 100 606 | router 10.69.3.51 metric 100 607 | stubnet 10.69.2.22/32 metric 0 608 | stubnet 10.68.2.22/32 metric 0 609 | external 10.96.55.128/26 metric 20 610 | 611 | router 10.69.2.23 612 | distance 36 613 | router 10.69.51.51 metric 10 614 | router 10.69.51.51 metric 100 615 | router 10.69.44.80 metric 100 616 | router 10.69.78.25 metric 100 617 | stubnet 10.69.2.23/32 metric 0 618 | stubnet 10.68.2.23/32 metric 0 619 | external 10.96.55.192/26 metric 20 620 | 621 | router 10.69.2.24 622 | distance 33 623 | router 10.69.59.16 metric 10 624 | router 10.69.54.25 metric 100 625 | stubnet 10.69.2.24/32 metric 0 626 | stubnet 10.68.2.24/32 metric 0 627 | external 10.96.56.0/26 metric 20 628 | 629 | router 10.69.2.27 630 | distance 51 631 | router 10.69.4.226 metric 50 632 | router 10.69.7.13 metric 100 633 | router 10.69.59.165 metric 50 634 | router 10.69.19.34 metric 20 635 | router 10.69.3.63 metric 50 636 | router 10.69.3.118 metric 50 637 | router 10.69.78.100 metric 50 638 | router 10.69.19.71 metric 25 639 | router 10.69.78.69 metric 10 640 | router 10.69.23.50 metric 10 641 | router 10.69.30.4 metric 10 642 | router 10.69.1.63 metric 10 643 | router 10.69.6.86 metric 10 644 | router 10.69.2.49 metric 10 645 | router 10.69.2.70 metric 10 646 | router 10.69.51.55 metric 10 647 | router 10.69.64.14 metric 10 648 | router 10.69.35.31 metric 10 649 | router 10.69.4.51 metric 10 650 | router 10.69.4.33 metric 10 651 | router 10.69.79.41 metric 10 652 | router 10.69.45.85 metric 10 653 | router 10.69.1.46 metric 10 654 | router 10.69.4.90 metric 10 655 | router 10.69.4.7 metric 10 656 | router 10.69.45.4 metric 10 657 | router 10.69.30.37 metric 10 658 | router 10.69.36.54 metric 10 659 | router 10.69.72.32 metric 10 660 | router 10.69.24.41 metric 10 661 | router 10.69.18.48 metric 10 662 | router 10.69.4.64 metric 10 663 | router 10.69.67.91 metric 10 664 | router 10.69.0.3 metric 10 665 | router 10.69.2.83 metric 10 666 | router 10.69.63.46 metric 10 667 | router 10.69.15.67 metric 10 668 | network 10.70.76.0/24 metric 10 669 | stubnet 10.70.72.1/32 metric 0 670 | stubnet 10.70.71.2/32 metric 0 671 | stubnet 10.70.72.1/32 metric 0 672 | stubnet 10.70.251.17/32 metric 0 673 | stubnet 10.70.72.1/32 metric 0 674 | stubnet 10.70.72.1/32 metric 0 675 | stubnet 10.70.72.1/32 metric 0 676 | stubnet 10.70.253.21/32 metric 0 677 | stubnet 10.70.72.0/24 metric 10 678 | stubnet 10.70.71.130/32 metric 0 679 | stubnet 10.69.2.27/32 metric 0 680 | external 0.0.0.0/0 metric 1 681 | external 10.10.10.100/32 metric 20 682 | external 10.42.42.0/25 metric 20 683 | external 10.42.43.0/24 metric 20 684 | external 10.70.49.0/24 metric 20 685 | external 10.70.71.9/32 metric 20 686 | external 10.70.71.11/32 metric 20 687 | external 10.70.71.13/32 metric 20 688 | external 10.70.71.24/30 metric 20 689 | external 10.70.71.25/32 metric 20 690 | external 10.70.71.30/31 metric 20 691 | external 10.70.71.32/31 metric 20 692 | external 10.70.71.36/31 metric 20 693 | external 10.70.73.0/24 metric 20 694 | external 10.70.74.0/24 metric 20 695 | external 10.70.112.0/24 metric 20 696 | external 10.70.252.0/28 metric 20 697 | external 10.70.253.6/31 metric 20 698 | external 192.168.42.0/24 metric 20 699 | external 199.167.59.4/32 metric 20 700 | external 199.167.59.5/32 metric 20 701 | external 199.167.59.6/32 metric 20 702 | external 199.167.59.8/32 metric 20 703 | external 199.167.59.10/32 metric 20 704 | external 199.167.59.11/32 metric 20 705 | external 199.170.132.240/28 metric 20 706 | external 208.68.5.3/32 metric 20 707 | 708 | router 10.69.2.28 709 | distance 36 710 | router 10.69.34.61 metric 10 711 | router 10.69.45.30 metric 100 712 | stubnet 10.69.2.28/32 metric 0 713 | stubnet 10.68.2.28/32 metric 0 714 | external 10.96.57.0/26 metric 20 715 | 716 | router 10.69.2.33 717 | distance 38 718 | router 10.69.13.40 metric 10 719 | stubnet 10.69.2.33/32 metric 0 720 | stubnet 10.68.2.33/32 metric 0 721 | external 10.96.58.64/26 metric 20 722 | 723 | router 10.69.2.34 724 | distance 48 725 | router 10.69.34.80 metric 10 726 | router 10.69.34.80 metric 100 727 | stubnet 10.69.2.34/32 metric 0 728 | stubnet 10.68.2.34/32 metric 0 729 | external 10.96.58.128/26 metric 20 730 | 731 | router 10.69.2.35 732 | distance 36 733 | router 10.69.34.61 metric 10 734 | stubnet 10.69.2.35/32 metric 0 735 | stubnet 10.68.2.35/32 metric 0 736 | external 10.96.58.192/26 metric 20 737 | 738 | router 10.69.2.36 739 | distance 36 740 | router 10.69.2.42 metric 10 741 | router 10.69.3.16 metric 10 742 | router 10.69.34.61 metric 10 743 | router 10.69.3.16 metric 100 744 | router 10.69.2.91 metric 100 745 | router 10.69.34.24 metric 100 746 | stubnet 10.69.2.36/32 metric 0 747 | stubnet 10.68.2.36/32 metric 0 748 | external 10.96.59.0/26 metric 20 749 | 750 | router 10.69.2.39 751 | distance 51 752 | router 10.69.31.75 metric 100 753 | router 10.69.14.30 metric 100 754 | router 10.69.24.163 metric 10 755 | stubnet 10.68.2.39/32 metric 0 756 | stubnet 10.69.2.39/32 metric 0 757 | external 10.96.59.192/26 metric 20 758 | 759 | router 10.69.2.42 760 | distance 46 761 | router 10.69.2.36 metric 10 762 | router 10.69.2.91 metric 100 763 | router 10.69.34.24 metric 100 764 | router 10.69.3.16 metric 100 765 | router 10.69.68.33 metric 100 766 | router 10.69.51.34 metric 100 767 | stubnet 10.69.2.42/32 metric 0 768 | stubnet 10.68.2.42/32 metric 0 769 | external 10.96.60.128/26 metric 20 770 | 771 | router 10.69.2.43 772 | distance 75 773 | router 10.69.78.0 metric 10 774 | router 10.69.2.78 metric 100 775 | stubnet 10.69.2.43/32 metric 0 776 | stubnet 10.68.2.43/32 metric 0 777 | external 10.96.60.192/26 metric 20 778 | 779 | router 10.69.2.44 780 | distance 36 781 | router 10.69.27.1 metric 10 782 | router 10.69.27.1 metric 100 783 | router 10.69.32.84 metric 100 784 | stubnet 10.69.2.44/32 metric 0 785 | stubnet 10.68.2.44/32 metric 0 786 | external 10.96.61.0/26 metric 20 787 | 788 | router 10.69.2.45 789 | distance 36 790 | router 10.69.27.1 metric 10 791 | router 10.69.27.1 metric 100 792 | stubnet 10.69.2.45/32 metric 0 793 | stubnet 10.68.2.45/32 metric 0 794 | external 10.96.61.64/26 metric 20 795 | 796 | router 10.69.2.47 797 | distance 33 798 | router 10.69.59.16 metric 10 799 | router 10.69.28.27 metric 100 800 | router 10.69.70.37 metric 100 801 | stubnet 10.69.2.47/32 metric 0 802 | stubnet 10.68.2.47/32 metric 0 803 | external 10.96.61.192/26 metric 20 804 | 805 | router 10.69.2.48 806 | distance 86 807 | router 10.69.5.18 metric 10 808 | router 10.69.19.71 metric 10 809 | router 10.69.5.18 metric 100 810 | router 10.69.4.64 metric 100 811 | stubnet 10.69.2.48/32 metric 0 812 | stubnet 10.68.2.48/32 metric 0 813 | external 10.96.62.0/26 metric 20 814 | 815 | router 10.69.2.49 816 | distance 61 817 | router 10.69.2.27 metric 10 818 | router 10.69.79.41 metric 100 819 | router 10.69.14.40 metric 100 820 | router 10.69.4.90 metric 100 821 | router 10.69.35.31 metric 100 822 | router 10.70.175.1 metric 100 823 | router 10.69.18.48 metric 100 824 | stubnet 10.69.2.49/32 metric 0 825 | stubnet 10.68.2.49/32 metric 0 826 | external 10.96.62.64/26 metric 20 827 | 828 | router 10.69.2.50 829 | distance 26 830 | router 10.69.7.13 metric 10 831 | router 10.69.4.98 metric 100 832 | router 10.69.33.0 metric 100 833 | router 10.69.59.89 metric 100 834 | router 10.69.66.23 metric 100 835 | stubnet 10.69.2.50/32 metric 0 836 | stubnet 10.68.2.50/32 metric 0 837 | external 10.96.62.128/26 metric 20 838 | 839 | router 10.69.2.52 840 | distance 41 841 | router 10.69.19.34 metric 10 842 | stubnet 10.69.2.52/32 metric 0 843 | stubnet 10.68.2.52/32 metric 0 844 | external 10.96.63.0/26 metric 20 845 | 846 | router 10.69.2.53 847 | distance 58 848 | router 10.69.44.33 metric 10 849 | router 10.69.44.33 metric 100 850 | router 10.69.75.82 metric 100 851 | router 10.69.3.81 metric 100 852 | router 10.69.2.12 metric 100 853 | router 10.69.28.74 metric 100 854 | stubnet 10.69.2.53/32 metric 0 855 | stubnet 10.68.2.53/32 metric 0 856 | external 10.96.63.64/26 metric 20 857 | 858 | router 10.69.2.54 859 | distance 38 860 | router 10.69.1.49 metric 100 861 | router 10.69.13.40 metric 10 862 | stubnet 10.68.2.54/32 metric 0 863 | stubnet 10.69.2.54/32 metric 0 864 | external 10.96.63.128/26 metric 20 865 | 866 | router 10.69.2.56 867 | distance 33 868 | router 10.69.1.16 metric 10 869 | router 10.69.59.16 metric 10 870 | router 10.69.1.16 metric 100 871 | router 10.69.4.61 metric 100 872 | stubnet 10.69.2.56/32 metric 0 873 | stubnet 10.68.2.56/32 metric 0 874 | external 10.96.64.0/26 metric 20 875 | 876 | router 10.69.2.58 877 | distance 38 878 | router 10.69.13.40 metric 10 879 | router 10.69.3.13 metric 100 880 | router 10.69.42.14 metric 100 881 | stubnet 10.69.2.58/32 metric 0 882 | stubnet 10.68.2.58/32 metric 0 883 | external 10.96.64.128/26 metric 20 884 | 885 | router 10.69.2.59 886 | distance 43 887 | router 10.69.2.19 metric 10 888 | router 10.69.2.19 metric 100 889 | router 10.69.4.58 metric 100 890 | stubnet 10.69.2.59/32 metric 0 891 | stubnet 10.68.2.59/32 metric 0 892 | external 10.96.64.192/26 metric 20 893 | 894 | router 10.69.2.60 895 | distance 38 896 | router 10.69.13.40 metric 10 897 | stubnet 10.69.2.60/32 metric 0 898 | stubnet 10.68.2.60/32 metric 0 899 | external 10.96.65.0/26 metric 20 900 | 901 | router 10.69.2.62 902 | distance 48 903 | router 10.69.32.33 metric 10 904 | router 10.69.3.79 metric 100 905 | router 10.69.32.33 metric 100 906 | router 10.69.2.92 metric 100 907 | router 10.69.4.73 metric 100 908 | router 10.69.50.20 metric 100 909 | stubnet 10.69.2.62/32 metric 0 910 | stubnet 10.68.2.62/32 metric 0 911 | external 10.96.65.128/26 metric 20 912 | 913 | router 10.69.2.63 914 | distance 101 915 | router 10.69.2.16 metric 10 916 | router 10.69.3.69 metric 100 917 | router 10.69.3.8 metric 100 918 | stubnet 10.69.2.63/32 metric 0 919 | stubnet 10.68.2.63/32 metric 0 920 | external 10.96.65.192/26 metric 20 921 | 922 | router 10.69.2.65 923 | distance 33 924 | router 10.69.59.16 metric 10 925 | router 10.69.59.33 metric 60 926 | stubnet 10.70.253.13/32 metric 0 927 | stubnet 10.69.2.65/32 metric 0 928 | stubnet 10.68.2.65/32 metric 0 929 | external 10.96.66.64/26 metric 20 930 | 931 | router 10.69.2.67 932 | distance 33 933 | router 10.69.64.86 metric 10 934 | router 10.69.59.16 metric 10 935 | router 10.69.64.86 metric 100 936 | stubnet 10.69.2.67/32 metric 0 937 | stubnet 10.68.2.67/32 metric 0 938 | external 10.96.66.192/26 metric 20 939 | 940 | router 10.69.2.69 941 | distance 60 942 | router 10.69.22.74 metric 10 943 | router 10.69.15.67 metric 100 944 | router 10.69.1.78 metric 100 945 | router 10.69.77.89 metric 100 946 | router 10.69.60.71 metric 100 947 | stubnet 10.69.2.69/32 metric 0 948 | stubnet 10.68.2.69/32 metric 0 949 | external 10.96.67.64/26 metric 20 950 | 951 | router 10.69.2.70 952 | distance 61 953 | router 10.69.2.27 metric 10 954 | router 10.69.1.46 metric 100 955 | router 10.69.1.63 metric 100 956 | stubnet 10.69.2.70/32 metric 0 957 | stubnet 10.68.2.70/32 metric 0 958 | external 10.96.67.128/26 metric 20 959 | 960 | router 10.69.2.72 961 | distance 48 962 | router 10.69.6.64 metric 100 963 | router 10.69.6.64 metric 10 964 | stubnet 10.68.2.72/32 metric 0 965 | stubnet 10.69.2.72/32 metric 0 966 | external 10.96.68.0/26 metric 20 967 | 968 | router 10.69.2.74 969 | distance 38 970 | router 10.69.13.40 metric 10 971 | router 10.69.1.65 metric 100 972 | router 10.69.1.80 metric 100 973 | stubnet 10.69.2.74/32 metric 0 974 | stubnet 10.68.2.74/32 metric 0 975 | external 10.96.68.128/26 metric 20 976 | 977 | router 10.69.2.75 978 | distance 58 979 | router 10.69.1.88 metric 100 980 | router 10.69.50.90 metric 100 981 | router 10.69.4.21 metric 100 982 | router 10.69.1.88 metric 10 983 | stubnet 10.68.2.75/32 metric 0 984 | stubnet 10.69.2.75/32 metric 0 985 | external 10.96.68.192/26 metric 20 986 | 987 | router 10.69.2.76 988 | distance 48 989 | router 10.69.74.89 metric 10 990 | stubnet 10.68.2.76/32 metric 0 991 | stubnet 10.69.2.76/32 metric 0 992 | external 10.96.69.0/26 metric 20 993 | 994 | router 10.69.2.78 995 | distance 75 996 | router 10.69.78.0 metric 10 997 | router 10.69.2.43 metric 100 998 | stubnet 10.69.2.78/32 metric 0 999 | stubnet 10.68.2.78/32 metric 0 1000 | external 10.96.69.128/26 metric 20 1001 | 1002 | router 10.69.2.79 1003 | distance 36 1004 | router 10.69.4.9 metric 10 1005 | router 10.69.34.61 metric 10 1006 | router 10.69.4.9 metric 100 1007 | router 10.69.34.24 metric 100 1008 | router 10.69.51.34 metric 100 1009 | router 10.69.53.44 metric 100 1010 | stubnet 10.69.2.79/32 metric 0 1011 | stubnet 10.68.2.79/32 metric 0 1012 | external 10.96.69.192/26 metric 20 1013 | 1014 | router 10.69.2.82 1015 | distance 26 1016 | router 10.69.7.13 metric 10 1017 | router 10.69.24.81 metric 100 1018 | router 10.69.4.3 metric 100 1019 | stubnet 10.69.2.82/32 metric 0 1020 | stubnet 10.68.2.82/32 metric 0 1021 | external 10.96.70.128/26 metric 20 1022 | 1023 | router 10.69.2.83 1024 | distance 61 1025 | router 10.69.2.27 metric 10 1026 | router 10.69.4.51 metric 100 1027 | router 10.69.14.40 metric 100 1028 | stubnet 10.69.2.83/32 metric 0 1029 | stubnet 10.68.2.83/32 metric 0 1030 | external 10.96.70.192/26 metric 20 1031 | external 199.170.132.94/32 metric 20 1032 | 1033 | router 10.69.2.84 1034 | distance 53 1035 | router 10.69.2.184 metric 10 1036 | stubnet 10.69.2.84/32 metric 0 1037 | stubnet 10.68.2.84/32 metric 0 1038 | external 10.96.71.0/26 metric 20 1039 | 1040 | router 10.69.2.85 1041 | distance 36 1042 | router 10.69.66.22 metric 10 1043 | router 10.69.4.98 metric 100 1044 | router 10.69.66.22 metric 100 1045 | router 10.69.1.75 metric 100 1046 | router 10.69.66.23 metric 100 1047 | router 10.69.53.0 metric 100 1048 | stubnet 10.69.2.85/32 metric 0 1049 | stubnet 10.68.2.85/32 metric 0 1050 | external 10.96.71.64/26 metric 20 1051 | 1052 | router 10.69.2.87 1053 | distance 33 1054 | router 10.69.59.16 metric 10 1055 | router 10.69.42.85 metric 100 1056 | router 10.69.74.49 metric 100 1057 | stubnet 10.69.2.87/32 metric 0 1058 | stubnet 10.68.2.87/32 metric 0 1059 | external 10.96.71.192/26 metric 20 1060 | 1061 | router 10.69.2.89 1062 | distance 26 1063 | router 10.69.7.13 metric 10 1064 | router 10.69.76.32 metric 100 1065 | stubnet 10.69.2.89/32 metric 0 1066 | stubnet 10.68.2.89/32 metric 0 1067 | external 10.96.72.64/26 metric 20 1068 | 1069 | router 10.69.2.90 1070 | distance 33 1071 | router 10.69.59.16 metric 10 1072 | router 10.69.13.50 metric 100 1073 | stubnet 10.69.2.90/32 metric 0 1074 | stubnet 10.68.2.90/32 metric 0 1075 | external 10.96.72.128/26 metric 20 1076 | 1077 | router 10.69.2.91 1078 | distance 36 1079 | router 10.69.34.61 metric 10 1080 | router 10.69.34.24 metric 100 1081 | router 10.69.2.42 metric 100 1082 | router 10.69.3.16 metric 100 1083 | router 10.69.2.36 metric 100 1084 | stubnet 10.69.2.91/32 metric 0 1085 | stubnet 10.68.2.91/32 metric 0 1086 | external 10.96.72.192/26 metric 20 1087 | 1088 | router 10.69.2.92 1089 | distance 113 1090 | router 10.69.1.59 metric 100 1091 | router 10.69.3.79 metric 100 1092 | router 10.69.2.62 metric 100 1093 | router 10.69.1.59 metric 10 1094 | stubnet 10.68.2.92/32 metric 0 1095 | stubnet 10.69.2.92/32 metric 0 1096 | external 10.96.73.0/26 metric 20 1097 | 1098 | router 10.69.2.93 1099 | distance 26 1100 | router 10.69.7.13 metric 10 1101 | router 10.69.4.24 metric 100 1102 | stubnet 10.69.2.93/32 metric 0 1103 | stubnet 10.68.2.93/32 metric 0 1104 | external 10.96.73.64/26 metric 20 1105 | 1106 | router 10.69.2.94 1107 | distance 51 1108 | router 10.69.24.163 metric 10 1109 | router 10.69.77.64 metric 10 1110 | stubnet 10.69.2.94/32 metric 0 1111 | stubnet 10.68.2.94/32 metric 0 1112 | external 10.96.73.128/26 metric 20 1113 | 1114 | router 10.69.2.95 1115 | distance 56 1116 | router 10.69.1.66 metric 10 1117 | router 10.69.67.94 metric 10 1118 | router 10.69.4.49 metric 10 1119 | router 10.69.11.67 metric 10 1120 | router 10.69.1.66 metric 100 1121 | router 10.69.67.94 metric 100 1122 | stubnet 10.69.2.95/32 metric 0 1123 | stubnet 10.68.2.95/32 metric 0 1124 | external 10.96.73.192/26 metric 20 1125 | 1126 | router 10.69.2.97 1127 | distance 36 1128 | router 10.69.46.66 metric 10 1129 | router 10.69.34.61 metric 10 1130 | router 10.69.46.66 metric 100 1131 | stubnet 10.69.2.97/32 metric 0 1132 | stubnet 10.68.2.97/32 metric 0 1133 | external 10.96.74.64/26 metric 20 1134 | 1135 | router 10.69.2.99 1136 | distance 33 1137 | router 10.69.59.16 metric 10 1138 | stubnet 10.69.2.99/32 metric 0 1139 | stubnet 10.68.2.99/32 metric 0 1140 | external 10.96.74.192/26 metric 20 1141 | 1142 | router 10.69.2.168 1143 | distance 71 1144 | router 10.69.0.3 metric 10 1145 | stubnet 10.69.2.168/32 metric 0 1146 | stubnet 10.68.2.168/32 metric 0 1147 | external 10.96.67.0/26 metric 20 1148 | 1149 | router 10.69.2.184 1150 | distance 43 1151 | router 10.69.2.6 metric 10 1152 | router 10.69.2.84 metric 10 1153 | stubnet 10.69.2.184/32 metric 0 1154 | stubnet 10.68.2.184/32 metric 0 1155 | 1156 | router 10.69.3.0 1157 | distance 26 1158 | router 10.69.33.54 metric 100 1159 | router 10.69.7.13 metric 10 1160 | stubnet 10.68.3.0/32 metric 0 1161 | stubnet 10.69.3.0/32 metric 0 1162 | external 10.96.75.0/26 metric 20 1163 | 1164 | router 10.69.3.1 1165 | distance 33 1166 | router 10.69.59.16 metric 10 1167 | stubnet 10.69.3.1/32 metric 0 1168 | stubnet 10.68.3.1/32 metric 0 1169 | external 10.96.75.64/26 metric 20 1170 | 1171 | router 10.69.3.2 1172 | distance 33 1173 | router 10.69.59.16 metric 10 1174 | stubnet 10.69.3.2/32 metric 0 1175 | stubnet 10.68.3.2/32 metric 0 1176 | external 10.96.75.128/26 metric 20 1177 | 1178 | router 10.69.3.3 1179 | distance 53 1180 | router 10.69.62.48 metric 10 1181 | router 10.69.19.46 metric 10 1182 | router 10.69.62.48 metric 100 1183 | stubnet 10.69.3.3/32 metric 0 1184 | stubnet 10.68.3.3/32 metric 0 1185 | external 10.96.75.192/26 metric 20 1186 | 1187 | router 10.69.3.4 1188 | distance 41 1189 | router 10.69.19.34 metric 10 1190 | stubnet 10.69.3.4/32 metric 0 1191 | stubnet 10.68.3.4/32 metric 0 1192 | external 10.96.76.0/26 metric 20 1193 | external 199.167.59.97/32 metric 20 1194 | 1195 | router 10.69.3.6 1196 | distance 38 1197 | router 10.69.2.22 metric 10 1198 | router 10.69.13.40 metric 10 1199 | router 10.69.2.22 metric 100 1200 | router 10.69.3.51 metric 100 1201 | router 10.69.15.33 metric 100 1202 | stubnet 10.69.3.6/32 metric 0 1203 | stubnet 10.68.3.6/32 metric 0 1204 | external 10.96.76.128/26 metric 20 1205 | 1206 | router 10.69.3.7 1207 | distance 38 1208 | router 10.69.13.40 metric 10 1209 | stubnet 10.68.3.7/32 metric 0 1210 | stubnet 10.69.3.7/32 metric 0 1211 | external 10.96.76.192/26 metric 20 1212 | 1213 | router 10.69.3.8 1214 | distance 51 1215 | router 10.69.3.69 metric 10 1216 | router 10.69.24.163 metric 10 1217 | router 10.69.3.69 metric 100 1218 | router 10.69.51.55 metric 100 1219 | router 10.69.2.63 metric 100 1220 | stubnet 10.69.3.8/32 metric 0 1221 | stubnet 10.68.3.8/32 metric 0 1222 | external 10.96.77.0/26 metric 20 1223 | 1224 | router 10.69.3.11 1225 | distance 51 1226 | router 10.69.7.31 metric 10 1227 | router 10.69.7.31 metric 100 1228 | stubnet 10.69.3.11/32 metric 0 1229 | stubnet 10.68.3.11/32 metric 0 1230 | external 10.96.77.192/26 metric 20 1231 | 1232 | router 10.69.3.13 1233 | distance 38 1234 | router 10.69.13.40 metric 10 1235 | router 10.69.3.59 metric 10 1236 | router 10.69.3.59 metric 100 1237 | router 10.69.2.58 metric 100 1238 | router 10.69.70.89 metric 100 1239 | stubnet 10.69.3.13/32 metric 0 1240 | stubnet 10.68.3.13/32 metric 0 1241 | external 10.96.78.64/26 metric 20 1242 | 1243 | router 10.69.3.14 1244 | distance 36 1245 | router 10.69.64.50 metric 10 1246 | router 10.69.64.50 metric 100 1247 | router 10.69.33.0 metric 100 1248 | router 10.69.46.81 metric 100 1249 | stubnet 10.69.3.14/32 metric 0 1250 | stubnet 10.68.3.14/32 metric 0 1251 | external 10.96.78.128/26 metric 20 1252 | 1253 | router 10.69.3.16 1254 | distance 46 1255 | router 10.69.2.36 metric 10 1256 | router 10.69.2.36 metric 100 1257 | router 10.69.2.42 metric 100 1258 | router 10.69.2.91 metric 100 1259 | router 10.69.34.24 metric 100 1260 | stubnet 10.69.3.16/32 metric 0 1261 | stubnet 10.68.3.16/32 metric 0 1262 | external 10.96.79.0/26 metric 20 1263 | 1264 | router 10.69.3.17 1265 | distance 31 1266 | router 10.69.3.117 metric 10 1267 | stubnet 10.69.3.17/32 metric 0 1268 | stubnet 10.68.3.17/32 metric 0 1269 | external 10.96.79.64/26 metric 20 1270 | 1271 | router 10.69.3.18 1272 | distance 65 1273 | router 10.69.3.118 metric 10 1274 | stubnet 10.69.3.18/32 metric 0 1275 | stubnet 10.68.3.18/32 metric 0 1276 | external 10.96.79.128/26 metric 20 1277 | 1278 | router 10.69.3.19 1279 | distance 91 1280 | router 10.69.4.7 metric 10 1281 | router 10.69.6.86 metric 100 1282 | router 10.69.30.4 metric 100 1283 | stubnet 10.69.3.19/32 metric 0 1284 | stubnet 10.68.3.19/32 metric 0 1285 | external 10.96.79.192/26 metric 20 1286 | 1287 | router 10.69.3.20 1288 | distance 46 1289 | router 10.69.0.48 metric 10 1290 | router 10.69.0.48 metric 100 1291 | stubnet 10.69.3.20/32 metric 0 1292 | stubnet 10.68.3.20/32 metric 0 1293 | external 10.96.80.0/26 metric 20 1294 | 1295 | router 10.69.3.21 1296 | distance 33 1297 | router 10.69.59.16 metric 10 1298 | stubnet 10.69.3.21/32 metric 0 1299 | stubnet 10.68.3.21/32 metric 0 1300 | external 10.96.80.64/26 metric 20 1301 | 1302 | router 10.69.3.22 1303 | distance 33 1304 | router 10.69.59.16 metric 10 1305 | router 10.69.74.76 metric 100 1306 | stubnet 10.69.3.22/32 metric 0 1307 | stubnet 10.68.3.22/32 metric 0 1308 | external 10.96.80.128/26 metric 20 1309 | 1310 | router 10.69.3.23 1311 | distance 38 1312 | router 10.69.13.40 metric 10 1313 | stubnet 10.69.3.23/32 metric 0 1314 | stubnet 10.70.122.0/24 metric 10 1315 | stubnet 199.167.59.81/32 metric 10 1316 | 1317 | router 10.69.3.25 1318 | distance 33 1319 | router 10.69.59.16 metric 10 1320 | stubnet 10.69.3.25/32 metric 0 1321 | stubnet 10.68.3.25/32 metric 0 1322 | external 10.96.81.64/26 metric 20 1323 | 1324 | router 10.69.3.29 1325 | distance 40 1326 | router 10.69.40.143 metric 10 1327 | router 10.69.3.129 metric 10 1328 | router 10.69.76.74 metric 10 1329 | router 10.69.3.83 metric 10 1330 | stubnet 10.69.3.29/32 metric 0 1331 | stubnet 10.68.3.29/32 metric 0 1332 | external 10.96.82.64/26 metric 20 1333 | 1334 | router 10.69.3.31 1335 | distance 46 1336 | router 10.69.52.83 metric 10 1337 | router 10.69.52.83 metric 100 1338 | router 10.69.73.25 metric 100 1339 | stubnet 10.69.3.31/32 metric 0 1340 | stubnet 10.68.3.31/32 metric 0 1341 | external 10.96.82.192/26 metric 20 1342 | 1343 | router 10.69.3.32 1344 | distance 38 1345 | router 10.69.13.40 metric 10 1346 | stubnet 10.68.3.32/32 metric 0 1347 | stubnet 10.69.3.32/32 metric 0 1348 | external 10.96.83.0/26 metric 20 1349 | 1350 | router 10.69.3.34 1351 | distance 36 1352 | router 10.69.34.61 metric 10 1353 | router 10.69.79.54 metric 100 1354 | stubnet 10.69.3.34/32 metric 0 1355 | stubnet 10.68.3.34/32 metric 0 1356 | external 10.96.83.128/26 metric 20 1357 | 1358 | router 10.69.3.35 1359 | distance 36 1360 | router 10.69.16.35 metric 10 1361 | router 10.69.16.35 metric 100 1362 | router 10.69.26.16 metric 100 1363 | stubnet 10.69.3.35/32 metric 0 1364 | stubnet 10.68.3.35/32 metric 0 1365 | external 10.96.83.192/26 metric 20 1366 | 1367 | router 10.69.3.37 1368 | distance 66 1369 | router 10.69.1.37 metric 100 1370 | router 10.69.1.56 metric 100 1371 | router 10.69.4.95 metric 100 1372 | router 10.69.65.66 metric 100 1373 | router 10.69.57.12 metric 10 1374 | stubnet 10.68.3.37/32 metric 0 1375 | stubnet 10.69.3.37/32 metric 0 1376 | external 10.96.84.64/26 metric 20 1377 | 1378 | router 10.69.3.40 1379 | distance 38 1380 | router 10.69.13.40 metric 10 1381 | router 10.69.70.89 metric 100 1382 | router 10.69.42.14 metric 100 1383 | stubnet 10.69.3.40/32 metric 0 1384 | stubnet 10.68.3.40/32 metric 0 1385 | external 10.96.85.0/26 metric 20 1386 | 1387 | router 10.69.3.41 1388 | distance 33 1389 | router 10.69.59.16 metric 10 1390 | router 10.69.70.7 metric 100 1391 | stubnet 10.69.3.41/32 metric 0 1392 | stubnet 10.68.3.41/32 metric 0 1393 | external 10.96.85.64/26 metric 20 1394 | 1395 | router 10.69.3.44 1396 | distance 66 1397 | router 10.69.57.12 metric 10 1398 | router 10.69.57.12 metric 100 1399 | stubnet 10.69.3.44/32 metric 0 1400 | stubnet 10.68.3.44/32 metric 0 1401 | external 10.96.86.0/26 metric 20 1402 | 1403 | router 10.69.3.47 1404 | distance 58 1405 | router 10.69.1.90 metric 10 1406 | router 10.69.1.90 metric 100 1407 | stubnet 10.69.3.47/32 metric 0 1408 | stubnet 10.68.3.47/32 metric 0 1409 | external 10.96.86.192/26 metric 20 1410 | 1411 | router 10.69.3.50 1412 | distance 101 1413 | router 10.69.13.84 metric 10 1414 | router 10.69.13.84 metric 100 1415 | stubnet 10.69.3.50/32 metric 0 1416 | stubnet 10.68.3.50/32 metric 0 1417 | external 10.96.87.128/26 metric 20 1418 | 1419 | router 10.69.3.51 1420 | distance 38 1421 | router 10.69.13.40 metric 10 1422 | router 10.69.3.6 metric 100 1423 | router 10.69.2.22 metric 100 1424 | stubnet 10.69.3.51/32 metric 0 1425 | stubnet 10.68.3.51/32 metric 0 1426 | external 10.96.87.192/26 metric 20 1427 | 1428 | router 10.69.3.57 1429 | distance 33 1430 | router 10.69.59.16 metric 10 1431 | stubnet 10.69.3.57/32 metric 0 1432 | stubnet 10.68.3.57/32 metric 0 1433 | external 10.96.89.64/26 metric 20 1434 | 1435 | router 10.69.3.58 1436 | distance 33 1437 | router 10.69.4.77 metric 10 1438 | router 10.69.59.16 metric 10 1439 | router 10.69.4.77 metric 100 1440 | stubnet 10.69.3.58/32 metric 0 1441 | stubnet 10.68.3.58/32 metric 0 1442 | external 10.96.89.128/26 metric 20 1443 | 1444 | router 10.69.3.59 1445 | distance 48 1446 | router 10.69.3.13 metric 10 1447 | router 10.69.4.16 metric 100 1448 | router 10.69.3.13 metric 100 1449 | router 10.69.44.62 metric 100 1450 | stubnet 10.69.3.59/32 metric 0 1451 | stubnet 10.68.3.59/32 metric 0 1452 | external 10.96.89.192/26 metric 20 1453 | 1454 | router 10.69.3.61 1455 | distance 56 1456 | router 10.69.45.30 metric 10 1457 | router 10.69.45.30 metric 100 1458 | router 10.69.44.39 metric 100 1459 | router 10.69.44.59 metric 100 1460 | stubnet 10.69.3.61/32 metric 0 1461 | stubnet 10.68.3.61/32 metric 0 1462 | external 10.96.90.64/26 metric 20 1463 | 1464 | router 10.69.3.62 1465 | distance 33 1466 | router 10.69.59.16 metric 10 1467 | router 10.69.3.64 metric 10 1468 | router 10.69.2.9 metric 100 1469 | router 10.69.3.64 metric 100 1470 | router 10.69.79.12 metric 100 1471 | router 10.69.2.8 metric 100 1472 | stubnet 10.69.3.62/32 metric 0 1473 | stubnet 10.68.3.62/32 metric 0 1474 | external 10.96.90.128/26 metric 20 1475 | 1476 | router 10.69.3.63 1477 | distance 101 1478 | router 10.69.2.27 metric 1060 1479 | stubnet 10.70.72.55/32 metric 0 1480 | stubnet 10.69.3.63/32 metric 0 1481 | external 10.70.132.0/24 metric 20 1482 | external 10.70.133.0/24 metric 20 1483 | 1484 | router 10.69.3.64 1485 | distance 43 1486 | router 10.69.3.62 metric 10 1487 | router 10.69.3.62 metric 100 1488 | router 10.69.2.9 metric 100 1489 | router 10.69.54.25 metric 100 1490 | router 10.69.72.52 metric 100 1491 | stubnet 10.69.3.64/32 metric 0 1492 | stubnet 10.68.3.64/32 metric 0 1493 | external 10.96.91.0/26 metric 20 1494 | 1495 | router 10.69.3.65 1496 | distance 26 1497 | router 10.69.7.13 metric 10 1498 | stubnet 10.69.3.65/32 metric 0 1499 | stubnet 10.68.3.65/32 metric 0 1500 | external 10.96.91.64/26 metric 20 1501 | external 199.170.132.39/32 metric 20 1502 | 1503 | router 10.69.3.68 1504 | distance 46 1505 | router 10.69.34.61 metric 100 1506 | router 10.69.50.89 metric 10 1507 | stubnet 10.70.253.56/32 metric 0 1508 | stubnet 10.69.3.68/32 metric 0 1509 | stubnet 10.68.3.68/32 metric 0 1510 | external 10.96.92.0/26 metric 20 1511 | 1512 | router 10.69.3.69 1513 | distance 51 1514 | router 10.69.3.8 metric 10 1515 | router 10.69.24.163 metric 10 1516 | router 10.69.3.8 metric 100 1517 | router 10.69.2.63 metric 100 1518 | stubnet 10.69.3.69/32 metric 0 1519 | stubnet 10.68.3.69/32 metric 0 1520 | external 10.96.92.64/26 metric 20 1521 | 1522 | router 10.69.3.70 1523 | distance 38 1524 | router 10.69.13.40 metric 10 1525 | stubnet 10.69.3.70/32 metric 0 1526 | stubnet 10.68.3.70/32 metric 0 1527 | external 10.96.92.128/26 metric 20 1528 | 1529 | router 10.69.3.72 1530 | distance 48 1531 | router 10.69.50.14 metric 10 1532 | stubnet 10.69.3.72/32 metric 0 1533 | stubnet 10.68.3.72/32 metric 0 1534 | external 10.96.93.0/26 metric 20 1535 | 1536 | router 10.69.3.74 1537 | distance 51 1538 | router 10.69.24.163 metric 10 1539 | stubnet 10.69.3.74/32 metric 0 1540 | stubnet 10.68.3.74/32 metric 0 1541 | external 10.96.93.128/26 metric 20 1542 | 1543 | router 10.69.3.75 1544 | distance 38 1545 | router 10.69.13.40 metric 10 1546 | stubnet 10.69.3.75/32 metric 0 1547 | stubnet 10.68.3.75/32 metric 0 1548 | external 10.96.93.192/26 metric 20 1549 | 1550 | router 10.69.3.78 1551 | distance 51 1552 | router 10.69.24.163 metric 10 1553 | router 199.167.59.98 metric 100 1554 | stubnet 10.69.3.78/32 metric 0 1555 | stubnet 10.68.3.78/32 metric 0 1556 | external 10.96.94.128/26 metric 20 1557 | 1558 | router 10.69.3.79 1559 | distance 48 1560 | router 10.69.32.33 metric 10 1561 | router 10.69.2.62 metric 100 1562 | router 10.69.32.33 metric 100 1563 | router 10.69.2.92 metric 100 1564 | router 10.69.26.47 metric 100 1565 | router 10.69.50.20 metric 100 1566 | stubnet 10.69.3.79/32 metric 0 1567 | stubnet 10.68.3.79/32 metric 0 1568 | external 10.96.94.192/26 metric 20 1569 | 1570 | router 10.69.3.80 1571 | distance 43 1572 | router 10.69.24.82 metric 100 1573 | router 10.69.24.82 metric 10 1574 | stubnet 10.68.3.80/32 metric 0 1575 | stubnet 10.69.3.80/32 metric 0 1576 | external 10.96.95.0/26 metric 20 1577 | 1578 | router 10.69.3.81 1579 | distance 48 1580 | router 10.69.75.82 metric 10 1581 | router 10.69.75.82 metric 100 1582 | router 10.69.2.53 metric 100 1583 | router 10.69.44.33 metric 100 1584 | router 10.69.2.15 metric 100 1585 | stubnet 10.69.3.81/32 metric 0 1586 | stubnet 10.68.3.81/32 metric 0 1587 | external 10.96.95.64/26 metric 20 1588 | 1589 | router 10.69.3.83 1590 | distance 50 1591 | router 10.69.4.49 metric 10 1592 | router 10.69.3.183 metric 10 1593 | router 10.69.3.29 metric 10 1594 | router 10.69.4.49 metric 100 1595 | stubnet 10.69.3.83/32 metric 0 1596 | stubnet 10.68.3.83/32 metric 0 1597 | external 10.96.95.192/26 metric 20 1598 | 1599 | router 10.69.3.85 1600 | distance 33 1601 | router 10.69.59.16 metric 10 1602 | router 10.69.50.20 metric 100 1603 | router 10.69.4.40 metric 100 1604 | router 10.69.42.32 metric 100 1605 | stubnet 10.69.3.85/32 metric 0 1606 | stubnet 10.68.3.85/32 metric 0 1607 | external 10.96.96.64/26 metric 20 1608 | 1609 | router 10.69.3.87 1610 | distance 38 1611 | router 10.69.13.40 metric 10 1612 | router 10.69.79.97 metric 100 1613 | router 10.69.1.65 metric 100 1614 | stubnet 10.69.3.87/32 metric 0 1615 | stubnet 10.68.3.87/32 metric 0 1616 | external 10.96.96.192/26 metric 20 1617 | 1618 | router 10.69.3.89 1619 | distance 38 1620 | router 10.69.13.40 metric 10 1621 | router 10.69.42.14 metric 100 1622 | stubnet 10.69.3.89/32 metric 0 1623 | stubnet 10.68.3.89/32 metric 0 1624 | external 10.96.97.64/26 metric 20 1625 | 1626 | router 10.69.3.94 1627 | distance 48 1628 | router 10.69.50.14 metric 10 1629 | router 10.69.51.7 metric 100 1630 | stubnet 10.69.3.94/32 metric 0 1631 | stubnet 10.68.3.94/32 metric 0 1632 | external 10.96.98.128/26 metric 20 1633 | 1634 | router 10.69.3.96 1635 | distance 43 1636 | router 10.69.1.55 metric 10 1637 | router 10.69.27.16 metric 10 1638 | router 10.69.2.20 metric 10 1639 | stubnet 10.69.3.96/32 metric 0 1640 | stubnet 10.68.3.96/32 metric 0 1641 | external 10.96.99.0/26 metric 20 1642 | 1643 | router 10.69.3.97 1644 | unreachable 1645 | router 10.69.4.46 metric 10 1646 | router 10.69.50.50 metric 100 1647 | stubnet 10.69.3.97/32 metric 0 1648 | stubnet 10.68.3.97/32 metric 0 1649 | external 10.96.99.64/26 metric 20 1650 | 1651 | router 10.69.3.117 1652 | distance 30 1653 | router 10.69.3.17 metric 1 1654 | router 10.70.89.133 metric 15 1655 | stubnet 10.69.0.0/16 metric 1 1656 | stubnet 192.168.160.0/20 metric 1 1657 | stubnet 10.70.89.35/32 metric 0 1658 | 1659 | router 10.69.3.118 1660 | distance 55 1661 | router 10.69.2.27 metric 50 1662 | router 10.69.7.13 metric 39 1663 | router 10.69.3.18 metric 10 1664 | stubnet 10.70.72.1/32 metric 50 1665 | stubnet 10.70.91.1/32 metric 39 1666 | stubnet 10.69.3.118/32 metric 0 1667 | external 10.70.180.128/27 metric 20 1668 | 1669 | router 10.69.3.129 1670 | distance 30 1671 | router 10.69.3.29 metric 10 1672 | router 10.70.89.133 metric 29 1673 | stubnet 10.69.3.129/32 metric 0 1674 | stubnet 10.70.89.41/32 metric 0 1675 | 1676 | router 10.69.3.156 1677 | distance 106 1678 | router 10.69.28.27 metric 10 1679 | stubnet 10.69.3.156/32 metric 0 1680 | stubnet 10.68.3.156/32 metric 0 1681 | external 10.96.89.0/26 metric 20 1682 | 1683 | router 10.69.3.167 1684 | distance 46 1685 | router 10.69.51.34 metric 10 1686 | stubnet 10.69.3.167/32 metric 0 1687 | stubnet 10.68.3.167/32 metric 0 1688 | external 10.96.91.192/26 metric 20 1689 | 1690 | router 10.69.3.183 1691 | distance 60 1692 | router 10.69.3.83 metric 10 1693 | stubnet 10.69.3.183/32 metric 0 1694 | stubnet 199.170.132.96/32 metric 0 1695 | 1696 | router 10.69.4.0 1697 | distance 56 1698 | router 10.69.4.100 metric 10 1699 | stubnet 10.69.4.0/32 metric 0 1700 | stubnet 10.68.4.0/32 metric 0 1701 | external 10.96.100.0/26 metric 20 1702 | 1703 | router 10.69.4.1 1704 | distance 75 1705 | router 10.69.78.0 metric 10 1706 | stubnet 10.69.4.1/32 metric 0 1707 | stubnet 10.68.4.1/32 metric 0 1708 | external 10.96.100.64/26 metric 20 1709 | 1710 | router 10.69.4.2 1711 | distance 53 1712 | router 10.69.2.20 metric 10 1713 | router 10.69.2.20 metric 100 1714 | router 10.69.68.45 metric 100 1715 | stubnet 10.69.4.2/32 metric 0 1716 | stubnet 10.68.4.2/32 metric 0 1717 | external 10.96.100.128/26 metric 20 1718 | 1719 | router 10.69.4.3 1720 | distance 46 1721 | router 10.69.4.103 metric 10 1722 | router 10.69.78.68 metric 100 1723 | router 10.69.63.63 metric 100 1724 | router 10.69.33.54 metric 100 1725 | router 10.69.2.82 metric 100 1726 | router 10.69.14.47 metric 100 1727 | router 10.69.54.20 metric 100 1728 | stubnet 10.69.4.3/32 metric 0 1729 | stubnet 10.68.4.3/32 metric 0 1730 | external 10.96.100.192/26 metric 20 1731 | 1732 | router 10.69.4.4 1733 | distance 86 1734 | router 10.69.19.71 metric 10 1735 | stubnet 10.69.4.4/32 metric 0 1736 | stubnet 10.68.4.4/32 metric 0 1737 | external 10.96.101.0/26 metric 20 1738 | 1739 | router 10.69.4.5 1740 | distance 136 1741 | router 10.69.78.17 metric 10 1742 | router 10.69.78.17 metric 100 1743 | stubnet 10.69.4.5/32 metric 0 1744 | stubnet 10.68.4.5/32 metric 0 1745 | external 10.96.101.64/26 metric 20 1746 | 1747 | router 10.69.4.6 1748 | distance 48 1749 | router 10.69.29.32 metric 100 1750 | router 10.69.4.32 metric 100 1751 | router 10.69.50.14 metric 10 1752 | stubnet 10.68.4.6/32 metric 0 1753 | stubnet 10.69.4.6/32 metric 0 1754 | external 10.96.101.128/26 metric 20 1755 | 1756 | router 10.69.4.7 1757 | distance 41 1758 | router 10.69.2.27 metric 50 1759 | router 10.69.62.74 metric 50 1760 | router 10.69.6.59 metric 50 1761 | router 10.69.3.19 metric 50 1762 | router 10.69.2.16 metric 50 1763 | router 10.70.176.1 metric 50 1764 | router 10.69.24.163 metric 50 1765 | router 10.69.56.39 metric 50 1766 | router 10.69.13.84 metric 50 1767 | router 10.69.19.34 metric 50 1768 | router 10.69.19.71 metric 50 1769 | router 10.69.56.39 metric 100 1770 | stubnet 10.69.4.7/32 metric 0 1771 | stubnet 10.68.4.7/32 metric 0 1772 | external 10.96.101.192/26 metric 20 1773 | 1774 | router 10.69.4.9 1775 | distance 46 1776 | router 10.69.2.79 metric 10 1777 | router 10.69.2.79 metric 100 1778 | router 10.69.51.34 metric 100 1779 | stubnet 10.69.4.9/32 metric 0 1780 | stubnet 10.68.4.9/32 metric 0 1781 | external 10.96.102.64/26 metric 20 1782 | 1783 | router 10.69.4.11 1784 | distance 33 1785 | router 10.69.59.16 metric 10 1786 | stubnet 10.69.4.11/32 metric 0 1787 | stubnet 10.68.4.11/32 metric 0 1788 | external 10.96.102.192/26 metric 20 1789 | 1790 | router 10.69.4.14 1791 | distance 36 1792 | router 10.69.34.61 metric 10 1793 | stubnet 10.69.4.14/32 metric 0 1794 | stubnet 10.68.4.14/32 metric 0 1795 | external 10.96.103.128/26 metric 20 1796 | 1797 | router 10.69.4.15 1798 | distance 33 1799 | router 10.69.59.16 metric 10 1800 | stubnet 10.69.4.15/32 metric 0 1801 | stubnet 10.68.4.15/32 metric 0 1802 | external 10.96.103.192/26 metric 20 1803 | 1804 | router 10.69.4.16 1805 | distance 38 1806 | router 10.69.13.40 metric 10 1807 | router 10.69.3.59 metric 100 1808 | stubnet 10.69.4.16/32 metric 0 1809 | stubnet 10.68.4.16/32 metric 0 1810 | external 10.96.104.0/26 metric 20 1811 | 1812 | router 10.69.4.17 1813 | distance 33 1814 | router 10.69.59.16 metric 10 1815 | stubnet 10.69.4.17/32 metric 0 1816 | stubnet 10.68.4.17/32 metric 0 1817 | external 10.96.104.64/26 metric 20 1818 | 1819 | router 10.69.4.18 1820 | distance 33 1821 | router 10.69.59.16 metric 10 1822 | stubnet 10.69.4.18/32 metric 0 1823 | stubnet 10.68.4.18/32 metric 0 1824 | external 10.96.104.128/26 metric 20 1825 | 1826 | router 10.69.4.19 1827 | distance 36 1828 | router 10.69.34.61 metric 10 1829 | stubnet 10.69.4.19/32 metric 0 1830 | stubnet 10.68.4.19/32 metric 0 1831 | external 10.96.104.192/26 metric 20 1832 | 1833 | router 10.69.4.20 1834 | distance 48 1835 | router 10.69.2.3 metric 10 1836 | router 10.69.2.3 metric 100 1837 | stubnet 10.69.4.20/32 metric 0 1838 | stubnet 10.68.4.20/32 metric 0 1839 | external 10.96.105.0/26 metric 20 1840 | 1841 | router 10.69.4.21 1842 | distance 58 1843 | router 10.69.1.88 metric 10 1844 | router 10.69.1.88 metric 100 1845 | router 10.69.2.75 metric 100 1846 | stubnet 10.69.4.21/32 metric 0 1847 | stubnet 10.68.4.21/32 metric 0 1848 | external 10.96.105.64/26 metric 20 1849 | 1850 | router 10.69.4.22 1851 | distance 38 1852 | router 10.69.13.40 metric 10 1853 | router 10.69.44.62 metric 100 1854 | stubnet 10.69.4.22/32 metric 0 1855 | stubnet 10.68.4.22/32 metric 0 1856 | external 10.96.105.128/26 metric 20 1857 | 1858 | router 10.69.4.23 1859 | distance 75 1860 | router 10.69.78.0 metric 10 1861 | stubnet 10.69.4.23/32 metric 0 1862 | stubnet 10.68.4.23/32 metric 0 1863 | external 10.96.105.192/26 metric 20 1864 | 1865 | router 10.69.4.24 1866 | distance 26 1867 | router 10.69.7.13 metric 10 1868 | router 10.69.2.93 metric 100 1869 | stubnet 10.69.4.24/32 metric 0 1870 | stubnet 10.68.4.24/32 metric 0 1871 | external 10.96.106.0/26 metric 20 1872 | 1873 | router 10.69.4.26 1874 | distance 65 1875 | router 10.69.4.226 metric 10 1876 | router 10.69.4.126 metric 10 1877 | stubnet 10.69.4.26/32 metric 0 1878 | stubnet 10.68.4.26/32 metric 0 1879 | external 10.96.106.128/26 metric 20 1880 | 1881 | router 10.69.4.28 1882 | distance 56 1883 | router 10.69.69.25 metric 10 1884 | router 10.69.69.25 metric 100 1885 | stubnet 10.69.4.28/32 metric 0 1886 | stubnet 10.68.4.28/32 metric 0 1887 | external 10.96.107.0/26 metric 20 1888 | 1889 | router 10.69.4.29 1890 | distance 36 1891 | router 10.69.34.61 metric 10 1892 | stubnet 10.69.4.29/32 metric 0 1893 | stubnet 10.68.4.29/32 metric 0 1894 | external 10.96.107.64/26 metric 20 1895 | 1896 | router 10.69.4.31 1897 | distance 75 1898 | router 10.69.78.0 metric 10 1899 | stubnet 10.69.4.31/32 metric 0 1900 | stubnet 10.68.4.31/32 metric 0 1901 | external 10.96.107.192/26 metric 20 1902 | 1903 | router 10.69.4.32 1904 | distance 48 1905 | router 10.69.4.6 metric 100 1906 | router 10.69.42.32 metric 10 1907 | stubnet 10.68.4.32/32 metric 0 1908 | stubnet 10.69.4.32/32 metric 0 1909 | external 10.96.108.0/26 metric 20 1910 | 1911 | router 10.69.4.33 1912 | distance 61 1913 | router 10.69.2.27 metric 10 1914 | router 10.69.6.59 metric 100 1915 | stubnet 10.69.4.33/32 metric 0 1916 | stubnet 10.68.4.33/32 metric 0 1917 | external 10.96.108.64/26 metric 20 1918 | 1919 | router 10.69.4.34 1920 | distance 43 1921 | router 10.69.43.95 metric 10 1922 | router 10.69.4.87 metric 10 1923 | router 10.69.43.95 metric 100 1924 | router 10.69.41.53 metric 100 1925 | router 10.69.4.87 metric 100 1926 | stubnet 10.69.4.34/32 metric 0 1927 | stubnet 10.68.4.34/32 metric 0 1928 | external 10.96.108.128/26 metric 20 1929 | 1930 | router 10.69.4.35 1931 | distance 86 1932 | router 10.69.14.17 metric 10 1933 | router 10.69.14.17 metric 100 1934 | stubnet 10.69.4.35/32 metric 0 1935 | stubnet 10.68.4.35/32 metric 0 1936 | external 10.96.108.192/26 metric 20 1937 | 1938 | router 10.69.4.36 1939 | distance 33 1940 | router 10.69.59.16 metric 10 1941 | stubnet 10.69.4.36/32 metric 0 1942 | stubnet 10.68.4.36/32 metric 0 1943 | external 10.96.109.0/26 metric 20 1944 | 1945 | router 10.69.4.39 1946 | distance 33 1947 | router 10.69.4.42 metric 10 1948 | router 10.69.59.16 metric 10 1949 | router 10.69.4.42 metric 100 1950 | stubnet 10.69.4.39/32 metric 0 1951 | stubnet 10.68.4.39/32 metric 0 1952 | external 10.96.109.192/26 metric 20 1953 | 1954 | router 10.69.4.40 1955 | distance 48 1956 | router 10.69.1.89 metric 10 1957 | router 10.69.1.89 metric 100 1958 | router 10.69.3.85 metric 100 1959 | router 10.69.32.33 metric 100 1960 | stubnet 10.69.4.40/32 metric 0 1961 | stubnet 10.68.4.40/32 metric 0 1962 | external 10.96.110.0/26 metric 20 1963 | 1964 | router 10.69.4.42 1965 | distance 43 1966 | router 10.69.4.39 metric 10 1967 | router 10.69.4.39 metric 100 1968 | stubnet 10.69.4.42/32 metric 0 1969 | stubnet 10.68.4.42/32 metric 0 1970 | external 10.96.110.128/26 metric 20 1971 | 1972 | router 10.69.4.43 1973 | distance 56 1974 | router 10.69.1.15 metric 10 1975 | router 10.69.1.15 metric 100 1976 | router 10.69.71.3 metric 100 1977 | stubnet 10.69.4.43/32 metric 0 1978 | stubnet 10.68.4.43/32 metric 0 1979 | external 10.96.110.192/26 metric 20 1980 | 1981 | router 10.69.4.44 1982 | distance 46 1983 | router 10.69.65.65 metric 10 1984 | router 10.69.65.65 metric 100 1985 | stubnet 10.69.4.44/32 metric 0 1986 | stubnet 10.68.4.44/32 metric 0 1987 | external 10.96.111.0/26 metric 20 1988 | 1989 | router 10.69.4.45 1990 | distance 33 1991 | router 10.69.59.16 metric 10 1992 | stubnet 10.69.4.45/32 metric 0 1993 | stubnet 10.68.4.45/32 metric 0 1994 | external 10.96.111.64/26 metric 20 1995 | 1996 | router 10.69.4.46 1997 | unreachable 1998 | router 10.69.3.97 metric 10 1999 | stubnet 10.69.4.46/32 metric 0 2000 | stubnet 10.68.4.46/32 metric 0 2001 | external 10.96.111.128/26 metric 20 2002 | 2003 | router 10.69.4.48 2004 | distance 33 2005 | router 10.69.59.16 metric 10 2006 | stubnet 10.69.4.48/32 metric 0 2007 | stubnet 10.68.4.48/32 metric 0 2008 | external 10.96.112.0/26 metric 20 2009 | 2010 | router 10.69.4.49 2011 | distance 60 2012 | router 10.69.3.83 metric 10 2013 | router 10.69.2.95 metric 10 2014 | router 10.69.3.83 metric 100 2015 | stubnet 10.69.4.49/32 metric 0 2016 | stubnet 10.68.4.49/32 metric 0 2017 | external 10.96.112.64/26 metric 20 2018 | 2019 | router 10.69.4.51 2020 | distance 61 2021 | router 10.69.2.27 metric 10 2022 | router 10.69.30.37 metric 100 2023 | router 10.69.2.83 metric 100 2024 | router 10.69.35.31 metric 100 2025 | stubnet 10.69.4.51/32 metric 0 2026 | stubnet 10.68.4.51/32 metric 0 2027 | external 10.96.112.192/26 metric 20 2028 | 2029 | router 10.69.4.54 2030 | distance 51 2031 | router 10.69.24.163 metric 10 2032 | stubnet 10.69.4.54/32 metric 0 2033 | stubnet 10.68.4.54/32 metric 0 2034 | external 10.96.113.128/26 metric 20 2035 | 2036 | router 10.69.4.55 2037 | distance 38 2038 | router 10.69.13.40 metric 10 2039 | stubnet 10.69.4.55/32 metric 0 2040 | stubnet 10.68.4.55/32 metric 0 2041 | external 10.96.113.192/26 metric 20 2042 | 2043 | router 10.69.4.56 2044 | distance 43 2045 | router 10.69.36.7 metric 10 2046 | router 10.69.2.2 metric 10 2047 | router 10.69.26.146 metric 10 2048 | router 10.69.26.46 metric 100 2049 | router 10.69.36.7 metric 100 2050 | router 10.69.11.59 metric 100 2051 | stubnet 10.69.4.56/32 metric 0 2052 | stubnet 10.68.4.56/32 metric 0 2053 | external 10.96.114.0/26 metric 20 2054 | 2055 | router 10.69.4.58 2056 | distance 36 2057 | router 10.69.4.78 metric 10 2058 | router 10.69.34.61 metric 10 2059 | router 10.69.4.78 metric 100 2060 | router 10.69.2.59 metric 100 2061 | stubnet 10.69.4.58/32 metric 0 2062 | stubnet 10.68.4.58/32 metric 0 2063 | external 10.96.114.128/26 metric 20 2064 | 2065 | router 10.69.4.60 2066 | distance 36 2067 | router 10.69.14.47 metric 10 2068 | router 10.69.14.47 metric 100 2069 | router 10.69.4.94 metric 100 2070 | router 10.69.63.63 metric 100 2071 | stubnet 10.69.4.60/32 metric 0 2072 | stubnet 10.68.4.60/32 metric 0 2073 | external 10.96.115.0/26 metric 20 2074 | 2075 | router 10.69.4.61 2076 | distance 48 2077 | router 10.69.2.12 metric 10 2078 | router 10.69.2.12 metric 100 2079 | router 10.69.44.33 metric 100 2080 | router 10.69.2.56 metric 100 2081 | stubnet 10.69.4.61/32 metric 0 2082 | stubnet 10.68.4.61/32 metric 0 2083 | external 10.96.115.64/26 metric 20 2084 | 2085 | router 10.69.4.62 2086 | distance 36 2087 | router 10.69.34.61 metric 10 2088 | stubnet 10.69.4.62/32 metric 0 2089 | stubnet 10.68.4.62/32 metric 0 2090 | external 10.96.115.128/26 metric 20 2091 | 2092 | router 10.69.4.64 2093 | distance 61 2094 | router 10.69.2.27 metric 10 2095 | router 10.69.30.37 metric 100 2096 | router 10.69.2.48 metric 100 2097 | router 10.69.5.18 metric 100 2098 | stubnet 10.69.4.64/32 metric 0 2099 | stubnet 10.68.4.64/32 metric 0 2100 | external 10.96.116.0/26 metric 20 2101 | 2102 | router 10.69.4.66 2103 | distance 36 2104 | router 10.69.22.82 metric 10 2105 | stubnet 10.69.4.66/32 metric 0 2106 | stubnet 10.68.4.66/32 metric 0 2107 | external 10.96.116.128/26 metric 20 2108 | 2109 | router 10.69.4.71 2110 | distance 36 2111 | router 10.69.34.61 metric 10 2112 | router 10.69.74.98 metric 100 2113 | stubnet 10.69.4.71/32 metric 0 2114 | stubnet 10.68.4.71/32 metric 0 2115 | external 10.96.117.192/26 metric 20 2116 | 2117 | router 10.69.4.73 2118 | distance 33 2119 | router 10.69.59.16 metric 10 2120 | router 10.69.1.59 metric 100 2121 | router 10.69.2.62 metric 100 2122 | stubnet 10.69.4.73/32 metric 0 2123 | stubnet 10.68.4.73/32 metric 0 2124 | external 10.96.118.64/26 metric 20 2125 | 2126 | router 10.69.4.74 2127 | distance 66 2128 | router 10.69.57.12 metric 10 2129 | stubnet 10.69.4.74/32 metric 0 2130 | stubnet 10.68.4.74/32 metric 0 2131 | external 10.96.118.128/26 metric 20 2132 | 2133 | router 10.69.4.75 2134 | distance 43 2135 | router 10.69.41.53 metric 10 2136 | router 10.69.41.53 metric 100 2137 | router 10.69.4.87 metric 100 2138 | stubnet 10.69.4.75/32 metric 0 2139 | stubnet 10.68.4.75/32 metric 0 2140 | external 10.96.118.192/26 metric 20 2141 | 2142 | router 10.69.4.76 2143 | distance 36 2144 | router 10.69.41.92 metric 100 2145 | router 10.69.34.61 metric 10 2146 | stubnet 10.68.4.76/32 metric 0 2147 | stubnet 10.69.4.76/32 metric 0 2148 | external 10.96.119.0/26 metric 20 2149 | 2150 | router 10.69.4.77 2151 | distance 33 2152 | router 10.69.3.58 metric 10 2153 | router 10.69.59.16 metric 10 2154 | router 10.69.3.58 metric 100 2155 | stubnet 10.69.4.77/32 metric 0 2156 | stubnet 10.68.4.77/32 metric 0 2157 | external 10.96.119.64/26 metric 20 2158 | 2159 | router 10.69.4.78 2160 | distance 46 2161 | router 10.69.4.58 metric 10 2162 | router 10.69.4.58 metric 100 2163 | stubnet 10.69.4.78/32 metric 0 2164 | stubnet 10.68.4.78/32 metric 0 2165 | external 10.96.119.128/26 metric 20 2166 | 2167 | router 10.69.4.80 2168 | distance 33 2169 | router 10.69.59.16 metric 10 2170 | stubnet 10.69.4.80/32 metric 0 2171 | stubnet 10.68.4.80/32 metric 0 2172 | external 10.96.120.0/26 metric 20 2173 | 2174 | router 10.69.4.81 2175 | distance 60 2176 | router 10.69.22.74 metric 10 2177 | stubnet 10.69.4.81/32 metric 0 2178 | stubnet 10.68.4.81/32 metric 0 2179 | external 10.96.120.64/26 metric 20 2180 | 2181 | router 10.69.4.82 2182 | distance 46 2183 | router 10.69.4.182 metric 10 2184 | router 10.69.78.25 metric 100 2185 | router 10.69.51.51 metric 100 2186 | router 10.69.44.80 metric 100 2187 | stubnet 10.69.4.82/32 metric 0 2188 | stubnet 10.68.4.82/32 metric 0 2189 | external 10.96.120.128/26 metric 20 2190 | 2191 | router 10.69.4.84 2192 | distance 38 2193 | router 10.69.13.40 metric 10 2194 | router 10.69.62.68 metric 100 2195 | stubnet 10.69.4.84/32 metric 0 2196 | stubnet 10.68.4.84/32 metric 0 2197 | external 10.96.121.0/26 metric 20 2198 | 2199 | router 10.69.4.87 2200 | distance 43 2201 | router 10.69.43.95 metric 10 2202 | router 10.69.4.34 metric 10 2203 | router 10.69.41.53 metric 100 2204 | router 10.69.43.95 metric 100 2205 | router 10.69.68.45 metric 100 2206 | router 10.69.4.75 metric 100 2207 | router 10.69.4.34 metric 100 2208 | stubnet 10.69.4.87/32 metric 0 2209 | stubnet 10.68.4.87/32 metric 0 2210 | external 10.96.121.192/26 metric 20 2211 | 2212 | router 10.69.4.88 2213 | distance 38 2214 | router 10.69.13.40 metric 10 2215 | router 10.69.24.82 metric 100 2216 | stubnet 10.69.4.88/32 metric 0 2217 | stubnet 10.68.4.88/32 metric 0 2218 | external 10.96.122.0/26 metric 20 2219 | 2220 | router 10.69.4.89 2221 | distance 58 2222 | router 10.69.44.62 metric 10 2223 | router 10.69.44.62 metric 100 2224 | stubnet 10.69.4.89/32 metric 0 2225 | stubnet 10.68.4.89/32 metric 0 2226 | external 10.96.122.64/26 metric 20 2227 | 2228 | router 10.69.4.90 2229 | distance 61 2230 | router 10.69.2.27 metric 10 2231 | router 10.69.23.50 metric 100 2232 | router 10.69.2.49 metric 100 2233 | router 10.69.35.31 metric 100 2234 | router 10.69.79.41 metric 100 2235 | router 10.69.14.40 metric 100 2236 | router 10.70.175.1 metric 100 2237 | stubnet 10.69.4.90/32 metric 0 2238 | stubnet 10.68.4.90/32 metric 0 2239 | external 10.96.122.128/26 metric 20 2240 | 2241 | router 10.69.4.91 2242 | distance 137 2243 | router 10.69.11.46 metric 100 2244 | router 10.69.9.44 metric 100 2245 | stubnet 10.69.4.91/32 metric 0 2246 | stubnet 10.68.4.91/32 metric 0 2247 | external 10.96.122.192/26 metric 20 2248 | 2249 | router 10.69.4.92 2250 | distance 38 2251 | router 10.69.13.40 metric 10 2252 | stubnet 10.69.4.92/32 metric 0 2253 | stubnet 10.68.4.92/32 metric 0 2254 | external 10.96.123.0/26 metric 20 2255 | 2256 | router 10.69.4.94 2257 | distance 36 2258 | router 10.69.46.81 metric 10 2259 | router 10.69.63.63 metric 100 2260 | router 10.69.46.81 metric 100 2261 | router 10.69.4.60 metric 100 2262 | router 10.69.14.47 metric 100 2263 | router 10.69.54.20 metric 100 2264 | router 10.69.24.81 metric 100 2265 | router 10.69.1.75 metric 100 2266 | stubnet 10.69.4.94/32 metric 0 2267 | stubnet 10.68.4.94/32 metric 0 2268 | external 10.96.123.128/26 metric 20 2269 | 2270 | router 10.69.4.95 2271 | distance 66 2272 | router 10.69.57.12 metric 10 2273 | router 10.69.1.37 metric 10 2274 | router 10.69.1.56 metric 100 2275 | router 10.69.1.37 metric 100 2276 | router 10.69.3.37 metric 100 2277 | router 10.69.57.12 metric 100 2278 | stubnet 10.69.4.95/32 metric 0 2279 | stubnet 10.68.4.95/32 metric 0 2280 | external 10.96.123.192/26 metric 20 2281 | 2282 | router 10.69.4.98 2283 | distance 36 2284 | router 10.69.66.22 metric 10 2285 | router 10.69.2.85 metric 100 2286 | router 10.69.66.22 metric 100 2287 | router 10.69.69.11 metric 100 2288 | router 10.69.1.75 metric 100 2289 | router 10.69.2.50 metric 100 2290 | router 10.69.76.32 metric 100 2291 | router 10.69.60.22 metric 100 2292 | router 10.69.66.23 metric 100 2293 | router 10.69.33.0 metric 100 2294 | router 10.69.53.0 metric 100 2295 | stubnet 10.69.4.98/32 metric 0 2296 | stubnet 10.68.4.98/32 metric 0 2297 | external 10.96.124.128/26 metric 20 2298 | 2299 | router 10.69.4.100 2300 | distance 46 2301 | router 10.69.4.0 metric 10 2302 | router 10.69.52.83 metric 10 2303 | stubnet 10.69.4.100/32 metric 0 2304 | stubnet 10.68.4.100/32 metric 0 2305 | 2306 | router 10.69.4.103 2307 | distance 36 2308 | router 10.69.4.3 metric 10 2309 | router 10.69.78.68 metric 10 2310 | stubnet 10.69.4.103/32 metric 0 2311 | stubnet 10.68.4.103/32 metric 0 2312 | 2313 | router 10.69.4.126 2314 | distance 75 2315 | router 10.69.78.0 metric 10 2316 | router 10.69.4.26 metric 10 2317 | stubnet 10.68.4.126/32 metric 0 2318 | stubnet 10.69.4.126/32 metric 0 2319 | 2320 | router 10.69.4.182 2321 | distance 36 2322 | router 10.69.51.51 metric 10 2323 | router 10.69.4.82 metric 10 2324 | stubnet 10.69.4.182/32 metric 0 2325 | stubnet 10.68.4.182/32 metric 0 2326 | 2327 | router 10.69.4.186 2328 | distance 46 2329 | router 10.69.1.54 metric 10 2330 | stubnet 10.69.4.186/32 metric 0 2331 | stubnet 10.68.4.186/32 metric 0 2332 | external 10.96.121.128/26 metric 20 2333 | 2334 | router 10.69.4.226 2335 | distance 55 2336 | router 10.69.2.27 metric 50 2337 | router 10.69.7.13 metric 39 2338 | router 10.69.4.26 metric 10 2339 | stubnet 10.70.72.70/32 metric 0 2340 | stubnet 10.70.91.206/32 metric 0 2341 | stubnet 10.69.4.226/32 metric 0 2342 | 2343 | router 10.69.5.7 2344 | distance 51 2345 | router 10.69.24.163 metric 10 2346 | stubnet 10.69.5.7/32 metric 0 2347 | stubnet 10.68.5.7/32 metric 0 2348 | external 10.70.182.128/25 metric 20 2349 | external 10.96.126.192/26 metric 20 2350 | 2351 | router 10.69.5.18 2352 | distance 96 2353 | router 10.69.2.48 metric 100 2354 | router 10.69.4.64 metric 100 2355 | router 10.69.2.48 metric 10 2356 | stubnet 10.68.5.18/32 metric 0 2357 | stubnet 10.69.5.18/32 metric 0 2358 | external 10.96.129.128/26 metric 20 2359 | 2360 | router 10.69.5.56 2361 | distance 51 2362 | router 10.69.7.31 metric 10 2363 | stubnet 10.69.5.56/32 metric 0 2364 | stubnet 10.68.5.56/32 metric 0 2365 | external 10.96.139.0/26 metric 20 2366 | 2367 | router 10.69.6.27 2368 | distance 33 2369 | router 10.69.59.16 metric 10 2370 | stubnet 10.69.6.27/32 metric 0 2371 | stubnet 10.68.6.27/32 metric 0 2372 | external 10.96.156.192/26 metric 20 2373 | 2374 | router 10.69.6.59 2375 | distance 91 2376 | router 10.69.38.64 metric 10 2377 | router 10.69.4.7 metric 10 2378 | router 10.69.38.64 metric 100 2379 | router 10.69.4.33 metric 100 2380 | stubnet 10.69.6.59/32 metric 0 2381 | stubnet 10.68.6.59/32 metric 0 2382 | external 10.96.164.192/26 metric 20 2383 | 2384 | router 10.69.6.64 2385 | distance 38 2386 | router 10.69.13.40 metric 9 2387 | router 10.69.2.72 metric 10 2388 | router 10.69.6.164 metric 10 2389 | router 10.69.76.0 metric 10 2390 | router 10.69.75.3 metric 10 2391 | router 10.69.2.72 metric 100 2392 | stubnet 10.70.253.35/32 metric 0 2393 | stubnet 10.69.6.64/32 metric 0 2394 | stubnet 10.68.6.64/32 metric 0 2395 | external 10.96.166.0/26 metric 20 2396 | 2397 | router 10.69.6.72 2398 | distance 38 2399 | router 10.69.13.40 metric 10 2400 | router 10.69.1.84 metric 100 2401 | stubnet 10.69.6.72/32 metric 0 2402 | stubnet 10.68.6.72/32 metric 0 2403 | external 10.96.168.0/26 metric 20 2404 | 2405 | router 10.69.6.86 2406 | distance 61 2407 | router 10.69.2.27 metric 10 2408 | router 10.69.3.19 metric 100 2409 | stubnet 10.69.6.86/32 metric 0 2410 | stubnet 10.68.6.86/32 metric 0 2411 | external 10.96.171.128/26 metric 20 2412 | 2413 | router 10.69.6.164 2414 | distance 48 2415 | router 10.69.76.0 metric 10 2416 | router 10.69.6.64 metric 10 2417 | stubnet 10.69.6.164/32 metric 0 2418 | external 10.96.166.0/26 metric 20 2419 | 2420 | router 10.69.7.13 2421 | distance 16 2422 | router 10.69.4.226 metric 39 2423 | router 10.69.78.100 metric 39 2424 | router 10.69.2.27 metric 100 2425 | router 10.69.59.165 metric 39 2426 | router 10.69.3.118 metric 39 2427 | router 10.69.68.2 metric 39 2428 | router 10.69.34.61 metric 10 2429 | router 10.69.22.82 metric 11 2430 | router 10.69.59.16 metric 7 2431 | router 10.69.4.24 metric 10 2432 | router 10.69.51.51 metric 10 2433 | router 10.69.68.72 metric 10 2434 | router 10.69.2.17 metric 10 2435 | router 10.69.2.93 metric 10 2436 | router 10.69.22.82 metric 10 2437 | router 10.69.47.61 metric 10 2438 | router 10.69.28.83 metric 10 2439 | router 10.69.16.35 metric 10 2440 | router 10.69.32.84 metric 10 2441 | router 10.69.24.62 metric 10 2442 | router 10.69.75.74 metric 10 2443 | router 10.69.16.6 metric 10 2444 | router 10.69.66.22 metric 10 2445 | router 10.69.53.0 metric 10 2446 | router 10.69.46.81 metric 10 2447 | router 10.69.64.50 metric 10 2448 | router 10.69.65.71 metric 10 2449 | router 10.69.24.81 metric 10 2450 | router 10.69.33.0 metric 10 2451 | router 10.69.1.75 metric 10 2452 | router 10.69.54.20 metric 10 2453 | router 10.69.78.68 metric 10 2454 | router 10.69.14.47 metric 10 2455 | router 10.69.3.65 metric 10 2456 | router 10.69.2.89 metric 10 2457 | router 10.69.2.82 metric 10 2458 | router 10.69.33.54 metric 10 2459 | router 10.69.3.0 metric 10 2460 | router 10.69.2.50 metric 10 2461 | router 10.69.79.25 metric 10 2462 | router 10.69.1.96 metric 10 2463 | router 10.69.27.1 metric 10 2464 | router 10.69.59.89 metric 10 2465 | network 10.70.90.0/24 metric 10 2466 | network 10.70.89.128/27 metric 1 2467 | stubnet 10.70.91.1/32 metric 0 2468 | stubnet 10.70.91.1/32 metric 0 2469 | stubnet 10.70.91.1/32 metric 0 2470 | stubnet 10.70.91.1/32 metric 0 2471 | stubnet 10.70.71.3/32 metric 0 2472 | stubnet 10.70.91.1/32 metric 0 2473 | stubnet 10.70.91.1/32 metric 0 2474 | stubnet 10.70.91.1/32 metric 0 2475 | stubnet 10.70.91.1/32 metric 0 2476 | stubnet 10.70.91.1/32 metric 0 2477 | stubnet 10.70.253.0/32 metric 0 2478 | stubnet 10.70.253.52/32 metric 0 2479 | stubnet 10.70.253.4/32 metric 0 2480 | stubnet 10.69.7.13/32 metric 0 2481 | stubnet 10.70.91.0/24 metric 10 2482 | external 0.0.0.0/0 metric 1 2483 | external 10.10.10.100/32 metric 20 2484 | external 10.70.88.0/24 metric 20 2485 | external 10.70.95.0/24 metric 20 2486 | external 10.70.253.46/32 metric 20 2487 | external 199.170.132.0/24 metric 20 via 10.70.89.131 2488 | external 199.170.132.1/32 metric 20 via 10.70.89.131 2489 | external 199.170.132.3/32 metric 20 2490 | external 199.170.132.6/32 metric 20 2491 | external 199.170.132.17/32 metric 20 2492 | external 199.170.132.35/32 metric 20 via 10.70.89.131 2493 | external 199.170.132.50/32 metric 20 via 10.70.89.131 2494 | external 199.170.132.64/26 metric 20 via 10.70.89.131 2495 | 2496 | router 10.69.7.31 2497 | distance 41 2498 | router 10.69.22.74 metric 20 2499 | router 10.69.3.11 metric 100 2500 | router 10.69.3.11 metric 10 2501 | router 10.69.1.38 metric 10 2502 | router 10.69.19.34 metric 10 2503 | router 10.69.5.56 metric 10 2504 | router 10.68.29.50 metric 10 2505 | router 10.69.44.41 metric 10 2506 | router 10.69.24.163 metric 10 2507 | router 10.69.30.16 metric 10 2508 | stubnet 10.70.253.51/32 metric 0 2509 | stubnet 10.68.7.31/32 metric 0 2510 | stubnet 10.69.7.31/32 metric 0 2511 | external 10.70.155.0/24 metric 20 2512 | external 10.70.155.128/26 metric 20 2513 | external 10.96.182.192/26 metric 20 2514 | 2515 | router 10.69.7.79 2516 | distance 36 2517 | router 10.69.34.61 metric 10 2518 | stubnet 10.69.7.79/32 metric 0 2519 | stubnet 10.68.7.79/32 metric 0 2520 | external 10.96.194.192/26 metric 20 2521 | 2522 | router 10.69.7.94 2523 | distance 191 2524 | router 10.69.13.84 metric 100 2525 | stubnet 10.69.7.94/32 metric 0 2526 | stubnet 10.68.7.94/32 metric 0 2527 | external 10.96.198.128/26 metric 20 2528 | 2529 | router 10.69.8.98 2530 | distance 65 2531 | router 10.69.78.0 metric 10 2532 | router 10.69.78.100 metric 10 2533 | router 10.69.1.35 metric 10 2534 | router 10.69.49.17 metric 10 2535 | stubnet 10.69.8.98/32 metric 0 2536 | external 10.96.224.128/26 metric 20 2537 | 2538 | router 10.69.9.44 2539 | distance 36 2540 | router 10.69.11.46 metric 70 2541 | router 10.69.13.40 metric 70 2542 | router 10.69.34.61 metric 70 2543 | router 10.69.4.91 metric 101 2544 | router 10.69.11.46 metric 101 2545 | stubnet 10.69.9.44/32 metric 0 2546 | stubnet 10.68.9.44/32 metric 0 2547 | external 10.96.236.0/26 metric 20 2548 | 2549 | router 10.69.10.84 2550 | distance 36 2551 | router 10.69.19.34 metric 5 2552 | router 10.69.79.9 metric 10 2553 | router 10.69.1.15 metric 10 2554 | router 10.69.11.67 metric 10 2555 | router 10.69.19.34 metric 10 2556 | router 10.69.55.81 metric 100 2557 | router 10.69.11.67 metric 100 2558 | stubnet 10.70.251.2/32 metric 0 2559 | stubnet 10.69.10.84/32 metric 0 2560 | stubnet 10.68.10.84/32 metric 0 2561 | external 10.97.15.0/26 metric 20 2562 | 2563 | router 10.69.11.46 2564 | distance 106 2565 | router 10.69.9.44 metric 10 2566 | router 10.69.4.91 metric 100 2567 | router 10.69.9.44 metric 100 2568 | stubnet 10.69.11.46/32 metric 0 2569 | stubnet 10.68.11.46/32 metric 0 2570 | external 10.97.30.128/26 metric 20 2571 | 2572 | router 10.69.11.59 2573 | distance 33 2574 | router 10.69.59.16 metric 10 2575 | router 10.69.4.56 metric 100 2576 | router 10.69.26.46 metric 100 2577 | router 10.69.36.7 metric 100 2578 | router 10.69.2.2 metric 100 2579 | stubnet 10.69.11.59/32 metric 0 2580 | stubnet 10.68.11.59/32 metric 0 2581 | external 10.97.33.192/26 metric 20 2582 | 2583 | router 10.69.11.63 2584 | distance 60 2585 | router 10.69.22.74 metric 10 2586 | stubnet 10.69.11.63/32 metric 0 2587 | stubnet 10.68.11.63/32 metric 0 2588 | external 10.97.34.192/26 metric 20 2589 | 2590 | router 10.69.11.67 2591 | distance 46 2592 | router 10.69.55.81 metric 100 2593 | router 10.69.10.84 metric 100 2594 | router 10.69.79.9 metric 100 2595 | router 10.69.55.81 metric 10 2596 | router 10.69.10.84 metric 10 2597 | router 10.69.2.95 metric 10 2598 | stubnet 10.68.11.67/32 metric 0 2599 | stubnet 10.69.11.67/32 metric 0 2600 | external 10.97.35.192/26 metric 20 2601 | 2602 | router 10.69.13.40 2603 | distance 28 2604 | router 10.69.14.117 metric 50 2605 | router 10.69.6.64 metric 10 2606 | router 10.69.59.16 metric 5 2607 | router 10.69.74.89 metric 10 2608 | router 10.69.26.47 metric 10 2609 | router 10.69.3.70 metric 10 2610 | router 10.69.3.89 metric 10 2611 | router 10.69.29.59 metric 10 2612 | router 10.69.1.80 metric 10 2613 | router 10.69.1.76 metric 10 2614 | router 10.69.3.87 metric 10 2615 | router 10.69.4.16 metric 10 2616 | router 10.69.2.33 metric 10 2617 | router 10.69.3.75 metric 10 2618 | router 10.69.72.88 metric 10 2619 | router 10.69.44.62 metric 10 2620 | router 10.69.3.13 metric 10 2621 | router 10.69.54.21 metric 10 2622 | router 10.69.42.14 metric 10 2623 | router 10.69.2.13 metric 10 2624 | router 10.69.77.10 metric 10 2625 | router 10.69.70.89 metric 10 2626 | router 10.69.70.65 metric 10 2627 | router 10.69.40.18 metric 10 2628 | router 10.69.47.33 metric 10 2629 | router 10.69.39.23 metric 10 2630 | router 10.69.69.92 metric 10 2631 | router 10.69.63.8 metric 10 2632 | router 10.69.76.86 metric 10 2633 | router 10.69.29.32 metric 10 2634 | router 10.69.51.27 metric 10 2635 | router 10.69.50.20 metric 10 2636 | router 10.69.53.28 metric 10 2637 | router 10.69.74.49 metric 10 2638 | router 10.69.3.51 metric 10 2639 | router 10.69.2.74 metric 10 2640 | router 10.69.15.33 metric 10 2641 | router 10.69.1.86 metric 10 2642 | router 10.69.3.40 metric 10 2643 | router 10.69.21.1 metric 10 2644 | router 10.69.2.54 metric 10 2645 | router 10.69.2.3 metric 10 2646 | router 10.69.1.16 metric 10 2647 | router 10.69.1.58 metric 10 2648 | router 10.69.6.72 metric 10 2649 | router 10.69.18.93 metric 10 2650 | router 10.69.37.15 metric 10 2651 | router 10.69.34.80 metric 10 2652 | router 10.69.3.32 metric 10 2653 | router 10.69.42.66 metric 10 2654 | router 10.69.42.85 metric 10 2655 | router 10.69.3.23 metric 10 2656 | router 10.69.62.68 metric 10 2657 | router 10.69.2.12 metric 10 2658 | router 10.69.71.78 metric 10 2659 | router 10.69.75.82 metric 10 2660 | router 10.69.1.89 metric 10 2661 | router 10.69.3.7 metric 10 2662 | router 10.69.52.76 metric 10 2663 | router 10.69.47.6 metric 10 2664 | router 10.69.33.96 metric 10 2665 | router 10.69.79.97 metric 10 2666 | router 10.69.2.22 metric 10 2667 | router 10.69.3.6 metric 10 2668 | router 10.69.22.3 metric 10 2669 | router 10.69.4.84 metric 10 2670 | router 10.69.42.32 metric 10 2671 | router 10.69.4.88 metric 10 2672 | router 10.69.28.74 metric 10 2673 | router 10.69.50.14 metric 10 2674 | router 10.69.32.33 metric 10 2675 | router 10.69.68.45 metric 10 2676 | router 10.69.2.58 metric 10 2677 | router 10.69.4.92 metric 10 2678 | router 10.69.2.60 metric 10 2679 | router 10.69.1.65 metric 10 2680 | router 10.69.4.55 metric 10 2681 | router 10.69.9.44 metric 10 2682 | router 10.69.32.13 metric 10 2683 | router 10.69.32.82 metric 10 2684 | router 10.69.55.88 metric 10 2685 | router 10.69.4.22 metric 10 2686 | router 10.69.46.76 metric 10 2687 | stubnet 10.70.253.22/32 metric 0 2688 | stubnet 10.70.253.34/32 metric 0 2689 | stubnet 10.70.253.27/32 metric 0 2690 | stubnet 10.70.253.24/32 metric 0 2691 | stubnet 10.69.13.40/32 metric 0 2692 | external 10.70.131.0/24 metric 20 2693 | external 10.97.79.0/26 metric 20 2694 | 2695 | router 10.69.13.50 2696 | distance 44 2697 | router 10.69.13.150 metric 10 2698 | router 10.69.66.18 metric 10 2699 | router 10.69.33.105 metric 10 2700 | router 10.69.33.5 metric 10 2701 | router 10.69.65.81 metric 10 2702 | router 10.69.48.69 metric 10 2703 | router 10.69.35.75 metric 10 2704 | router 10.69.35.75 metric 100 2705 | router 10.69.48.69 metric 100 2706 | router 10.69.66.18 metric 100 2707 | router 10.69.33.5 metric 100 2708 | router 10.69.65.81 metric 100 2709 | router 10.69.2.90 metric 100 2710 | stubnet 10.69.13.50/32 metric 0 2711 | stubnet 10.68.13.50/32 metric 0 2712 | external 10.97.81.128/26 metric 20 2713 | 2714 | router 10.69.13.84 2715 | distance 91 2716 | router 10.69.3.50 metric 10 2717 | router 10.69.4.7 metric 10 2718 | router 10.69.7.94 metric 100 2719 | router 10.69.3.50 metric 100 2720 | stubnet 10.69.13.84/32 metric 0 2721 | stubnet 10.68.13.84/32 metric 0 2722 | external 10.97.90.0/26 metric 20 2723 | 2724 | router 10.69.13.150 2725 | distance 33 2726 | router 10.69.13.50 metric 11 2727 | router 10.69.59.16 metric 11 2728 | stubnet 10.69.13.150/32 metric 0 2729 | external 10.70.180.224/27 metric 20 2730 | 2731 | router 10.69.14.17 2732 | distance 76 2733 | router 10.69.4.35 metric 100 2734 | router 10.69.14.117 metric 10 2735 | router 10.69.29.34 metric 10 2736 | router 10.69.4.35 metric 10 2737 | router 10.69.32.34 metric 10 2738 | stubnet 10.70.253.24/32 metric 0 2739 | stubnet 10.68.14.17/32 metric 0 2740 | stubnet 10.69.14.17/32 metric 0 2741 | external 10.70.84.65/32 metric 20 2742 | external 10.70.84.67/32 metric 20 2743 | external 10.70.84.69/32 metric 20 2744 | external 10.70.84.71/32 metric 20 2745 | external 10.70.84.73/32 metric 20 2746 | external 10.70.84.75/32 metric 20 2747 | external 10.70.84.77/32 metric 20 2748 | external 10.70.84.81/32 metric 20 2749 | external 10.70.84.83/32 metric 20 2750 | external 10.70.84.128/26 metric 20 2751 | external 10.70.84.192/26 metric 20 2752 | 2753 | router 10.69.14.30 2754 | distance 51 2755 | router 10.69.24.163 metric 10 2756 | router 10.69.2.39 metric 100 2757 | router 10.69.31.75 metric 100 2758 | stubnet 10.69.14.30/32 metric 0 2759 | stubnet 10.68.14.30/32 metric 0 2760 | external 10.97.101.128/26 metric 20 2761 | 2762 | router 10.69.14.40 2763 | distance 86 2764 | router 10.69.19.71 metric 10 2765 | router 10.70.175.1 metric 100 2766 | router 10.69.2.49 metric 100 2767 | router 10.69.35.31 metric 100 2768 | router 10.69.4.90 metric 100 2769 | router 10.69.1.51 metric 100 2770 | router 10.69.2.83 metric 100 2771 | router 10.69.79.41 metric 100 2772 | stubnet 10.69.14.40/32 metric 0 2773 | stubnet 10.68.14.40/32 metric 0 2774 | external 10.97.104.0/26 metric 20 2775 | 2776 | router 10.69.14.47 2777 | distance 26 2778 | router 10.69.54.20 metric 10 2779 | router 10.69.4.60 metric 10 2780 | router 10.69.7.13 metric 10 2781 | router 10.69.46.81 metric 100 2782 | router 10.69.4.60 metric 100 2783 | router 10.69.63.63 metric 100 2784 | router 10.69.54.20 metric 100 2785 | router 10.69.4.94 metric 100 2786 | router 10.69.24.81 metric 100 2787 | router 10.69.4.3 metric 100 2788 | stubnet 10.69.14.47/32 metric 0 2789 | stubnet 10.68.14.47/32 metric 0 2790 | external 10.97.105.192/26 metric 20 2791 | 2792 | router 10.69.14.117 2793 | distance 66 2794 | router 10.69.13.40 metric 50 2795 | router 10.69.14.17 metric 10 2796 | router 10.69.14.217 metric 10 2797 | router 10.69.36.6 metric 10 2798 | stubnet 10.70.253.23/32 metric 0 2799 | stubnet 10.69.14.117/32 metric 0 2800 | external 10.97.98.64/26 metric 20 2801 | 2802 | router 10.69.14.174 2803 | distance 36 2804 | router 10.69.51.51 metric 10 2805 | stubnet 10.69.14.174/32 metric 0 2806 | stubnet 10.68.14.174/32 metric 0 2807 | external 10.97.112.128/26 metric 20 2808 | 2809 | router 10.69.14.217 2810 | distance 65 2811 | router 10.69.14.117 metric 1 2812 | router 10.70.89.133 metric 50 2813 | stubnet 10.69.0.0/16 metric 1 2814 | stubnet 10.70.89.33/32 metric 0 2815 | 2816 | router 10.69.15.33 2817 | distance 38 2818 | router 10.69.13.40 metric 10 2819 | router 10.69.3.6 metric 100 2820 | stubnet 10.69.15.33/32 metric 0 2821 | stubnet 10.68.15.33/32 metric 0 2822 | external 10.97.127.64/26 metric 20 2823 | 2824 | router 10.69.15.47 2825 | distance 48 2826 | router 10.69.50.14 metric 10 2827 | router 10.69.21.1 metric 100 2828 | stubnet 10.255.255.4/30 metric 10 2829 | stubnet 10.69.15.47/32 metric 0 2830 | stubnet 10.68.15.47/32 metric 0 2831 | external 10.97.130.192/26 metric 20 2832 | 2833 | router 10.69.15.67 2834 | distance 61 2835 | router 10.69.2.27 metric 10 2836 | router 10.69.2.69 metric 100 2837 | stubnet 10.69.15.67/32 metric 0 2838 | stubnet 10.68.15.67/32 metric 0 2839 | external 10.97.135.192/26 metric 20 2840 | 2841 | router 10.69.15.98 2842 | distance 48 2843 | router 10.69.50.14 metric 10 2844 | stubnet 10.68.15.98/32 metric 0 2845 | stubnet 10.69.15.98/32 metric 0 2846 | external 10.97.143.128/26 metric 20 2847 | 2848 | router 10.69.16.6 2849 | distance 26 2850 | router 10.69.60.22 metric 100 2851 | router 10.69.7.13 metric 10 2852 | stubnet 10.68.16.6/32 metric 0 2853 | stubnet 10.69.16.6/32 metric 0 2854 | external 10.97.145.128/26 metric 20 2855 | 2856 | router 10.69.16.19 2857 | distance 48 2858 | router 10.69.51.7 metric 10 2859 | router 10.69.50.14 metric 10 2860 | router 10.69.51.7 metric 100 2861 | stubnet 10.69.16.19/32 metric 0 2862 | stubnet 10.68.16.19/32 metric 0 2863 | external 10.97.148.192/26 metric 20 2864 | 2865 | router 10.69.16.35 2866 | distance 26 2867 | router 10.69.78.25 metric 10 2868 | router 10.69.3.35 metric 10 2869 | router 10.69.26.16 metric 10 2870 | router 10.69.7.13 metric 10 2871 | router 10.69.78.17 metric 100 2872 | router 10.69.3.35 metric 100 2873 | stubnet 10.69.16.35/32 metric 0 2874 | stubnet 10.68.16.35/32 metric 0 2875 | external 10.97.152.192/26 metric 20 2876 | 2877 | router 10.69.17.79 2878 | distance 46 2879 | router 10.69.43.91 metric 10 2880 | router 10.69.52.83 metric 10 2881 | router 10.69.48.1 metric 10 2882 | router 10.69.43.91 metric 100 2883 | router 10.69.19.44 metric 100 2884 | router 10.69.48.1 metric 100 2885 | stubnet 10.69.17.79/32 metric 0 2886 | stubnet 10.68.17.79/32 metric 0 2887 | external 10.97.188.192/26 metric 20 2888 | 2889 | router 10.69.18.48 2890 | distance 61 2891 | router 10.69.1.51 metric 10 2892 | router 10.69.2.27 metric 10 2893 | router 10.69.1.51 metric 100 2894 | router 10.69.2.49 metric 100 2895 | stubnet 10.69.18.48/32 metric 0 2896 | stubnet 10.68.18.48/32 metric 0 2897 | external 10.97.206.0/26 metric 20 2898 | 2899 | router 10.69.18.93 2900 | distance 38 2901 | router 10.69.37.15 metric 10 2902 | router 10.69.13.40 metric 10 2903 | router 10.69.37.15 metric 100 2904 | router 10.69.40.18 metric 100 2905 | stubnet 10.69.18.93/32 metric 0 2906 | stubnet 10.68.18.93/32 metric 0 2907 | external 10.97.217.64/26 metric 20 2908 | 2909 | router 10.69.19.34 2910 | distance 31 2911 | router 10.69.0.10 metric 1 2912 | router 10.69.43.94 metric 10 2913 | router 10.69.2.52 metric 10 2914 | router 10.69.19.134 metric 10 2915 | router 10.69.4.7 metric 10 2916 | router 10.69.7.31 metric 10 2917 | router 10.69.43.42 metric 10 2918 | router 10.69.30.65 metric 10 2919 | router 10.69.10.84 metric 10 2920 | router 10.69.1.68 metric 10 2921 | router 10.69.3.4 metric 10 2922 | router 10.69.27.41 metric 10 2923 | router 10.69.75.12 metric 10 2924 | router 10.69.73.59 metric 10 2925 | router 10.69.19.133 metric 10 2926 | router 10.69.75.12 metric 5 2927 | router 10.69.59.16 metric 8 2928 | router 10.69.10.84 metric 5 2929 | router 10.69.24.163 metric 10 2930 | router 10.69.2.27 metric 20 2931 | router 10.69.20.90 metric 50 2932 | stubnet 10.70.253.38/31 metric 1 2933 | stubnet 10.69.19.34/32 metric 0 2934 | stubnet 10.70.184.0/22 metric 1 2935 | stubnet 10.70.188.0/24 metric 1 2936 | stubnet 10.70.251.9/32 metric 0 2937 | stubnet 10.70.251.13/32 metric 0 2938 | stubnet 10.70.251.1/32 metric 0 2939 | stubnet 10.70.251.5/32 metric 0 2940 | stubnet 10.70.251.18/32 metric 0 2941 | stubnet 10.70.251.44/30 metric 50 2942 | 2943 | router 10.69.19.44 2944 | distance 66 2945 | router 10.69.43.91 metric 10 2946 | router 10.69.17.79 metric 100 2947 | router 10.69.43.91 metric 100 2948 | router 10.69.48.1 metric 100 2949 | stubnet 10.69.19.44/32 metric 0 2950 | stubnet 10.68.19.44/32 metric 0 2951 | external 10.97.230.0/26 metric 20 2952 | 2953 | router 10.69.19.46 2954 | distance 53 2955 | router 10.69.3.3 metric 100 2956 | router 10.69.62.48 metric 100 2957 | stubnet 10.68.19.46/32 metric 0 2958 | stubnet 10.69.19.46/32 metric 0 2959 | external 10.97.230.128/26 metric 20 2960 | 2961 | router 10.69.19.71 2962 | distance 76 2963 | router 10.69.2.27 metric 25 2964 | router 10.69.4.4 metric 10 2965 | router 10.69.73.47 metric 10 2966 | router 10.69.2.48 metric 10 2967 | router 10.69.14.40 metric 10 2968 | router 10.70.175.1 metric 10 2969 | router 10.69.4.7 metric 10 2970 | stubnet 10.70.253.20/32 metric 0 2971 | stubnet 10.69.19.71/32 metric 0 2972 | stubnet 10.68.19.71/32 metric 0 2973 | external 10.97.236.192/26 metric 20 2974 | 2975 | router 10.69.19.133 2976 | distance 41 2977 | router 10.69.19.34 metric 10 2978 | stubnet 10.10.10.123/32 metric 0 2979 | stubnet 10.69.19.133/32 metric 0 2980 | external 10.10.10.123/32 metric 1 2981 | 2982 | router 10.69.19.134 2983 | distance 41 2984 | router 10.69.19.34 metric 10 2985 | stubnet 10.69.19.134/32 metric 0 2986 | external 10.97.227.128/26 metric 20 2987 | 2988 | router 10.69.20.12 2989 | distance 33 2990 | router 10.69.59.16 metric 10 2991 | router 10.69.2.14 metric 10 2992 | router 10.69.2.14 metric 100 2993 | router 10.69.77.70 metric 100 2994 | stubnet 10.69.20.12/32 metric 0 2995 | stubnet 10.68.20.12/32 metric 0 2996 | external 10.97.247.0/26 metric 20 2997 | 2998 | router 10.69.20.90 2999 | distance 67 3000 | router 10.69.24.163 metric 26 3001 | router 10.69.19.34 metric 50 3002 | router 10.69.33.53 metric 100 3003 | router 10.69.37.21 metric 100 3004 | router 10.69.46.93 metric 100 3005 | router 10.69.46.93 metric 10 3006 | router 10.69.37.21 metric 10 3007 | stubnet 10.70.253.45/32 metric 0 3008 | stubnet 10.70.251.44/30 metric 50 3009 | stubnet 10.68.20.90/32 metric 0 3010 | stubnet 10.69.20.90/32 metric 0 3011 | external 10.98.10.128/26 metric 20 3012 | 3013 | router 10.69.21.1 3014 | distance 38 3015 | router 10.69.13.40 metric 60 3016 | router 10.69.1.84 metric 100 3017 | router 10.69.15.47 metric 100 3018 | stubnet 10.69.21.1/32 metric 0 3019 | stubnet 10.68.21.1/32 metric 0 3020 | external 10.98.13.64/26 metric 20 3021 | 3022 | router 10.69.22.3 3023 | distance 38 3024 | router 10.69.71.19 metric 10 3025 | router 10.69.13.40 metric 10 3026 | router 10.69.71.19 metric 100 3027 | router 10.69.68.45 metric 100 3028 | stubnet 10.69.22.3/32 metric 0 3029 | stubnet 10.68.22.3/32 metric 0 3030 | external 10.98.38.192/26 metric 20 3031 | 3032 | router 10.69.22.74 3033 | distance 50 3034 | router 10.69.24.163 metric 9 3035 | router 10.69.7.31 metric 20 3036 | router 10.69.63.11 metric 10 3037 | router 10.69.41.16 metric 10 3038 | router 10.69.79.26 metric 10 3039 | router 10.69.35.78 metric 10 3040 | router 10.69.58.33 metric 10 3041 | router 10.69.11.63 metric 10 3042 | router 10.69.77.89 metric 10 3043 | router 10.69.2.69 metric 10 3044 | router 10.69.4.81 metric 10 3045 | router 10.69.58.33 metric 100 3046 | stubnet 10.70.253.19/32 metric 0 3047 | stubnet 10.70.253.50/32 metric 0 3048 | stubnet 10.69.22.74/32 metric 0 3049 | stubnet 10.68.22.74/32 metric 0 3050 | external 10.98.56.128/26 metric 20 3051 | 3052 | router 10.69.22.82 3053 | distance 26 3054 | router 10.69.7.13 metric 11 3055 | router 10.69.4.66 metric 10 3056 | router 10.69.67.74 metric 10 3057 | router 10.69.65.65 metric 10 3058 | router 10.69.7.13 metric 10 3059 | router 10.69.58.6 metric 10 3060 | stubnet 10.70.253.53/32 metric 0 3061 | stubnet 10.69.22.82/32 metric 0 3062 | external 10.98.58.128/26 metric 20 3063 | external 199.170.132.98/32 metric 20 3064 | 3065 | router 10.69.23.50 3066 | distance 61 3067 | router 10.69.2.27 metric 10 3068 | router 10.69.4.90 metric 100 3069 | stubnet 10.69.23.50/32 metric 0 3070 | stubnet 10.68.23.50/32 metric 0 3071 | external 10.98.75.128/26 metric 20 3072 | 3073 | router 10.69.24.41 3074 | distance 61 3075 | router 10.69.68.44 metric 10 3076 | router 10.69.2.27 metric 10 3077 | router 10.69.68.44 metric 100 3078 | router 10.69.51.55 metric 100 3079 | stubnet 10.69.24.41/32 metric 0 3080 | stubnet 10.68.24.41/32 metric 0 3081 | external 10.98.98.64/26 metric 20 3082 | 3083 | router 10.69.24.62 3084 | distance 26 3085 | router 10.69.79.34 metric 10 3086 | router 10.69.55.78 metric 10 3087 | router 10.69.7.13 metric 10 3088 | router 10.69.79.34 metric 100 3089 | router 10.69.55.78 metric 100 3090 | stubnet 10.69.24.62/32 metric 0 3091 | stubnet 10.68.24.62/32 metric 0 3092 | external 10.98.103.128/26 metric 20 3093 | 3094 | router 10.69.24.63 3095 | distance 51 3096 | router 10.69.24.163 metric 10 3097 | stubnet 10.68.24.63/32 metric 0 3098 | stubnet 10.69.24.63/32 metric 0 3099 | external 10.98.103.192/26 metric 20 3100 | 3101 | router 10.69.24.81 3102 | distance 26 3103 | router 10.69.7.13 metric 10 3104 | router 10.69.2.82 metric 100 3105 | router 10.69.63.63 metric 100 3106 | router 10.69.54.20 metric 100 3107 | router 10.69.46.81 metric 100 3108 | router 10.69.4.94 metric 100 3109 | router 10.69.14.47 metric 100 3110 | stubnet 10.69.24.81/32 metric 0 3111 | stubnet 10.68.24.81/32 metric 0 3112 | external 10.98.108.64/26 metric 20 3113 | 3114 | router 10.69.24.82 3115 | distance 33 3116 | router 10.69.59.16 metric 10 3117 | router 10.69.3.80 metric 10 3118 | router 10.69.62.48 metric 10 3119 | router 10.69.3.80 metric 100 3120 | router 10.69.62.48 metric 100 3121 | router 10.69.4.88 metric 100 3122 | stubnet 10.69.24.82/32 metric 0 3123 | stubnet 10.68.24.82/32 metric 0 3124 | external 10.98.108.128/26 metric 20 3125 | 3126 | router 10.69.24.163 3127 | distance 41 3128 | router 10.69.24.63 metric 10 3129 | router 10.69.47.45 metric 10 3130 | router 10.70.164.1 metric 10 3131 | router 10.69.2.39 metric 10 3132 | router 10.69.5.7 metric 10 3133 | router 10.69.31.75 metric 10 3134 | router 10.69.14.30 metric 10 3135 | router 10.69.60.4 metric 10 3136 | router 10.69.4.7 metric 10 3137 | router 10.69.3.8 metric 10 3138 | router 10.69.3.69 metric 10 3139 | router 199.167.59.98 metric 10 3140 | router 10.69.2.94 metric 10 3141 | router 10.69.75.35 metric 10 3142 | router 10.69.77.64 metric 10 3143 | router 10.69.4.54 metric 10 3144 | router 10.69.40.26 metric 10 3145 | router 10.69.29.83 metric 10 3146 | router 10.69.3.78 metric 10 3147 | router 10.69.7.31 metric 10 3148 | router 10.69.3.74 metric 10 3149 | router 10.69.20.90 metric 26 3150 | router 10.69.19.34 metric 10 3151 | router 10.69.22.74 metric 9 3152 | stubnet 10.69.24.163/32 metric 0 3153 | stubnet 10.70.253.44/32 metric 0 3154 | stubnet 10.70.251.6/32 metric 0 3155 | stubnet 10.70.253.18/32 metric 0 3156 | external 10.70.161.0/24 metric 20 3157 | external 10.70.161.160/27 metric 20 3158 | 3159 | router 10.69.26.16 3160 | distance 36 3161 | router 10.69.16.35 metric 10 3162 | router 10.69.3.35 metric 100 3163 | stubnet 10.69.26.16/32 metric 0 3164 | stubnet 10.68.26.16/32 metric 0 3165 | external 10.98.142.0/26 metric 20 3166 | 3167 | router 10.69.26.46 3168 | distance 53 3169 | router 10.69.26.146 metric 10 3170 | router 10.69.2.2 metric 100 3171 | router 10.69.4.56 metric 100 3172 | router 10.69.36.7 metric 100 3173 | router 10.69.11.59 metric 100 3174 | router 10.69.75.45 metric 100 3175 | stubnet 10.69.26.46/32 metric 0 3176 | stubnet 10.68.26.46/32 metric 0 3177 | external 10.98.149.128/26 metric 20 3178 | 3179 | router 10.69.26.47 3180 | distance 38 3181 | router 10.69.13.40 metric 10 3182 | router 10.69.1.159 metric 10 3183 | router 10.69.1.87 metric 100 3184 | router 10.69.3.79 metric 100 3185 | stubnet 10.69.26.47/32 metric 0 3186 | stubnet 10.68.26.47/32 metric 0 3187 | external 10.98.149.192/26 metric 20 3188 | 3189 | router 10.69.26.146 3190 | distance 43 3191 | router 10.69.26.46 metric 10 3192 | router 10.69.4.56 metric 10 3193 | router 10.69.36.7 metric 10 3194 | router 10.69.2.2 metric 10 3195 | stubnet 10.69.26.146/32 metric 0 3196 | stubnet 10.68.26.146/32 metric 0 3197 | 3198 | router 10.69.27.1 3199 | distance 26 3200 | router 10.69.2.44 metric 10 3201 | router 10.69.2.45 metric 10 3202 | router 10.69.50.89 metric 10 3203 | router 10.69.7.13 metric 10 3204 | router 10.69.2.44 metric 100 3205 | router 10.69.32.84 metric 100 3206 | router 10.69.2.45 metric 100 3207 | stubnet 10.69.27.1/32 metric 0 3208 | stubnet 10.68.27.1/32 metric 0 3209 | external 10.98.163.64/26 metric 20 3210 | 3211 | router 10.69.27.16 3212 | distance 43 3213 | router 10.69.1.55 metric 10 3214 | router 10.69.1.93 metric 10 3215 | router 10.69.3.96 metric 10 3216 | router 10.69.1.93 metric 100 3217 | stubnet 10.69.27.16/32 metric 0 3218 | stubnet 10.68.27.16/32 metric 0 3219 | external 10.98.167.0/26 metric 20 3220 | 3221 | router 10.69.27.41 3222 | distance 41 3223 | router 10.69.19.34 metric 50 3224 | stubnet 10.69.27.41/32 metric 0 3225 | stubnet 10.68.27.41/32 metric 0 3226 | external 10.98.173.64/26 metric 20 3227 | 3228 | router 10.69.28.27 3229 | distance 96 3230 | router 10.69.28.127 metric 10 3231 | router 10.69.3.156 metric 10 3232 | router 10.69.41.26 metric 100 3233 | router 10.69.2.47 metric 100 3234 | router 10.69.70.37 metric 100 3235 | stubnet 10.69.28.27/32 metric 0 3236 | stubnet 10.68.28.27/32 metric 0 3237 | external 10.98.194.192/26 metric 20 3238 | 3239 | router 10.69.28.74 3240 | distance 38 3241 | router 10.69.29.59 metric 100 3242 | router 10.69.44.33 metric 100 3243 | router 10.69.75.82 metric 100 3244 | router 10.69.1.16 metric 100 3245 | router 10.69.2.53 metric 100 3246 | router 10.69.13.40 metric 10 3247 | stubnet 10.68.28.74/32 metric 0 3248 | stubnet 10.69.28.74/32 metric 0 3249 | external 10.98.206.128/26 metric 20 3250 | 3251 | router 10.69.28.83 3252 | distance 26 3253 | router 10.69.7.13 metric 10 3254 | stubnet 10.69.28.83/32 metric 0 3255 | stubnet 10.68.28.83/32 metric 0 3256 | external 10.98.208.192/26 metric 20 3257 | 3258 | router 10.69.28.89 3259 | distance 36 3260 | router 10.69.34.61 metric 10 3261 | stubnet 10.68.28.89/32 metric 0 3262 | stubnet 10.69.28.89/32 metric 0 3263 | external 10.98.210.64/26 metric 20 3264 | 3265 | router 10.69.28.127 3266 | distance 86 3267 | router 10.69.41.26 metric 10 3268 | router 10.69.28.27 metric 10 3269 | stubnet 10.69.28.127/32 metric 0 3270 | stubnet 10.68.28.127/32 metric 0 3271 | 3272 | router 10.69.29.32 3273 | distance 38 3274 | router 10.69.50.94 metric 10 3275 | router 10.69.13.40 metric 10 3276 | router 10.69.47.33 metric 10 3277 | router 10.69.50.94 metric 100 3278 | router 10.69.4.6 metric 100 3279 | router 10.69.50.20 metric 100 3280 | router 10.69.64.86 metric 100 3281 | stubnet 10.69.29.32/32 metric 0 3282 | stubnet 10.68.29.32/32 metric 0 3283 | external 10.98.221.0/26 metric 20 3284 | 3285 | router 10.69.29.34 3286 | distance 86 3287 | router 10.69.14.17 metric 10 3288 | stubnet 10.68.29.34/32 metric 0 3289 | stubnet 10.69.29.34/32 metric 0 3290 | external 10.98.221.128/26 metric 20 3291 | 3292 | router 10.69.29.59 3293 | distance 38 3294 | router 10.69.13.40 metric 10 3295 | router 10.69.28.74 metric 100 3296 | router 10.69.75.82 metric 100 3297 | router 10.69.44.33 metric 100 3298 | router 10.69.2.12 metric 100 3299 | stubnet 10.69.29.59/32 metric 0 3300 | stubnet 10.68.29.59/32 metric 0 3301 | external 10.98.227.192/26 metric 20 3302 | 3303 | router 10.69.29.83 3304 | distance 51 3305 | router 10.69.24.163 metric 10 3306 | router 199.167.59.98 metric 100 3307 | stubnet 10.69.29.83/32 metric 0 3308 | stubnet 10.68.29.83/32 metric 0 3309 | external 10.98.233.192/26 metric 20 3310 | 3311 | router 10.69.29.94 3312 | distance 70 3313 | router 10.69.35.78 metric 10 3314 | router 10.69.35.78 metric 100 3315 | router 10.69.30.16 metric 100 3316 | router 10.69.75.153 metric 100 3317 | stubnet 10.69.29.94/32 metric 0 3318 | stubnet 10.68.29.94/32 metric 0 3319 | external 10.98.236.128/26 metric 20 3320 | 3321 | router 10.69.30.4 3322 | distance 61 3323 | router 10.69.2.27 metric 10 3324 | router 10.69.62.74 metric 100 3325 | router 10.69.3.19 metric 100 3326 | router 10.69.63.46 metric 100 3327 | stubnet 10.69.30.4/32 metric 0 3328 | stubnet 10.68.30.4/32 metric 0 3329 | external 10.98.239.0/26 metric 20 3330 | 3331 | router 10.69.30.16 3332 | distance 51 3333 | router 10.69.7.31 metric 10 3334 | router 10.69.35.78 metric 100 3335 | router 10.69.29.94 metric 100 3336 | stubnet 10.69.30.16/32 metric 0 3337 | stubnet 10.68.30.16/32 metric 0 3338 | external 10.98.242.0/26 metric 20 3339 | 3340 | router 10.69.30.37 3341 | distance 61 3342 | router 10.69.2.27 metric 10 3343 | router 10.69.4.51 metric 100 3344 | router 10.69.4.64 metric 100 3345 | router 10.69.62.74 metric 100 3346 | stubnet 10.69.30.37/32 metric 0 3347 | stubnet 10.68.30.37/32 metric 0 3348 | external 10.98.247.64/26 metric 20 3349 | external 199.167.59.95/32 metric 20 3350 | 3351 | router 10.69.30.65 3352 | distance 41 3353 | router 10.69.19.34 metric 10 3354 | stubnet 10.69.30.65/32 metric 0 3355 | stubnet 10.68.30.65/32 metric 0 3356 | external 10.98.254.64/26 metric 20 3357 | 3358 | router 10.69.31.75 3359 | distance 51 3360 | router 10.69.24.163 metric 10 3361 | router 10.70.164.1 metric 100 3362 | router 10.69.2.39 metric 100 3363 | router 10.69.14.30 metric 100 3364 | stubnet 10.69.31.75/32 metric 0 3365 | stubnet 10.68.31.75/32 metric 0 3366 | external 10.99.25.192/26 metric 20 3367 | 3368 | router 10.69.32.13 3369 | distance 38 3370 | router 10.69.59.47 metric 10 3371 | router 10.69.61.21 metric 10 3372 | router 10.69.13.40 metric 10 3373 | router 10.69.59.47 metric 100 3374 | router 10.69.61.21 metric 100 3375 | stubnet 10.69.32.13/32 metric 0 3376 | stubnet 10.68.32.13/32 metric 0 3377 | external 10.99.35.64/26 metric 20 3378 | 3379 | router 10.69.32.17 3380 | distance 43 3381 | router 10.69.54.25 metric 10 3382 | router 10.69.54.25 metric 100 3383 | stubnet 10.69.32.17/32 metric 0 3384 | stubnet 10.68.32.17/32 metric 0 3385 | external 10.99.36.64/26 metric 20 3386 | 3387 | router 10.69.32.33 3388 | distance 38 3389 | router 10.69.2.62 metric 10 3390 | router 10.69.3.79 metric 10 3391 | router 10.69.13.40 metric 10 3392 | router 10.69.2.62 metric 100 3393 | router 10.69.3.79 metric 100 3394 | router 10.69.1.59 metric 100 3395 | router 10.69.50.20 metric 100 3396 | router 10.69.4.40 metric 100 3397 | stubnet 10.69.32.33/32 metric 0 3398 | stubnet 10.68.32.33/32 metric 0 3399 | external 10.99.40.64/26 metric 20 3400 | external 199.167.59.83/32 metric 20 3401 | 3402 | router 10.69.32.34 3403 | distance 86 3404 | router 10.69.14.17 metric 10 3405 | stubnet 10.69.32.34/32 metric 0 3406 | stubnet 10.68.32.34/32 metric 0 3407 | external 10.99.40.128/26 metric 20 3408 | 3409 | router 10.69.32.82 3410 | distance 38 3411 | router 10.69.13.40 metric 10 3412 | stubnet 10.69.32.82/32 metric 0 3413 | stubnet 10.68.32.82/32 metric 0 3414 | external 10.99.52.128/26 metric 20 3415 | 3416 | router 10.69.32.84 3417 | distance 26 3418 | router 10.69.7.13 metric 10 3419 | router 10.69.27.1 metric 100 3420 | router 10.69.2.44 metric 100 3421 | stubnet 10.69.32.84/32 metric 0 3422 | stubnet 10.68.32.84/32 metric 0 3423 | external 10.99.53.0/26 metric 20 3424 | 3425 | router 10.69.33.0 3426 | distance 26 3427 | router 10.69.7.13 metric 10 3428 | router 10.69.1.75 metric 100 3429 | router 10.69.64.50 metric 100 3430 | router 10.69.66.23 metric 100 3431 | router 10.69.3.14 metric 100 3432 | router 10.69.63.63 metric 100 3433 | router 10.69.2.50 metric 100 3434 | router 10.69.66.22 metric 100 3435 | router 10.69.59.89 metric 100 3436 | router 10.69.4.98 metric 100 3437 | router 10.69.33.54 metric 100 3438 | stubnet 10.69.33.0/32 metric 0 3439 | stubnet 10.68.33.0/32 metric 0 3440 | external 10.99.57.0/26 metric 20 3441 | 3442 | router 10.69.33.1 3443 | distance 36 3444 | router 10.69.79.86 metric 100 3445 | router 10.69.34.61 metric 10 3446 | router 10.69.79.86 metric 10 3447 | stubnet 10.68.33.1/32 metric 0 3448 | stubnet 10.69.33.1/32 metric 0 3449 | external 10.99.57.64/26 metric 20 3450 | 3451 | router 10.69.33.5 3452 | distance 54 3453 | router 10.69.66.18 metric 100 3454 | router 10.69.13.50 metric 100 3455 | router 10.69.65.81 metric 100 3456 | router 10.69.48.69 metric 100 3457 | router 10.69.13.50 metric 10 3458 | stubnet 10.68.33.5/32 metric 0 3459 | stubnet 10.69.33.5/32 metric 0 3460 | external 10.99.58.64/26 metric 20 3461 | external 199.170.132.90/32 metric 20 3462 | 3463 | router 10.69.33.53 3464 | distance 87 3465 | router 10.69.37.21 metric 10 3466 | router 10.69.46.93 metric 100 3467 | router 10.69.37.21 metric 100 3468 | router 10.69.20.90 metric 100 3469 | stubnet 10.69.33.53/32 metric 0 3470 | stubnet 10.68.33.53/32 metric 0 3471 | external 10.99.70.64/26 metric 20 3472 | 3473 | router 10.69.33.54 3474 | distance 26 3475 | router 10.69.7.13 metric 10 3476 | router 10.69.3.0 metric 100 3477 | router 10.69.63.63 metric 100 3478 | router 10.69.78.68 metric 100 3479 | router 10.69.4.3 metric 100 3480 | router 10.69.46.81 metric 100 3481 | router 10.69.1.75 metric 100 3482 | router 10.69.33.0 metric 100 3483 | stubnet 10.69.33.54/32 metric 0 3484 | stubnet 10.68.33.54/32 metric 0 3485 | external 10.99.70.128/26 metric 20 3486 | 3487 | router 10.69.33.96 3488 | distance 38 3489 | router 10.69.13.40 metric 10 3490 | router 10.69.1.49 metric 100 3491 | stubnet 10.69.33.96/32 metric 0 3492 | stubnet 10.68.33.96/32 metric 0 3493 | external 10.99.81.0/26 metric 20 3494 | 3495 | router 10.69.33.105 3496 | distance 54 3497 | router 10.69.13.50 metric 10 3498 | stubnet 10.69.33.105/32 metric 0 3499 | stubnet 10.68.33.105/32 metric 0 3500 | 3501 | router 10.69.34.24 3502 | distance 36 3503 | router 10.69.34.61 metric 10 3504 | router 10.69.2.91 metric 100 3505 | router 10.69.2.42 metric 100 3506 | router 10.69.3.16 metric 100 3507 | router 10.69.2.79 metric 100 3508 | router 10.69.2.36 metric 100 3509 | router 10.69.51.34 metric 100 3510 | stubnet 10.69.34.24/32 metric 0 3511 | stubnet 10.68.34.24/32 metric 0 3512 | external 10.99.88.0/26 metric 20 3513 | 3514 | router 10.69.34.61 3515 | distance 26 3516 | router 10.69.3.68 metric 100 3517 | router 10.69.41.26 metric 50 3518 | router 10.69.59.16 metric 15 3519 | router 10.69.74.89 metric 100 3520 | router 10.69.7.13 metric 10 3521 | router 10.69.52.83 metric 10 3522 | router 10.69.2.79 metric 10 3523 | router 10.69.2.91 metric 10 3524 | router 10.69.2.36 metric 10 3525 | router 10.69.67.93 metric 10 3526 | router 10.69.2.97 metric 10 3527 | router 10.69.73.98 metric 10 3528 | router 10.69.2.35 metric 10 3529 | router 10.69.37.13 metric 10 3530 | router 10.69.75.45 metric 10 3531 | router 10.69.33.1 metric 10 3532 | router 10.69.41.92 metric 10 3533 | router 10.69.79.54 metric 10 3534 | router 10.69.3.34 metric 10 3535 | router 10.69.4.29 metric 10 3536 | router 10.69.70.7 metric 10 3537 | router 10.69.4.71 metric 10 3538 | router 10.69.34.24 metric 10 3539 | router 10.69.74.98 metric 10 3540 | router 10.69.4.58 metric 10 3541 | router 10.69.53.27 metric 10 3542 | router 10.69.4.62 metric 10 3543 | router 10.69.50.51 metric 10 3544 | router 10.69.53.44 metric 10 3545 | router 10.69.7.79 metric 10 3546 | router 10.69.72.52 metric 10 3547 | router 10.69.4.19 metric 10 3548 | router 10.69.28.89 metric 10 3549 | router 10.69.48.91 metric 10 3550 | router 10.69.75.37 metric 10 3551 | router 10.69.4.14 metric 10 3552 | router 10.69.1.81 metric 10 3553 | router 10.69.44.59 metric 10 3554 | router 10.69.52.43 metric 10 3555 | router 10.69.44.39 metric 10 3556 | router 10.69.1.54 metric 10 3557 | router 10.69.44.2 metric 10 3558 | router 10.69.40.62 metric 10 3559 | router 10.69.62.19 metric 10 3560 | router 10.69.4.76 metric 10 3561 | router 10.69.36.82 metric 10 3562 | router 10.69.1.85 metric 10 3563 | router 10.69.56.86 metric 10 3564 | router 10.69.0.48 metric 10 3565 | router 10.69.45.7 metric 10 3566 | router 10.69.9.44 metric 10 3567 | router 10.69.1.77 metric 10 3568 | router 10.69.36.7 metric 10 3569 | router 10.69.45.17 metric 10 3570 | router 10.69.51.34 metric 10 3571 | router 10.69.2.28 metric 10 3572 | stubnet 10.70.253.57/32 metric 0 3573 | stubnet 10.70.253.40/32 metric 0 3574 | stubnet 10.70.253.31/32 metric 0 3575 | stubnet 10.70.253.8/32 metric 0 3576 | stubnet 10.70.253.1/32 metric 0 3577 | stubnet 10.69.34.61/32 metric 0 3578 | external 10.70.179.0/24 metric 20 3579 | external 10.99.97.64/26 metric 20 3580 | 3581 | router 10.69.34.80 3582 | distance 38 3583 | router 10.69.13.40 metric 10 3584 | router 10.69.2.34 metric 10 3585 | router 10.69.2.34 metric 100 3586 | stubnet 10.69.34.80/32 metric 0 3587 | stubnet 10.68.34.80/32 metric 0 3588 | external 10.99.102.0/26 metric 20 3589 | external 199.167.59.87/32 metric 20 3590 | 3591 | router 10.69.35.31 3592 | distance 61 3593 | router 10.69.1.51 metric 100 3594 | router 10.70.175.1 metric 100 3595 | router 10.69.14.40 metric 100 3596 | router 10.69.4.90 metric 100 3597 | router 10.69.2.49 metric 100 3598 | router 10.69.79.41 metric 100 3599 | router 10.69.4.51 metric 100 3600 | router 10.69.2.27 metric 10 3601 | stubnet 10.68.35.31/32 metric 0 3602 | stubnet 10.69.35.31/32 metric 0 3603 | external 10.99.114.192/26 metric 20 3604 | 3605 | router 10.69.35.72 3606 | distance 46 3607 | router 10.69.45.6 metric 100 3608 | router 10.69.43.93 metric 100 3609 | router 10.69.44.59 metric 100 3610 | router 10.69.44.2 metric 100 3611 | router 10.69.48.91 metric 100 3612 | router 10.69.48.68 metric 100 3613 | router 10.69.44.59 metric 10 3614 | stubnet 10.68.35.72/32 metric 0 3615 | stubnet 10.69.35.72/32 metric 0 3616 | external 10.99.125.0/26 metric 20 3617 | 3618 | router 10.69.35.75 3619 | distance 54 3620 | router 10.69.13.50 metric 10 3621 | router 10.69.13.50 metric 100 3622 | router 10.69.66.18 metric 100 3623 | router 10.69.48.69 metric 100 3624 | router 10.69.72.52 metric 100 3625 | stubnet 10.69.35.75/32 metric 0 3626 | stubnet 10.68.35.75/32 metric 0 3627 | external 10.99.125.192/26 metric 20 3628 | 3629 | router 10.69.35.78 3630 | distance 60 3631 | router 10.69.29.94 metric 10 3632 | router 10.69.22.74 metric 10 3633 | router 10.69.75.153 metric 100 3634 | router 10.69.29.94 metric 100 3635 | router 10.69.30.16 metric 100 3636 | stubnet 10.69.35.78/32 metric 0 3637 | stubnet 10.68.35.78/32 metric 0 3638 | external 10.99.126.128/26 metric 20 3639 | 3640 | router 10.69.36.6 3641 | distance 76 3642 | router 10.69.1.69 metric 10 3643 | router 10.69.14.117 metric 10 3644 | router 10.69.1.69 metric 100 3645 | router 10.69.59.33 metric 100 3646 | stubnet 10.70.253.3/32 metric 0 3647 | stubnet 10.69.36.6/32 metric 0 3648 | stubnet 10.68.36.6/32 metric 0 3649 | external 10.99.133.128/26 metric 20 3650 | 3651 | router 10.69.36.7 3652 | distance 33 3653 | router 10.69.4.56 metric 10 3654 | router 10.69.2.2 metric 10 3655 | router 10.69.26.146 metric 10 3656 | router 10.69.34.61 metric 10 3657 | router 10.69.59.16 metric 10 3658 | router 10.69.26.46 metric 100 3659 | router 10.69.4.56 metric 100 3660 | router 10.69.2.2 metric 100 3661 | router 10.69.11.59 metric 100 3662 | router 10.69.37.13 metric 100 3663 | stubnet 10.69.36.7/32 metric 0 3664 | stubnet 10.68.36.7/32 metric 0 3665 | external 10.99.133.192/26 metric 20 3666 | 3667 | router 10.69.36.54 3668 | distance 61 3669 | router 10.69.2.27 metric 10 3670 | stubnet 10.68.36.54/32 metric 0 3671 | stubnet 10.69.36.54/32 metric 0 3672 | external 10.99.145.128/26 metric 20 3673 | external 199.167.59.89/32 metric 20 3674 | 3675 | router 10.69.36.82 3676 | distance 36 3677 | router 10.69.34.61 metric 10 3678 | stubnet 10.69.36.82/32 metric 0 3679 | stubnet 10.68.36.82/32 metric 0 3680 | external 10.99.152.128/26 metric 20 3681 | 3682 | router 10.69.37.13 3683 | distance 36 3684 | router 10.69.34.61 metric 10 3685 | router 10.69.36.7 metric 100 3686 | stubnet 10.69.37.13/32 metric 0 3687 | stubnet 10.68.37.13/32 metric 0 3688 | external 10.99.160.64/26 metric 20 3689 | 3690 | router 10.69.37.15 3691 | distance 38 3692 | router 10.69.18.93 metric 10 3693 | router 10.69.13.40 metric 10 3694 | router 10.69.18.93 metric 100 3695 | router 10.69.40.18 metric 100 3696 | stubnet 10.69.37.15/32 metric 0 3697 | stubnet 10.68.37.15/32 metric 0 3698 | external 10.99.160.192/26 metric 20 3699 | 3700 | router 10.69.37.21 3701 | distance 77 3702 | router 10.69.33.53 metric 10 3703 | router 10.69.20.90 metric 10 3704 | router 10.69.33.53 metric 100 3705 | router 10.69.46.93 metric 100 3706 | router 10.69.20.90 metric 100 3707 | stubnet 10.69.37.21/32 metric 0 3708 | stubnet 10.68.37.21/32 metric 0 3709 | external 10.99.162.64/26 metric 20 3710 | 3711 | router 10.69.38.64 3712 | distance 101 3713 | router 10.69.6.59 metric 10 3714 | router 10.69.6.59 metric 100 3715 | stubnet 10.69.38.64/32 metric 0 3716 | stubnet 10.68.38.64/32 metric 0 3717 | external 10.99.198.0/26 metric 20 3718 | 3719 | router 10.69.39.23 3720 | distance 38 3721 | router 10.69.13.40 metric 10 3722 | router 10.69.42.85 metric 100 3723 | router 10.69.74.49 metric 100 3724 | stubnet 10.69.39.23/32 metric 0 3725 | stubnet 10.68.39.23/32 metric 0 3726 | external 10.99.212.192/26 metric 20 3727 | 3728 | router 10.69.40.18 3729 | distance 38 3730 | router 10.69.13.40 metric 10 3731 | router 10.69.37.15 metric 100 3732 | router 10.69.18.93 metric 100 3733 | stubnet 10.69.40.18/32 metric 0 3734 | stubnet 10.68.40.18/32 metric 0 3735 | external 10.99.236.128/26 metric 20 3736 | 3737 | router 10.69.40.26 3738 | distance 51 3739 | router 10.69.24.163 metric 10 3740 | stubnet 10.69.40.26/32 metric 0 3741 | stubnet 10.68.40.26/32 metric 0 3742 | external 10.99.238.128/26 metric 20 3743 | 3744 | router 10.69.40.62 3745 | distance 36 3746 | router 10.69.2.11 metric 10 3747 | router 10.69.34.61 metric 10 3748 | router 10.69.2.11 metric 100 3749 | stubnet 10.69.40.62/32 metric 0 3750 | stubnet 10.68.40.62/32 metric 0 3751 | external 10.99.247.128/26 metric 20 3752 | 3753 | router 10.69.40.143 3754 | distance 50 3755 | router 10.69.3.29 metric 10 3756 | stubnet 10.69.40.143/32 metric 0 3757 | stubnet 10.68.40.143/32 metric 0 3758 | external 10.99.242.192/26 metric 20 3759 | 3760 | router 10.69.41.16 3761 | distance 60 3762 | router 10.69.22.74 metric 10 3763 | router 10.69.1.78 metric 100 3764 | router 10.69.77.89 metric 100 3765 | router 10.69.79.26 metric 100 3766 | stubnet 10.69.41.16/32 metric 0 3767 | stubnet 10.68.41.16/32 metric 0 3768 | external 10.100.5.0/26 metric 20 3769 | external 199.167.59.92/32 metric 20 3770 | 3771 | router 10.69.41.26 3772 | distance 76 3773 | router 10.69.34.61 metric 50 3774 | router 10.69.28.127 metric 10 3775 | router 10.69.28.27 metric 100 3776 | stubnet 10.70.253.41/32 metric 0 3777 | stubnet 10.69.41.26/32 metric 0 3778 | stubnet 10.68.41.26/32 metric 0 3779 | external 10.100.7.128/26 metric 20 3780 | 3781 | router 10.69.41.28 3782 | distance 49 3783 | router 10.69.51.27 metric 10 3784 | stubnet 10.68.41.28/32 metric 0 3785 | stubnet 10.69.41.28/32 metric 0 3786 | external 10.100.8.0/26 metric 20 3787 | 3788 | router 10.69.41.53 3789 | distance 33 3790 | router 10.69.4.75 metric 10 3791 | router 10.69.59.16 metric 10 3792 | router 10.69.4.75 metric 100 3793 | router 10.69.4.87 metric 100 3794 | router 10.69.4.34 metric 100 3795 | router 10.69.2.2 metric 100 3796 | stubnet 10.69.41.53/32 metric 0 3797 | stubnet 10.68.41.53/32 metric 0 3798 | external 10.100.14.64/26 metric 20 3799 | 3800 | router 10.69.41.81 3801 | distance 71 3802 | router 10.69.41.181 metric 10 3803 | router 10.69.1.38 metric 100 3804 | router 10.69.44.41 metric 100 3805 | stubnet 10.69.41.81/32 metric 0 3806 | stubnet 10.68.41.81/32 metric 0 3807 | external 10.100.21.64/26 metric 20 3808 | 3809 | router 10.69.41.92 3810 | distance 36 3811 | router 10.69.34.61 metric 10 3812 | router 10.69.77.165 metric 10 3813 | router 10.69.79.54 metric 100 3814 | router 10.69.77.65 metric 100 3815 | router 10.69.4.76 metric 100 3816 | stubnet 10.69.41.92/32 metric 0 3817 | stubnet 10.68.41.92/32 metric 0 3818 | external 10.100.24.0/26 metric 20 3819 | 3820 | router 10.69.41.181 3821 | distance 61 3822 | router 10.69.41.81 metric 10 3823 | router 10.69.1.38 metric 10 3824 | stubnet 10.69.41.181/32 metric 0 3825 | stubnet 10.68.41.181/32 metric 0 3826 | 3827 | router 10.69.42.14 3828 | distance 38 3829 | router 10.69.13.40 metric 10 3830 | router 10.69.3.89 metric 100 3831 | router 10.69.3.40 metric 100 3832 | router 10.69.2.58 metric 100 3833 | stubnet 10.69.42.14/32 metric 0 3834 | stubnet 10.68.42.14/32 metric 0 3835 | external 10.100.29.128/26 metric 20 3836 | 3837 | router 10.69.42.32 3838 | distance 38 3839 | router 10.69.13.40 metric 10 3840 | router 10.69.4.32 metric 10 3841 | router 10.69.50.20 metric 100 3842 | router 10.69.3.85 metric 100 3843 | stubnet 10.69.42.32/32 metric 0 3844 | stubnet 10.68.42.32/32 metric 0 3845 | external 10.100.34.0/26 metric 20 3846 | 3847 | router 10.69.42.66 3848 | distance 38 3849 | router 10.69.13.40 metric 10 3850 | stubnet 10.69.42.66/32 metric 0 3851 | stubnet 10.68.42.66/32 metric 0 3852 | external 10.100.42.128/26 metric 20 3853 | 3854 | router 10.69.42.85 3855 | distance 38 3856 | router 10.69.2.87 metric 100 3857 | router 10.69.39.23 metric 100 3858 | router 10.69.74.49 metric 100 3859 | router 10.69.13.40 metric 10 3860 | stubnet 10.68.42.85/32 metric 0 3861 | stubnet 10.69.42.85/32 metric 0 3862 | external 10.100.47.64/26 metric 20 3863 | 3864 | router 10.69.43.42 3865 | distance 41 3866 | router 10.69.19.34 metric 10 3867 | stubnet 10.69.43.42/32 metric 0 3868 | stubnet 10.68.43.42/32 metric 0 3869 | external 10.100.61.128/26 metric 20 3870 | 3871 | router 10.69.43.43 3872 | distance 56 3873 | router 10.69.43.143 metric 10 3874 | router 10.69.51.34 metric 100 3875 | router 10.69.68.33 metric 100 3876 | stubnet 10.69.43.43/32 metric 0 3877 | stubnet 10.68.43.43/32 metric 0 3878 | external 10.100.61.192/26 metric 20 3879 | 3880 | router 10.69.43.91 3881 | distance 56 3882 | router 10.69.17.79 metric 10 3883 | router 10.69.19.44 metric 10 3884 | router 10.69.48.1 metric 100 3885 | router 10.69.17.79 metric 100 3886 | router 10.69.19.44 metric 100 3887 | stubnet 10.69.43.91/32 metric 0 3888 | stubnet 10.68.43.91/32 metric 0 3889 | external 10.100.73.192/26 metric 20 3890 | 3891 | router 10.69.43.93 3892 | distance 136 3893 | router 10.69.44.2 metric 100 3894 | router 10.69.45.30 metric 100 3895 | router 10.69.45.6 metric 100 3896 | router 10.69.48.91 metric 100 3897 | router 10.69.35.72 metric 100 3898 | router 10.69.44.59 metric 100 3899 | stubnet 10.69.43.93/32 metric 0 3900 | stubnet 10.68.43.93/32 metric 0 3901 | external 10.100.74.64/26 metric 20 3902 | 3903 | router 10.69.43.94 3904 | distance 41 3905 | router 10.69.19.34 metric 10 3906 | stubnet 10.69.43.94/32 metric 0 3907 | stubnet 10.68.43.94/32 metric 0 3908 | external 10.100.74.128/26 metric 20 3909 | 3910 | router 10.69.43.95 3911 | distance 33 3912 | router 10.69.4.34 metric 10 3913 | router 10.69.59.16 metric 10 3914 | router 10.69.4.87 metric 10 3915 | router 10.69.4.34 metric 100 3916 | router 10.69.4.87 metric 100 3917 | stubnet 10.69.43.95/32 metric 0 3918 | stubnet 10.68.43.95/32 metric 0 3919 | external 10.100.74.192/26 metric 20 3920 | 3921 | router 10.69.43.143 3922 | distance 46 3923 | router 10.69.43.43 metric 10 3924 | router 10.69.51.34 metric 10 3925 | stubnet 10.69.43.143/32 metric 0 3926 | stubnet 10.68.43.143/32 metric 0 3927 | 3928 | router 10.69.44.2 3929 | distance 36 3930 | router 10.69.34.61 metric 10 3931 | router 10.69.43.93 metric 100 3932 | router 10.69.45.6 metric 100 3933 | router 10.69.35.72 metric 100 3934 | router 10.69.45.30 metric 100 3935 | router 10.69.0.18 metric 100 3936 | router 10.69.44.59 metric 100 3937 | router 10.69.48.68 metric 100 3938 | router 10.69.48.91 metric 100 3939 | stubnet 10.69.44.2/32 metric 0 3940 | stubnet 10.68.44.2/32 metric 0 3941 | external 10.100.76.128/26 metric 20 3942 | 3943 | router 10.69.44.33 3944 | distance 48 3945 | router 10.69.2.53 metric 10 3946 | router 10.69.2.12 metric 10 3947 | router 10.69.2.53 metric 100 3948 | router 10.69.75.82 metric 100 3949 | router 10.69.28.74 metric 100 3950 | router 10.69.2.12 metric 100 3951 | router 10.69.29.59 metric 100 3952 | router 10.69.4.61 metric 100 3953 | router 10.69.3.81 metric 100 3954 | stubnet 10.69.44.33/32 metric 0 3955 | stubnet 10.68.44.33/32 metric 0 3956 | external 10.100.84.64/26 metric 20 3957 | 3958 | router 10.69.44.39 3959 | distance 36 3960 | router 10.69.45.30 metric 10 3961 | router 10.69.34.61 metric 10 3962 | router 10.69.45.30 metric 100 3963 | router 10.69.3.61 metric 100 3964 | stubnet 10.69.44.39/32 metric 0 3965 | stubnet 10.68.44.39/32 metric 0 3966 | external 10.100.85.192/26 metric 20 3967 | 3968 | router 10.69.44.41 3969 | distance 51 3970 | router 10.69.7.31 metric 10 3971 | router 10.69.41.81 metric 100 3972 | stubnet 10.69.44.41/32 metric 0 3973 | stubnet 10.68.44.41/32 metric 0 3974 | external 10.100.86.64/26 metric 20 3975 | 3976 | router 10.69.44.59 3977 | distance 36 3978 | router 10.69.0.18 metric 10 3979 | router 10.69.35.72 metric 10 3980 | router 10.69.45.6 metric 10 3981 | router 10.69.34.61 metric 10 3982 | router 10.69.35.72 metric 100 3983 | router 10.69.45.6 metric 100 3984 | router 10.69.0.18 metric 100 3985 | router 10.69.45.30 metric 100 3986 | router 10.69.44.2 metric 100 3987 | router 10.69.43.93 metric 100 3988 | router 10.69.48.91 metric 100 3989 | router 10.69.3.61 metric 100 3990 | stubnet 10.69.44.59/32 metric 0 3991 | stubnet 10.68.44.59/32 metric 0 3992 | external 10.100.90.192/26 metric 20 3993 | 3994 | router 10.69.44.62 3995 | distance 38 3996 | router 10.69.4.89 metric 20 3997 | router 10.69.13.40 metric 20 3998 | router 10.69.4.22 metric 110 3999 | router 10.69.4.89 metric 110 4000 | router 10.69.1.76 metric 110 4001 | router 10.69.3.59 metric 110 4002 | stubnet 10.69.44.62/32 metric 0 4003 | stubnet 10.68.44.62/32 metric 0 4004 | external 10.100.91.128/26 metric 20 4005 | 4006 | router 10.69.44.80 4007 | distance 36 4008 | router 10.69.51.51 metric 10 4009 | router 10.69.51.51 metric 100 4010 | router 10.69.2.23 metric 100 4011 | router 10.69.78.25 metric 100 4012 | router 10.69.4.82 metric 100 4013 | stubnet 10.69.44.80/32 metric 0 4014 | stubnet 10.68.44.80/32 metric 0 4015 | external 10.100.96.0/26 metric 20 4016 | 4017 | router 10.69.45.4 4018 | distance 61 4019 | router 10.69.2.27 metric 10 4020 | stubnet 10.69.45.4/32 metric 0 4021 | stubnet 10.68.45.4/32 metric 0 4022 | external 10.100.102.0/26 metric 20 4023 | 4024 | router 10.69.45.6 4025 | distance 46 4026 | router 10.69.44.59 metric 10 4027 | router 10.69.43.93 metric 100 4028 | router 10.69.35.72 metric 100 4029 | router 10.69.44.59 metric 100 4030 | router 10.69.48.91 metric 100 4031 | router 10.69.0.18 metric 100 4032 | router 10.69.44.2 metric 100 4033 | router 10.69.45.30 metric 100 4034 | router 10.69.48.68 metric 100 4035 | stubnet 10.69.45.6/32 metric 0 4036 | stubnet 10.68.45.6/32 metric 0 4037 | external 10.100.102.128/26 metric 20 4038 | 4039 | router 10.69.45.7 4040 | distance 36 4041 | router 10.69.45.107 metric 10 4042 | router 10.69.34.61 metric 10 4043 | stubnet 10.69.45.7/32 metric 0 4044 | stubnet 10.68.45.7/32 metric 0 4045 | external 10.100.102.192/26 metric 20 4046 | 4047 | router 10.69.45.17 4048 | distance 36 4049 | router 10.69.34.61 metric 10 4050 | stubnet 10.69.45.17/32 metric 0 4051 | stubnet 10.68.45.17/32 metric 0 4052 | external 10.100.105.64/26 metric 20 4053 | 4054 | router 10.69.45.30 4055 | distance 46 4056 | router 10.69.44.39 metric 10 4057 | router 10.69.3.61 metric 10 4058 | router 10.69.44.39 metric 100 4059 | router 10.69.3.61 metric 100 4060 | router 10.69.43.93 metric 100 4061 | router 10.69.45.6 metric 100 4062 | router 10.69.44.59 metric 100 4063 | router 10.69.44.2 metric 100 4064 | router 10.69.2.28 metric 100 4065 | stubnet 10.69.45.30/32 metric 0 4066 | stubnet 10.68.45.30/32 metric 0 4067 | external 10.100.108.128/26 metric 20 4068 | 4069 | router 10.69.45.34 4070 | distance 103 4071 | router 10.69.59.33 metric 10 4072 | stubnet 10.69.45.34/32 metric 0 4073 | stubnet 10.68.45.34/32 metric 0 4074 | external 10.100.109.128/26 metric 20 4075 | 4076 | router 10.69.45.85 4077 | distance 61 4078 | router 10.69.2.27 metric 10 4079 | stubnet 10.69.45.85/32 metric 0 4080 | stubnet 10.68.45.85/32 metric 0 4081 | external 10.100.122.64/26 metric 20 4082 | 4083 | router 10.69.45.91 4084 | distance 36 4085 | router 10.69.47.61 metric 10 4086 | router 10.69.47.61 metric 100 4087 | stubnet 10.69.45.91/32 metric 0 4088 | stubnet 10.68.45.91/32 metric 0 4089 | external 10.100.123.192/26 metric 20 4090 | 4091 | router 10.69.45.107 4092 | distance 46 4093 | router 10.69.48.68 metric 10 4094 | router 10.69.45.7 metric 10 4095 | stubnet 10.69.45.107/32 metric 0 4096 | 4097 | router 10.69.46.66 4098 | distance 46 4099 | router 10.69.2.97 metric 10 4100 | router 10.69.2.97 metric 100 4101 | stubnet 10.69.46.66/32 metric 0 4102 | stubnet 10.68.46.66/32 metric 0 4103 | external 10.100.142.128/26 metric 20 4104 | 4105 | router 10.69.46.76 4106 | distance 38 4107 | router 10.69.13.40 metric 10 4108 | stubnet 10.69.46.76/32 metric 0 4109 | stubnet 10.68.46.76/32 metric 0 4110 | external 10.100.145.0/26 metric 20 4111 | 4112 | router 10.69.46.81 4113 | distance 26 4114 | router 10.69.63.63 metric 10 4115 | router 10.69.4.94 metric 10 4116 | router 10.69.7.13 metric 10 4117 | router 10.69.4.94 metric 100 4118 | router 10.69.14.47 metric 100 4119 | router 10.69.63.63 metric 100 4120 | router 10.69.54.20 metric 100 4121 | router 10.69.24.81 metric 100 4122 | router 10.69.3.14 metric 100 4123 | router 10.69.33.54 metric 100 4124 | router 10.69.64.50 metric 100 4125 | stubnet 10.69.46.81/32 metric 0 4126 | stubnet 10.68.46.81/32 metric 0 4127 | external 10.100.146.64/26 metric 20 4128 | 4129 | router 10.69.46.93 4130 | distance 77 4131 | router 10.69.20.90 metric 10 4132 | router 10.69.33.53 metric 100 4133 | router 10.69.37.21 metric 100 4134 | router 10.69.20.90 metric 100 4135 | stubnet 10.69.46.93/32 metric 0 4136 | stubnet 10.68.46.93/32 metric 0 4137 | external 10.100.149.64/26 metric 20 4138 | 4139 | router 10.69.47.6 4140 | distance 38 4141 | router 10.69.13.40 metric 10 4142 | stubnet 10.69.47.6/32 metric 0 4143 | stubnet 10.68.47.6/32 metric 0 4144 | external 10.100.152.128/26 metric 20 4145 | 4146 | router 10.69.47.33 4147 | distance 38 4148 | router 10.69.13.40 metric 10 4149 | router 10.69.29.32 metric 10 4150 | stubnet 10.69.47.33/32 metric 0 4151 | stubnet 10.68.47.33/32 metric 0 4152 | external 10.100.159.64/26 metric 20 4153 | 4154 | router 10.69.47.34 4155 | distance 66 4156 | router 10.69.48.68 metric 10 4157 | router 10.69.48.68 metric 100 4158 | router 10.69.48.91 metric 100 4159 | stubnet 10.69.47.34/32 metric 0 4160 | stubnet 10.68.47.34/32 metric 0 4161 | external 10.100.159.128/26 metric 20 4162 | 4163 | router 10.69.47.45 4164 | distance 51 4165 | router 10.69.24.163 metric 10 4166 | stubnet 10.69.47.45/32 metric 0 4167 | stubnet 10.68.47.45/32 metric 0 4168 | external 10.100.162.64/26 metric 20 4169 | 4170 | router 10.69.47.61 4171 | distance 26 4172 | router 10.69.45.91 metric 10 4173 | router 10.69.7.13 metric 10 4174 | router 10.69.45.91 metric 100 4175 | stubnet 10.69.47.61/32 metric 0 4176 | stubnet 10.68.47.61/32 metric 0 4177 | external 10.100.166.64/26 metric 20 4178 | 4179 | router 10.69.48.1 4180 | distance 46 4181 | router 10.69.48.101 metric 10 4182 | router 10.69.52.83 metric 10 4183 | router 10.69.17.79 metric 10 4184 | router 10.69.43.91 metric 100 4185 | router 10.69.19.44 metric 100 4186 | router 10.69.17.79 metric 100 4187 | stubnet 10.69.48.1/32 metric 0 4188 | stubnet 10.68.48.1/32 metric 0 4189 | external 10.100.176.64/26 metric 20 4190 | 4191 | router 10.69.48.68 4192 | distance 56 4193 | router 10.69.47.34 metric 10 4194 | router 10.69.45.107 metric 10 4195 | router 10.69.47.34 metric 100 4196 | router 10.69.44.2 metric 100 4197 | router 10.69.45.6 metric 100 4198 | router 10.69.48.91 metric 100 4199 | router 10.69.35.72 metric 100 4200 | stubnet 10.69.48.68/32 metric 0 4201 | stubnet 10.68.48.68/32 metric 0 4202 | external 10.100.193.0/26 metric 20 4203 | 4204 | router 10.69.48.69 4205 | distance 54 4206 | router 10.69.13.50 metric 10 4207 | router 10.69.13.50 metric 100 4208 | router 10.69.66.18 metric 100 4209 | router 10.69.35.75 metric 100 4210 | router 10.69.33.5 metric 100 4211 | router 10.69.70.37 metric 100 4212 | stubnet 10.69.48.69/32 metric 0 4213 | stubnet 10.68.48.69/32 metric 0 4214 | external 10.100.193.64/26 metric 20 4215 | 4216 | router 10.69.48.91 4217 | distance 36 4218 | router 10.69.34.61 metric 10 4219 | router 10.69.45.6 metric 100 4220 | router 10.69.43.93 metric 100 4221 | router 10.69.47.34 metric 100 4222 | router 10.69.44.59 metric 100 4223 | router 10.69.0.18 metric 100 4224 | router 10.69.35.72 metric 100 4225 | router 10.69.44.2 metric 100 4226 | router 10.69.48.68 metric 100 4227 | stubnet 10.69.48.91/32 metric 0 4228 | stubnet 10.68.48.91/32 metric 0 4229 | external 10.100.198.192/26 metric 20 4230 | 4231 | router 10.69.48.101 4232 | distance 56 4233 | router 10.69.48.1 metric 10 4234 | stubnet 10.69.48.101/32 metric 10 4235 | 4236 | router 10.69.49.17 4237 | distance 75 4238 | router 10.69.8.98 metric 10 4239 | stubnet 10.69.49.17/32 metric 0 4240 | stubnet 10.68.49.17/32 metric 0 4241 | external 10.100.205.64/26 metric 20 4242 | 4243 | router 10.69.49.34 4244 | distance 143 4245 | router 10.69.2.14 metric 100 4246 | stubnet 10.69.49.34/32 metric 0 4247 | stubnet 10.68.49.34/32 metric 0 4248 | external 10.100.209.128/26 metric 20 4249 | 4250 | router 10.69.50.14 4251 | distance 38 4252 | router 10.69.13.40 metric 10 4253 | router 10.69.50.50 metric 10 4254 | router 10.69.1.88 metric 10 4255 | router 10.69.51.7 metric 10 4256 | router 10.69.15.98 metric 10 4257 | router 10.69.4.6 metric 10 4258 | router 10.69.16.19 metric 10 4259 | router 10.69.1.49 metric 10 4260 | router 10.69.1.84 metric 10 4261 | router 10.69.3.94 metric 10 4262 | router 10.69.15.47 metric 10 4263 | router 10.69.65.70 metric 10 4264 | router 10.69.3.72 metric 10 4265 | stubnet 10.69.50.14/32 metric 0 4266 | stubnet 10.68.50.14/32 metric 0 4267 | external 10.100.229.128/26 metric 20 4268 | 4269 | router 10.69.50.20 4270 | distance 38 4271 | router 10.69.13.40 metric 10 4272 | router 10.69.42.32 metric 100 4273 | router 10.69.3.85 metric 100 4274 | router 10.69.29.32 metric 100 4275 | router 10.69.3.79 metric 100 4276 | router 10.69.32.33 metric 100 4277 | router 10.69.2.62 metric 100 4278 | stubnet 10.69.50.20/32 metric 0 4279 | stubnet 10.68.50.20/32 metric 0 4280 | external 10.100.231.0/26 metric 20 4281 | 4282 | router 10.69.50.50 4283 | distance 48 4284 | router 10.69.50.14 metric 10 4285 | stubnet 10.69.50.50/32 metric 0 4286 | stubnet 10.68.50.50/32 metric 0 4287 | external 10.100.238.128/26 metric 20 4288 | 4289 | router 10.69.50.51 4290 | distance 36 4291 | router 10.69.34.61 metric 10 4292 | stubnet 10.69.50.51/32 metric 0 4293 | stubnet 10.68.50.51/32 metric 0 4294 | external 10.100.238.192/26 metric 20 4295 | 4296 | router 10.69.50.89 4297 | distance 36 4298 | router 10.69.3.68 metric 10 4299 | router 10.69.27.1 metric 10 4300 | stubnet 10.69.50.89/32 metric 0 4301 | stubnet 10.68.50.89/32 metric 0 4302 | external 10.100.248.64/26 metric 20 4303 | 4304 | router 10.69.50.90 4305 | distance 58 4306 | router 10.69.1.88 metric 10 4307 | router 10.69.1.88 metric 100 4308 | router 10.69.2.75 metric 100 4309 | stubnet 10.69.50.90/32 metric 0 4310 | stubnet 10.68.50.90/32 metric 0 4311 | external 10.100.248.128/26 metric 20 4312 | 4313 | router 10.69.50.94 4314 | distance 48 4315 | router 10.69.29.32 metric 10 4316 | router 10.69.29.32 metric 100 4317 | stubnet 10.69.50.94/32 metric 0 4318 | stubnet 10.68.50.94/32 metric 0 4319 | external 10.100.249.128/26 metric 20 4320 | 4321 | router 10.69.51.7 4322 | distance 48 4323 | router 10.69.16.19 metric 10 4324 | router 10.69.50.14 metric 10 4325 | router 10.69.3.94 metric 100 4326 | router 10.69.16.19 metric 100 4327 | stubnet 10.69.51.7/32 metric 0 4328 | stubnet 10.68.51.7/32 metric 0 4329 | external 10.100.252.192/26 metric 20 4330 | external 199.170.132.8/32 metric 20 4331 | 4332 | router 10.69.51.8 4333 | distance 46 4334 | router 10.69.51.108 metric 10 4335 | stubnet 10.69.51.8/32 metric 0 4336 | stubnet 10.68.51.8/32 metric 0 4337 | external 10.100.253.0/26 metric 20 4338 | 4339 | router 10.69.51.27 4340 | distance 38 4341 | router 10.69.13.40 metric 11 4342 | router 10.69.41.28 metric 11 4343 | stubnet 10.69.51.27/32 metric 0 4344 | stubnet 10.68.51.27/32 metric 0 4345 | external 10.101.1.192/26 metric 20 4346 | 4347 | router 10.69.51.34 4348 | distance 36 4349 | router 10.69.68.33 metric 10 4350 | router 10.69.51.234 metric 10 4351 | router 10.69.34.61 metric 10 4352 | router 10.69.3.167 metric 10 4353 | router 10.69.43.143 metric 10 4354 | router 10.69.68.33 metric 100 4355 | router 10.69.43.43 metric 100 4356 | router 10.69.2.79 metric 100 4357 | router 10.69.4.9 metric 100 4358 | router 10.69.2.42 metric 100 4359 | router 10.69.34.24 metric 100 4360 | stubnet 10.69.51.34/32 metric 0 4361 | stubnet 10.68.51.34/32 metric 0 4362 | external 10.101.3.128/26 metric 20 4363 | 4364 | router 10.69.51.51 4365 | distance 26 4366 | router 10.69.2.23 metric 100 4367 | router 10.69.4.82 metric 100 4368 | router 10.69.44.80 metric 100 4369 | router 10.69.78.25 metric 100 4370 | router 10.69.2.23 metric 10 4371 | router 10.69.44.80 metric 10 4372 | router 10.69.51.108 metric 10 4373 | router 10.69.14.174 metric 10 4374 | router 10.69.72.159 metric 10 4375 | router 10.69.4.182 metric 10 4376 | router 10.69.7.13 metric 10 4377 | stubnet 10.68.51.51/32 metric 0 4378 | stubnet 10.69.51.51/32 metric 0 4379 | external 10.101.7.192/26 metric 20 4380 | external 199.170.132.84/32 metric 20 4381 | 4382 | router 10.69.51.55 4383 | distance 61 4384 | router 10.69.3.8 metric 100 4385 | router 10.69.24.41 metric 100 4386 | router 10.69.2.27 metric 10 4387 | stubnet 10.68.51.55/32 metric 0 4388 | stubnet 10.69.51.55/32 metric 0 4389 | external 10.101.8.192/26 metric 20 4390 | 4391 | router 10.69.51.108 4392 | distance 36 4393 | router 10.69.51.8 metric 10 4394 | router 10.69.51.51 metric 10 4395 | stubnet 10.69.51.108/32 metric 0 4396 | stubnet 10.68.51.108/32 metric 0 4397 | 4398 | router 10.69.51.234 4399 | distance 46 4400 | router 10.69.51.34 metric 10 4401 | stubnet 10.69.51.134/32 metric 0 4402 | external 10.101.3.128/26 metric 20 4403 | 4404 | router 10.69.52.43 4405 | distance 36 4406 | router 10.69.34.61 metric 10 4407 | router 10.69.76.69 metric 10 4408 | router 10.69.76.69 metric 100 4409 | stubnet 10.69.52.43/32 metric 0 4410 | stubnet 10.68.52.43/32 metric 0 4411 | external 10.101.30.192/26 metric 20 4412 | 4413 | router 10.69.52.76 4414 | distance 38 4415 | router 10.69.13.40 metric 10 4416 | router 10.69.70.65 metric 100 4417 | stubnet 10.69.52.76/32 metric 0 4418 | stubnet 10.68.52.76/32 metric 0 4419 | external 10.101.39.0/26 metric 20 4420 | 4421 | router 10.69.52.83 4422 | distance 36 4423 | router 10.69.52.183 metric 10 4424 | router 10.69.48.1 metric 10 4425 | router 10.69.4.100 metric 10 4426 | router 10.69.3.31 metric 10 4427 | router 10.69.34.61 metric 10 4428 | router 10.69.17.79 metric 10 4429 | router 10.69.3.31 metric 100 4430 | router 10.68.73.125 metric 100 4431 | router 10.69.73.25 metric 100 4432 | stubnet 10.69.52.83/32 metric 0 4433 | stubnet 10.68.52.83/32 metric 0 4434 | external 10.101.40.192/26 metric 20 4435 | 4436 | router 10.69.52.183 4437 | distance 46 4438 | router 10.69.52.83 metric 10 4439 | stubnet 10.69.52.183/32 metric 0 4440 | 4441 | router 10.69.53.0 4442 | distance 26 4443 | router 10.69.60.22 metric 10 4444 | router 10.69.69.11 metric 10 4445 | router 10.69.7.13 metric 10 4446 | router 10.69.60.22 metric 100 4447 | router 10.69.69.11 metric 100 4448 | router 10.69.66.22 metric 100 4449 | router 10.69.2.85 metric 100 4450 | router 10.69.4.98 metric 100 4451 | stubnet 10.69.53.0/32 metric 0 4452 | stubnet 10.68.53.0/32 metric 0 4453 | external 10.101.45.0/26 metric 20 4454 | 4455 | router 10.69.53.27 4456 | distance 36 4457 | router 10.69.34.61 metric 10 4458 | stubnet 10.69.53.27/32 metric 0 4459 | stubnet 10.68.53.27/32 metric 0 4460 | external 10.101.51.192/26 metric 20 4461 | 4462 | router 10.69.53.28 4463 | distance 38 4464 | router 10.69.13.40 metric 10 4465 | stubnet 10.69.53.28/32 metric 0 4466 | stubnet 10.68.53.28/32 metric 0 4467 | external 10.101.52.0/26 metric 20 4468 | 4469 | router 10.69.53.44 4470 | distance 36 4471 | router 10.69.34.61 metric 10 4472 | router 10.69.2.79 metric 100 4473 | stubnet 10.69.53.44/32 metric 0 4474 | stubnet 10.68.53.44/32 metric 0 4475 | external 10.101.56.0/26 metric 20 4476 | 4477 | router 10.69.54.20 4478 | distance 26 4479 | router 10.69.14.47 metric 10 4480 | router 10.69.7.13 metric 10 4481 | router 10.69.46.81 metric 100 4482 | router 10.69.14.47 metric 100 4483 | router 10.69.4.94 metric 100 4484 | router 10.69.24.81 metric 100 4485 | router 10.69.64.50 metric 100 4486 | router 10.69.63.63 metric 100 4487 | router 10.69.4.3 metric 100 4488 | stubnet 10.69.54.20/32 metric 0 4489 | stubnet 10.68.54.20/32 metric 0 4490 | external 10.101.75.0/26 metric 20 4491 | 4492 | router 10.69.54.21 4493 | distance 38 4494 | router 10.69.13.40 metric 10 4495 | stubnet 10.69.54.21/32 metric 0 4496 | stubnet 10.68.54.21/32 metric 0 4497 | external 10.101.75.64/26 metric 20 4498 | 4499 | router 10.69.54.25 4500 | distance 33 4501 | router 10.69.32.17 metric 10 4502 | router 10.69.59.16 metric 10 4503 | router 10.69.32.17 metric 100 4504 | router 10.69.1.99 metric 100 4505 | router 10.69.2.24 metric 100 4506 | router 10.69.3.64 metric 100 4507 | stubnet 10.69.54.25/32 metric 0 4508 | stubnet 10.68.54.25/32 metric 0 4509 | external 10.101.76.64/26 metric 20 4510 | 4511 | router 10.69.55.78 4512 | distance 36 4513 | router 10.69.24.62 metric 10 4514 | router 10.69.79.34 metric 100 4515 | router 10.69.24.62 metric 100 4516 | stubnet 10.69.55.78/32 metric 0 4517 | stubnet 10.68.55.78/32 metric 0 4518 | external 10.101.114.128/26 metric 20 4519 | 4520 | router 10.69.55.81 4521 | distance 56 4522 | router 10.69.11.67 metric 10 4523 | router 10.69.11.67 metric 100 4524 | router 10.69.10.84 metric 100 4525 | router 10.69.1.66 metric 100 4526 | stubnet 10.69.55.81/32 metric 0 4527 | stubnet 10.68.55.81/32 metric 0 4528 | external 10.101.115.64/26 metric 20 4529 | 4530 | router 10.69.55.88 4531 | distance 38 4532 | router 10.69.69.60 metric 10 4533 | router 10.69.13.40 metric 10 4534 | router 10.69.69.60 metric 100 4535 | stubnet 10.69.55.88/32 metric 0 4536 | stubnet 10.68.55.88/32 metric 0 4537 | external 10.101.117.0/26 metric 20 4538 | 4539 | router 10.69.56.39 4540 | distance 91 4541 | router 10.69.4.7 metric 10 4542 | router 10.69.4.7 metric 100 4543 | stubnet 10.69.56.39/32 metric 0 4544 | stubnet 10.68.56.39/32 metric 0 4545 | external 10.101.129.192/26 metric 20 4546 | 4547 | router 10.69.56.86 4548 | distance 36 4549 | router 10.69.34.61 metric 10 4550 | stubnet 10.69.56.86/32 metric 0 4551 | stubnet 10.68.56.86/32 metric 0 4552 | external 10.101.141.128/26 metric 20 4553 | 4554 | router 10.69.57.12 4555 | distance 56 4556 | router 10.69.1.15 metric 10 4557 | router 10.69.4.95 metric 10 4558 | router 10.69.3.44 metric 10 4559 | router 10.69.1.56 metric 10 4560 | router 10.69.3.37 metric 10 4561 | router 10.69.65.66 metric 10 4562 | router 10.69.4.74 metric 10 4563 | router 10.69.3.44 metric 100 4564 | router 10.69.1.15 metric 100 4565 | router 10.69.4.95 metric 100 4566 | stubnet 10.69.57.12/32 metric 0 4567 | stubnet 10.68.57.12/32 metric 0 4568 | external 10.101.148.0/26 metric 20 4569 | 4570 | router 10.69.57.23 4571 | distance 33 4572 | router 10.69.59.16 metric 10 4573 | stubnet 10.69.57.23/32 metric 0 4574 | stubnet 10.68.57.23/32 metric 0 4575 | external 10.101.150.192/26 metric 20 4576 | 4577 | router 10.69.58.6 4578 | distance 36 4579 | router 10.69.22.82 metric 10 4580 | stubnet 10.69.58.6/32 metric 0 4581 | stubnet 10.68.58.6/32 metric 0 4582 | external 10.101.171.128/26 metric 20 4583 | 4584 | router 10.69.58.33 4585 | distance 60 4586 | router 10.69.22.74 metric 10 4587 | router 10.69.22.74 metric 100 4588 | stubnet 10.69.58.33/32 metric 0 4589 | stubnet 10.68.58.33/32 metric 0 4590 | external 10.101.178.64/26 metric 20 4591 | 4592 | router 10.69.59.16 4593 | distance 23 4594 | router 10.69.1.47 metric 10 4595 | router 10.69.1.55 metric 10 4596 | router 10.69.1.59 metric 10 4597 | router 10.69.1.87 metric 10 4598 | router 10.69.1.99 metric 10 4599 | router 10.69.2.5 metric 10 4600 | router 10.69.2.6 metric 10 4601 | router 10.69.2.19 metric 10 4602 | router 10.69.2.24 metric 10 4603 | router 10.69.2.47 metric 10 4604 | router 10.69.2.56 metric 10 4605 | router 10.69.2.65 metric 10 4606 | router 10.69.2.67 metric 10 4607 | router 10.69.2.87 metric 10 4608 | router 10.69.2.90 metric 10 4609 | router 10.69.2.99 metric 10 4610 | router 10.69.3.1 metric 10 4611 | router 10.69.3.2 metric 10 4612 | router 10.69.3.21 metric 10 4613 | router 10.69.3.22 metric 10 4614 | router 10.69.3.25 metric 10 4615 | router 10.69.3.41 metric 10 4616 | router 10.69.3.57 metric 10 4617 | router 10.69.3.58 metric 10 4618 | router 10.69.3.62 metric 10 4619 | router 10.69.3.85 metric 10 4620 | router 10.69.4.11 metric 10 4621 | router 10.69.4.15 metric 10 4622 | router 10.69.4.17 metric 10 4623 | router 10.69.4.18 metric 10 4624 | router 10.69.4.36 metric 10 4625 | router 10.69.4.39 metric 10 4626 | router 10.69.4.45 metric 10 4627 | router 10.69.4.48 metric 10 4628 | router 10.69.4.73 metric 10 4629 | router 10.69.4.77 metric 10 4630 | router 10.69.4.80 metric 10 4631 | router 10.69.6.27 metric 10 4632 | router 10.69.7.13 metric 7 4633 | router 10.69.11.59 metric 10 4634 | router 10.69.13.40 metric 5 4635 | router 10.69.13.150 metric 10 4636 | router 10.69.19.34 metric 8 4637 | router 10.69.20.12 metric 10 4638 | router 10.69.24.82 metric 10 4639 | router 10.69.34.61 metric 15 4640 | router 10.69.36.7 metric 10 4641 | router 10.69.41.53 metric 10 4642 | router 10.69.43.95 metric 10 4643 | router 10.69.54.25 metric 10 4644 | router 10.69.57.23 metric 10 4645 | router 10.69.66.96 metric 10 4646 | router 10.69.67.32 metric 10 4647 | router 10.69.69.29 metric 10 4648 | router 10.69.70.37 metric 10 4649 | router 10.69.75.91 metric 10 4650 | router 10.69.77.8 metric 10 4651 | router 10.69.77.70 metric 10 4652 | router 10.69.79.12 metric 10 4653 | stubnet 10.69.59.16/32 metric 10 4654 | stubnet 10.70.251.14/32 metric 8 4655 | stubnet 10.70.253.2/32 metric 73 4656 | stubnet 10.70.253.5/32 metric 7 4657 | stubnet 10.70.253.12/32 metric 10 4658 | stubnet 10.70.253.26/32 metric 5 4659 | stubnet 10.70.253.30/32 metric 15 4660 | external 10.70.181.0/24 metric 1 4661 | external 10.70.251.12/30 metric 1 4662 | external 10.70.253.3/32 metric 1 4663 | external 10.70.253.4/32 metric 1 4664 | external 10.70.253.13/32 metric 1 4665 | external 10.70.253.27/32 metric 1 4666 | external 10.70.253.31/32 metric 1 4667 | external 10.101.199.0/26 metric 1 4668 | 4669 | router 10.69.59.33 4670 | distance 93 4671 | router 10.69.45.34 metric 10 4672 | router 10.69.2.65 metric 10 4673 | router 10.69.1.69 metric 100 4674 | router 10.69.36.6 metric 100 4675 | stubnet 10.69.59.33/32 metric 0 4676 | stubnet 10.68.59.33/32 metric 0 4677 | external 10.101.203.64/26 metric 20 4678 | 4679 | router 10.69.59.47 4680 | distance 48 4681 | router 10.69.32.13 metric 10 4682 | router 10.69.32.13 metric 100 4683 | router 10.69.61.21 metric 100 4684 | stubnet 10.69.59.47/32 metric 0 4685 | stubnet 10.68.59.47/32 metric 0 4686 | external 10.101.206.192/26 metric 20 4687 | 4688 | router 10.69.59.65 4689 | distance 65 4690 | router 10.69.59.165 metric 10 4691 | stubnet 10.69.59.65/32 metric 0 4692 | stubnet 10.68.59.65/32 metric 0 4693 | external 10.101.211.64/26 metric 20 4694 | 4695 | router 10.69.59.89 4696 | distance 26 4697 | router 10.69.7.13 metric 10 4698 | router 10.69.33.0 metric 100 4699 | router 10.69.2.50 metric 100 4700 | stubnet 10.69.59.89/32 metric 0 4701 | stubnet 10.68.59.89/32 metric 0 4702 | external 10.101.217.64/26 metric 20 4703 | 4704 | router 10.69.59.165 4705 | distance 55 4706 | router 10.69.2.27 metric 35 4707 | router 10.69.7.13 metric 30 4708 | router 10.69.59.65 metric 10 4709 | stubnet 10.70.72.1/32 metric 35 4710 | stubnet 10.70.91.1/32 metric 30 4711 | stubnet 10.69.59.165/32 metric 0 4712 | external 10.10.100.0/24 metric 20 4713 | external 10.70.178.64/26 metric 20 4714 | 4715 | router 10.69.60.4 4716 | distance 51 4717 | router 10.69.24.163 metric 10 4718 | stubnet 10.69.60.4/32 metric 0 4719 | stubnet 10.68.60.4/32 metric 0 4720 | external 10.101.221.0/26 metric 20 4721 | 4722 | router 10.69.60.22 4723 | distance 36 4724 | router 10.69.69.11 metric 10 4725 | router 10.69.53.0 metric 10 4726 | router 10.69.53.0 metric 100 4727 | router 10.69.69.11 metric 100 4728 | router 10.69.16.6 metric 100 4729 | router 10.69.4.98 metric 100 4730 | router 10.69.66.22 metric 100 4731 | stubnet 10.69.60.22/32 metric 0 4732 | stubnet 10.68.60.22/32 metric 0 4733 | external 10.101.225.128/26 metric 20 4734 | 4735 | router 10.69.60.71 4736 | distance 80 4737 | router 10.69.60.171 metric 10 4738 | router 10.69.1.78 metric 100 4739 | router 10.69.77.89 metric 100 4740 | router 10.69.2.69 metric 100 4741 | stubnet 10.69.60.71/32 metric 0 4742 | stubnet 10.68.60.71/32 metric 0 4743 | external 10.101.237.192/26 metric 20 4744 | 4745 | router 10.69.60.171 4746 | distance 70 4747 | router 10.69.60.71 metric 10 4748 | router 10.69.77.89 metric 10 4749 | stubnet 10.69.60.171/32 metric 0 4750 | stubnet 10.68.60.171/32 metric 0 4751 | 4752 | router 10.69.61.21 4753 | distance 48 4754 | router 10.69.32.13 metric 10 4755 | router 10.69.59.47 metric 100 4756 | router 10.69.32.13 metric 100 4757 | stubnet 10.69.61.21/32 metric 0 4758 | stubnet 10.68.61.21/32 metric 0 4759 | external 10.101.250.64/26 metric 20 4760 | 4761 | router 10.69.62.19 4762 | distance 36 4763 | router 10.69.34.61 metric 10 4764 | router 10.69.76.69 metric 100 4765 | stubnet 10.69.62.19/32 metric 0 4766 | stubnet 10.68.62.19/32 metric 0 4767 | external 10.102.18.192/26 metric 20 4768 | 4769 | router 10.69.62.48 4770 | distance 43 4771 | router 10.69.19.46 metric 10 4772 | router 10.69.3.3 metric 10 4773 | router 10.69.24.82 metric 10 4774 | router 10.69.3.3 metric 100 4775 | router 10.69.24.82 metric 100 4776 | stubnet 10.69.62.48/32 metric 0 4777 | stubnet 10.68.62.48/32 metric 0 4778 | external 10.102.26.0/26 metric 20 4779 | 4780 | router 10.69.62.68 4781 | distance 38 4782 | router 10.69.13.40 metric 10 4783 | router 10.69.4.84 metric 100 4784 | stubnet 10.69.62.68/32 metric 0 4785 | stubnet 10.68.62.68/32 metric 0 4786 | external 10.102.31.0/26 metric 20 4787 | 4788 | router 10.69.62.74 4789 | distance 91 4790 | router 10.69.4.7 metric 10 4791 | router 10.69.30.4 metric 100 4792 | router 10.69.30.37 metric 100 4793 | stubnet 10.69.62.74/32 metric 0 4794 | stubnet 10.68.62.74/32 metric 0 4795 | external 10.102.32.128/26 metric 20 4796 | 4797 | router 10.69.63.8 4798 | distance 38 4799 | router 10.69.13.40 metric 10 4800 | stubnet 10.69.63.8/32 metric 0 4801 | stubnet 10.68.63.8/32 metric 0 4802 | external 10.102.41.0/26 metric 20 4803 | 4804 | router 10.69.63.11 4805 | distance 60 4806 | router 10.69.22.74 metric 10 4807 | stubnet 10.69.63.11/32 metric 0 4808 | stubnet 10.68.63.11/32 metric 0 4809 | external 10.102.41.192/26 metric 20 4810 | 4811 | router 10.69.63.46 4812 | distance 61 4813 | router 10.69.30.4 metric 100 4814 | router 10.69.2.27 metric 10 4815 | stubnet 10.68.63.46/32 metric 0 4816 | stubnet 10.69.63.46/32 metric 0 4817 | external 10.102.50.128/26 metric 20 4818 | 4819 | router 10.69.63.63 4820 | distance 36 4821 | router 10.69.46.81 metric 10 4822 | router 10.69.4.94 metric 100 4823 | router 10.69.46.81 metric 100 4824 | router 10.69.14.47 metric 100 4825 | router 10.69.24.81 metric 100 4826 | router 10.69.4.60 metric 100 4827 | router 10.69.33.0 metric 100 4828 | router 10.69.4.3 metric 100 4829 | router 10.69.54.20 metric 100 4830 | router 10.69.33.54 metric 100 4831 | stubnet 10.69.63.63/32 metric 0 4832 | stubnet 10.68.63.63/32 metric 0 4833 | external 10.102.54.192/26 metric 20 4834 | 4835 | router 10.69.64.14 4836 | distance 61 4837 | router 10.69.2.27 metric 10 4838 | stubnet 10.69.64.14/32 metric 0 4839 | stubnet 10.68.64.14/32 metric 0 4840 | external 10.102.67.128/26 metric 20 4841 | 4842 | router 10.69.64.50 4843 | distance 26 4844 | router 10.69.3.14 metric 10 4845 | router 10.69.7.13 metric 10 4846 | router 10.69.3.14 metric 100 4847 | router 10.69.33.0 metric 100 4848 | router 10.69.54.20 metric 100 4849 | router 10.69.46.81 metric 100 4850 | stubnet 10.69.64.50/32 metric 0 4851 | stubnet 10.68.64.50/32 metric 0 4852 | external 10.102.76.128/26 metric 20 4853 | 4854 | router 10.69.64.86 4855 | distance 43 4856 | router 10.69.2.67 metric 10 4857 | router 10.69.2.67 metric 100 4858 | router 10.69.29.32 metric 100 4859 | stubnet 10.69.64.86/32 metric 0 4860 | stubnet 10.68.64.86/32 metric 0 4861 | external 10.102.85.128/26 metric 20 4862 | 4863 | router 10.69.65.65 4864 | distance 36 4865 | router 10.69.4.44 metric 10 4866 | router 10.69.22.82 metric 10 4867 | router 10.69.4.44 metric 100 4868 | stubnet 10.69.65.65/32 metric 0 4869 | stubnet 10.68.65.65/32 metric 0 4870 | external 10.102.105.64/26 metric 20 4871 | 4872 | router 10.69.65.66 4873 | distance 66 4874 | router 10.69.57.12 metric 10 4875 | router 10.69.3.37 metric 100 4876 | stubnet 10.69.65.66/32 metric 0 4877 | stubnet 10.68.65.66/32 metric 0 4878 | external 10.102.105.128/26 metric 20 4879 | 4880 | router 10.69.65.70 4881 | distance 48 4882 | router 10.69.50.14 metric 10 4883 | stubnet 10.69.65.70/32 metric 0 4884 | stubnet 10.68.65.70/32 metric 0 4885 | external 10.102.106.128/26 metric 20 4886 | 4887 | router 10.69.65.71 4888 | distance 26 4889 | router 10.69.7.13 metric 10 4890 | router 10.69.76.32 metric 10 4891 | router 10.69.76.32 metric 100 4892 | stubnet 10.69.65.71/32 metric 0 4893 | stubnet 10.68.65.71/32 metric 0 4894 | external 10.102.106.192/26 metric 20 4895 | 4896 | router 10.69.65.81 4897 | distance 54 4898 | router 10.69.13.50 metric 10 4899 | router 10.69.13.50 metric 100 4900 | router 10.69.33.5 metric 100 4901 | stubnet 10.69.65.81/32 metric 0 4902 | stubnet 10.68.65.81/32 metric 0 4903 | external 10.102.109.64/26 metric 20 4904 | 4905 | router 10.69.66.18 4906 | distance 54 4907 | router 10.69.13.50 metric 10 4908 | router 10.69.13.50 metric 100 4909 | router 10.69.33.5 metric 100 4910 | router 10.69.48.69 metric 100 4911 | router 10.69.35.75 metric 100 4912 | stubnet 10.69.66.18/32 metric 0 4913 | stubnet 10.68.66.18/32 metric 0 4914 | external 10.102.118.128/26 metric 20 4915 | 4916 | router 10.69.66.22 4917 | distance 26 4918 | router 10.69.2.85 metric 10 4919 | router 10.69.4.98 metric 10 4920 | router 10.69.7.13 metric 10 4921 | router 10.69.53.0 metric 100 4922 | router 10.69.1.75 metric 100 4923 | router 10.69.2.85 metric 100 4924 | router 10.69.69.11 metric 100 4925 | router 10.69.4.98 metric 100 4926 | router 10.69.60.22 metric 100 4927 | router 10.69.33.0 metric 100 4928 | stubnet 10.69.66.22/32 metric 0 4929 | stubnet 10.68.66.22/32 metric 0 4930 | external 10.102.119.128/26 metric 20 4931 | 4932 | router 10.69.66.23 4933 | distance 36 4934 | router 10.69.1.75 metric 100 4935 | router 10.69.33.0 metric 100 4936 | router 10.69.2.85 metric 100 4937 | router 10.69.2.50 metric 100 4938 | router 10.69.4.98 metric 100 4939 | router 10.69.1.75 metric 10 4940 | stubnet 10.68.66.23/32 metric 0 4941 | stubnet 10.69.66.23/32 metric 0 4942 | external 10.102.119.192/26 metric 20 4943 | 4944 | router 10.69.66.96 4945 | distance 33 4946 | router 10.69.59.16 metric 10 4947 | stubnet 10.69.66.96/32 metric 0 4948 | stubnet 10.68.66.96/32 metric 0 4949 | external 10.102.138.0/26 metric 20 4950 | 4951 | router 10.69.67.32 4952 | distance 33 4953 | router 10.69.59.16 metric 10 4954 | stubnet 10.69.67.32/32 metric 0 4955 | stubnet 10.68.67.32/32 metric 0 4956 | external 10.102.147.0/26 metric 20 4957 | 4958 | router 10.69.67.74 4959 | distance 36 4960 | router 10.69.22.82 metric 10 4961 | stubnet 10.69.67.74/32 metric 0 4962 | stubnet 10.68.67.74/32 metric 0 4963 | external 10.102.157.128/26 metric 20 4964 | 4965 | router 10.69.67.91 4966 | distance 61 4967 | router 10.69.2.27 metric 10 4968 | stubnet 10.69.67.91/32 metric 0 4969 | stubnet 10.68.67.91/32 metric 0 4970 | external 10.102.161.192/26 metric 20 4971 | 4972 | router 10.69.67.93 4973 | distance 36 4974 | router 10.69.75.16 metric 10 4975 | router 10.69.34.61 metric 10 4976 | router 10.69.75.16 metric 100 4977 | router 10.69.75.45 metric 100 4978 | stubnet 10.69.67.93/32 metric 0 4979 | stubnet 10.68.67.93/32 metric 0 4980 | external 10.102.162.64/26 metric 20 4981 | 4982 | router 10.69.67.94 4983 | distance 66 4984 | router 10.69.2.95 metric 10 4985 | router 10.69.2.95 metric 100 4986 | stubnet 10.69.67.94/32 metric 0 4987 | stubnet 10.68.67.94/32 metric 0 4988 | external 10.102.162.128/26 metric 20 4989 | 4990 | router 10.69.68.2 4991 | distance 55 4992 | router 10.69.7.13 metric 50 4993 | stubnet 10.70.91.246/32 metric 0 4994 | stubnet 10.68.34.161/32 metric 0 4995 | stubnet 10.69.68.2/32 metric 0 4996 | external 10.102.164.128/26 metric 20 4997 | 4998 | router 10.69.68.33 4999 | distance 46 5000 | router 10.69.51.34 metric 10 5001 | router 10.69.51.34 metric 100 5002 | router 10.69.2.42 metric 100 5003 | router 10.69.43.43 metric 100 5004 | stubnet 10.69.68.33/32 metric 0 5005 | stubnet 10.68.68.33/32 metric 0 5006 | external 10.102.172.64/26 metric 20 5007 | 5008 | router 10.69.68.44 5009 | distance 71 5010 | router 10.69.24.41 metric 10 5011 | router 10.69.24.41 metric 100 5012 | stubnet 10.69.68.44/32 metric 0 5013 | stubnet 10.68.68.44/32 metric 0 5014 | external 10.102.175.0/26 metric 20 5015 | 5016 | router 10.69.68.45 5017 | distance 38 5018 | router 10.69.2.20 metric 10 5019 | router 10.69.13.40 metric 10 5020 | router 10.69.4.87 metric 100 5021 | router 10.69.2.20 metric 100 5022 | router 10.69.22.3 metric 100 5023 | router 10.69.4.2 metric 100 5024 | stubnet 10.69.68.45/32 metric 0 5025 | stubnet 10.68.68.45/32 metric 0 5026 | external 10.102.175.64/26 metric 20 5027 | 5028 | router 10.69.68.72 5029 | distance 26 5030 | router 10.69.7.13 metric 10 5031 | stubnet 10.69.68.72/32 metric 0 5032 | stubnet 10.68.68.72/32 metric 0 5033 | external 10.102.182.0/26 metric 20 5034 | 5035 | router 10.69.69.11 5036 | distance 36 5037 | router 10.69.53.0 metric 100 5038 | router 10.69.60.22 metric 100 5039 | router 10.69.66.22 metric 100 5040 | router 10.69.4.98 metric 100 5041 | router 10.69.60.22 metric 10 5042 | router 10.69.53.0 metric 10 5043 | stubnet 10.68.69.11/32 metric 0 5044 | stubnet 10.69.69.11/32 metric 0 5045 | external 10.102.191.192/26 metric 20 5046 | 5047 | router 10.69.69.25 5048 | distance 46 5049 | router 10.69.75.12 metric 10 5050 | router 10.69.4.28 metric 10 5051 | router 10.69.73.59 metric 100 5052 | router 10.69.4.28 metric 100 5053 | stubnet 10.69.69.25/32 metric 0 5054 | stubnet 10.68.69.25/32 metric 0 5055 | external 10.102.195.64/26 metric 20 5056 | 5057 | router 10.69.69.29 5058 | distance 33 5059 | router 10.69.59.16 metric 10 5060 | stubnet 10.69.69.29/32 metric 0 5061 | stubnet 10.68.69.29/32 metric 0 5062 | external 10.102.196.64/26 metric 20 5063 | 5064 | router 10.69.69.60 5065 | distance 48 5066 | router 10.69.55.88 metric 10 5067 | router 10.69.55.88 metric 100 5068 | stubnet 10.69.69.60/32 metric 0 5069 | stubnet 10.68.69.60/32 metric 0 5070 | external 10.102.204.0/26 metric 20 5071 | 5072 | router 10.69.69.92 5073 | distance 38 5074 | router 10.69.74.76 metric 100 5075 | router 10.69.13.40 metric 10 5076 | stubnet 10.68.69.92/32 metric 0 5077 | stubnet 10.69.69.92/32 metric 0 5078 | external 10.102.212.0/26 metric 20 5079 | 5080 | router 10.69.70.7 5081 | distance 36 5082 | router 10.69.34.61 metric 10 5083 | router 10.69.3.41 metric 100 5084 | router 10.69.2.20 metric 100 5085 | stubnet 10.69.70.7/32 metric 0 5086 | stubnet 10.68.70.7/32 metric 0 5087 | external 10.102.215.192/26 metric 20 5088 | 5089 | router 10.69.70.37 5090 | distance 33 5091 | router 10.69.59.16 metric 10 5092 | router 10.69.75.91 metric 100 5093 | router 10.69.28.27 metric 100 5094 | router 10.69.2.47 metric 100 5095 | router 10.69.48.69 metric 100 5096 | stubnet 10.69.70.37/32 metric 0 5097 | stubnet 10.68.70.37/32 metric 0 5098 | external 10.102.223.64/26 metric 20 5099 | 5100 | router 10.69.70.65 5101 | distance 38 5102 | router 10.69.13.40 metric 10 5103 | router 10.69.79.97 metric 100 5104 | router 10.69.52.76 metric 100 5105 | stubnet 10.69.70.65/32 metric 0 5106 | stubnet 10.68.70.65/32 metric 0 5107 | external 10.102.230.64/26 metric 20 5108 | 5109 | router 10.69.70.89 5110 | distance 38 5111 | router 10.69.13.40 metric 10 5112 | router 10.69.3.40 metric 100 5113 | router 10.69.3.13 metric 100 5114 | stubnet 10.69.70.89/32 metric 0 5115 | stubnet 10.68.70.89/32 metric 0 5116 | external 10.102.236.64/26 metric 20 5117 | 5118 | router 10.69.71.3 5119 | distance 56 5120 | router 10.69.1.15 metric 10 5121 | router 10.69.4.43 metric 100 5122 | router 10.69.1.15 metric 100 5123 | stubnet 10.69.71.3/32 metric 0 5124 | stubnet 10.68.71.3/32 metric 0 5125 | external 10.102.239.192/26 metric 20 5126 | 5127 | router 10.69.71.19 5128 | distance 48 5129 | router 10.69.22.3 metric 10 5130 | router 10.69.22.3 metric 100 5131 | stubnet 10.69.71.19/32 metric 0 5132 | stubnet 10.68.71.19/32 metric 0 5133 | external 10.102.243.192/26 metric 20 5134 | 5135 | router 10.69.71.78 5136 | distance 38 5137 | router 10.69.13.40 metric 10 5138 | stubnet 10.69.71.78/32 metric 0 5139 | stubnet 10.68.71.78/32 metric 0 5140 | external 10.103.2.128/26 metric 20 5141 | 5142 | router 10.69.72.32 5143 | distance 61 5144 | router 10.69.2.27 metric 10 5145 | stubnet 10.69.72.32/32 metric 0 5146 | stubnet 10.68.72.32/32 metric 0 5147 | external 10.103.16.0/26 metric 20 5148 | 5149 | router 10.69.72.50 5150 | distance 53 5151 | router 10.69.79.85 metric 10 5152 | router 10.69.1.74 metric 100 5153 | router 10.69.2.10 metric 100 5154 | router 10.69.79.76 metric 100 5155 | router 10.69.79.85 metric 100 5156 | router 10.69.73.98 metric 100 5157 | router 10.69.74.65 metric 100 5158 | router 10.69.78.94 metric 100 5159 | router 10.69.79.59 metric 100 5160 | stubnet 10.69.72.50/32 metric 0 5161 | stubnet 10.68.72.50/32 metric 0 5162 | external 10.103.20.128/26 metric 20 5163 | 5164 | router 10.69.72.52 5165 | distance 36 5166 | router 10.69.34.61 metric 10 5167 | router 10.69.35.75 metric 100 5168 | router 10.69.3.64 metric 100 5169 | stubnet 10.69.72.52/32 metric 0 5170 | stubnet 10.68.72.52/32 metric 0 5171 | external 10.103.21.0/26 metric 20 5172 | 5173 | router 10.69.72.88 5174 | distance 38 5175 | router 10.69.13.40 metric 10 5176 | stubnet 10.69.72.88/32 metric 0 5177 | stubnet 10.68.72.88/32 metric 0 5178 | external 10.103.30.0/26 metric 20 5179 | 5180 | router 10.69.72.159 5181 | distance 36 5182 | router 10.69.51.51 metric 10 5183 | stubnet 10.69.72.159/32 metric 0 5184 | stubnet 10.68.72.159/32 metric 0 5185 | external 10.103.22.192/26 metric 20 5186 | 5187 | router 10.69.73.25 5188 | distance 136 5189 | router 10.68.73.125 metric 10 5190 | router 10.69.52.83 metric 100 5191 | router 10.69.3.31 metric 100 5192 | router 10.68.73.125 metric 100 5193 | stubnet 10.69.73.25/32 metric 0 5194 | stubnet 10.68.73.25/32 metric 0 5195 | stubnet 10.60.73.25/32 metric 0 5196 | external 10.103.39.64/26 metric 20 5197 | 5198 | router 10.69.73.47 5199 | distance 86 5200 | router 10.69.19.71 metric 10 5201 | stubnet 10.69.73.47/32 metric 0 5202 | stubnet 10.68.73.47/32 metric 0 5203 | external 10.103.44.192/26 metric 20 5204 | 5205 | router 10.69.73.59 5206 | distance 41 5207 | router 10.69.19.34 metric 10 5208 | router 10.69.69.25 metric 100 5209 | stubnet 10.69.73.59/32 metric 0 5210 | stubnet 10.68.73.59/32 metric 0 5211 | external 10.103.47.192/26 metric 20 5212 | 5213 | router 10.69.73.98 5214 | distance 36 5215 | router 10.69.1.74 metric 10 5216 | router 10.69.34.61 metric 10 5217 | router 10.69.2.10 metric 100 5218 | router 10.69.74.65 metric 100 5219 | router 10.69.1.74 metric 100 5220 | router 10.69.79.76 metric 100 5221 | router 10.69.79.59 metric 100 5222 | router 10.69.78.94 metric 100 5223 | router 10.69.79.85 metric 100 5224 | router 10.69.72.50 metric 100 5225 | stubnet 10.69.73.98/32 metric 0 5226 | stubnet 10.68.73.98/32 metric 0 5227 | external 10.103.57.128/26 metric 20 5228 | 5229 | router 10.69.74.49 5230 | distance 38 5231 | router 10.69.13.40 metric 10 5232 | router 10.69.39.23 metric 100 5233 | router 10.69.2.87 metric 100 5234 | router 10.69.42.85 metric 100 5235 | stubnet 10.69.74.49/32 metric 0 5236 | stubnet 10.68.74.49/32 metric 0 5237 | external 10.103.70.64/26 metric 20 5238 | 5239 | router 10.69.74.65 5240 | distance 63 5241 | router 10.69.78.94 metric 10 5242 | router 10.69.78.94 metric 100 5243 | router 10.69.73.98 metric 100 5244 | router 10.69.79.59 metric 100 5245 | router 10.69.72.50 metric 100 5246 | router 10.69.1.74 metric 100 5247 | router 10.69.79.76 metric 100 5248 | router 10.69.79.85 metric 100 5249 | router 10.69.2.10 metric 100 5250 | router 10.69.76.86 metric 100 5251 | stubnet 10.69.74.65/32 metric 0 5252 | stubnet 10.68.74.65/32 metric 0 5253 | external 10.103.74.64/26 metric 20 5254 | 5255 | router 10.69.74.76 5256 | distance 133 5257 | router 10.69.3.22 metric 100 5258 | router 10.69.69.92 metric 100 5259 | stubnet 10.68.74.76/32 metric 0 5260 | stubnet 10.69.74.76/32 metric 0 5261 | external 10.103.77.0/26 metric 20 5262 | 5263 | router 10.69.74.89 5264 | distance 38 5265 | router 10.69.13.40 metric 10 5266 | router 10.69.34.61 metric 100 5267 | router 10.69.1.90 metric 10 5268 | router 10.69.2.76 metric 10 5269 | router 10.69.77.34 metric 100 5270 | stubnet 10.70.253.25/32 metric 0 5271 | stubnet 10.70.253.9/32 metric 0 5272 | stubnet 10.69.74.89/32 metric 0 5273 | stubnet 10.68.74.89/32 metric 0 5274 | external 10.103.80.64/26 metric 20 5275 | 5276 | router 10.69.74.98 5277 | distance 36 5278 | router 10.69.34.61 metric 10 5279 | router 10.69.4.71 metric 100 5280 | stubnet 10.69.74.98/32 metric 0 5281 | stubnet 10.68.74.98/32 metric 0 5282 | external 10.103.82.128/26 metric 20 5283 | 5284 | router 10.69.75.3 5285 | distance 48 5286 | router 10.69.6.64 metric 10 5287 | router 10.69.2.6 metric 100 5288 | stubnet 10.69.75.3/32 metric 0 5289 | stubnet 10.68.75.3/32 metric 0 5290 | external 10.103.83.192/26 metric 20 5291 | 5292 | router 10.69.75.12 5293 | distance 36 5294 | router 10.69.19.34 metric 5 5295 | router 10.69.19.34 metric 10 5296 | router 10.69.69.25 metric 10 5297 | router 10.69.78.40 metric 10 5298 | stubnet 10.70.251.10/32 metric 0 5299 | stubnet 10.69.75.12/32 metric 0 5300 | stubnet 10.68.75.12/32 metric 0 5301 | external 10.103.86.0/26 metric 20 5302 | 5303 | router 10.69.75.16 5304 | distance 46 5305 | router 10.69.67.93 metric 10 5306 | router 10.69.67.93 metric 100 5307 | router 10.69.75.45 metric 100 5308 | stubnet 10.69.75.16/32 metric 0 5309 | stubnet 10.68.75.16/32 metric 0 5310 | external 10.103.87.0/26 metric 20 5311 | 5312 | router 10.69.75.34 5313 | distance 43 5314 | router 10.69.75.91 metric 10 5315 | router 10.69.75.91 metric 100 5316 | stubnet 10.69.75.34/32 metric 0 5317 | stubnet 10.68.75.34/32 metric 0 5318 | external 10.103.91.128/26 metric 20 5319 | external 199.170.132.86/32 metric 20 5320 | 5321 | router 10.69.75.35 5322 | distance 51 5323 | router 10.69.75.135 metric 10 5324 | router 10.69.24.163 metric 10 5325 | stubnet 10.69.75.35/32 metric 0 5326 | 5327 | router 10.69.75.37 5328 | distance 36 5329 | router 10.69.34.61 metric 10 5330 | router 10.69.77.8 metric 100 5331 | stubnet 10.69.75.37/32 metric 0 5332 | stubnet 10.68.75.37/32 metric 0 5333 | external 10.103.92.64/26 metric 20 5334 | 5335 | router 10.69.75.45 5336 | distance 36 5337 | router 10.69.34.61 metric 10 5338 | router 10.69.67.93 metric 100 5339 | router 10.69.26.46 metric 100 5340 | router 10.69.75.16 metric 100 5341 | stubnet 10.69.75.45/32 metric 0 5342 | stubnet 10.68.75.45/32 metric 0 5343 | external 10.103.94.64/26 metric 20 5344 | 5345 | router 10.69.75.74 5346 | distance 26 5347 | router 10.69.7.13 metric 10 5348 | stubnet 10.69.75.74/32 metric 0 5349 | stubnet 10.68.75.74/32 metric 0 5350 | external 10.103.101.128/26 metric 20 5351 | 5352 | router 10.69.75.82 5353 | distance 38 5354 | router 10.69.2.15 metric 10 5355 | router 10.69.3.81 metric 10 5356 | router 10.69.13.40 metric 10 5357 | router 10.69.3.81 metric 100 5358 | router 10.69.44.33 metric 100 5359 | router 10.69.29.59 metric 100 5360 | router 10.69.2.53 metric 100 5361 | router 10.69.28.74 metric 100 5362 | router 10.69.2.12 metric 100 5363 | router 10.69.2.15 metric 100 5364 | router 10.69.1.16 metric 100 5365 | stubnet 10.69.75.82/32 metric 0 5366 | stubnet 10.68.75.82/32 metric 0 5367 | external 10.103.103.128/26 metric 20 5368 | 5369 | router 10.69.75.91 5370 | distance 33 5371 | router 10.69.75.34 metric 10 5372 | router 10.69.59.16 metric 10 5373 | router 10.69.75.34 metric 100 5374 | router 10.69.70.37 metric 100 5375 | stubnet 10.69.75.91/32 metric 0 5376 | stubnet 10.68.75.91/32 metric 0 5377 | external 10.103.105.192/26 metric 20 5378 | 5379 | router 10.69.75.135 5380 | distance 61 5381 | router 10.69.75.35 metric 10 5382 | stubnet 10.69.0.0/16 metric 10 5383 | external 199.167.59.93/32 metric 1 5384 | 5385 | router 10.69.75.153 5386 | distance 160 5387 | router 10.69.35.78 metric 30 5388 | router 10.69.29.94 metric 30 5389 | stubnet 10.69.75.153/32 metric 0 5390 | stubnet 10.68.75.153/32 metric 0 5391 | external 10.103.96.64/26 metric 20 5392 | 5393 | router 10.69.76.0 5394 | distance 48 5395 | router 10.69.6.164 metric 10 5396 | router 10.69.6.64 metric 10 5397 | stubnet 10.69.76.0/32 metric 0 5398 | stubnet 10.68.76.0/32 metric 0 5399 | external 10.103.108.0/26 metric 20 5400 | 5401 | router 10.69.76.32 5402 | distance 36 5403 | router 10.69.65.71 metric 10 5404 | router 10.69.65.71 metric 100 5405 | router 10.69.2.89 metric 100 5406 | router 10.69.4.98 metric 100 5407 | stubnet 10.69.76.32/32 metric 0 5408 | stubnet 10.68.76.32/32 metric 0 5409 | external 10.103.116.0/26 metric 20 5410 | 5411 | router 10.69.76.69 5412 | distance 46 5413 | router 10.69.52.43 metric 100 5414 | router 10.69.62.19 metric 100 5415 | router 10.69.52.43 metric 10 5416 | stubnet 10.68.76.69/32 metric 0 5417 | stubnet 10.69.76.69/32 metric 0 5418 | external 10.103.125.64/26 metric 20 5419 | 5420 | router 10.69.76.74 5421 | distance 50 5422 | router 10.69.3.29 metric 10 5423 | stubnet 10.69.76.74/32 metric 0 5424 | stubnet 10.68.76.74/32 metric 0 5425 | external 10.103.126.128/26 metric 20 5426 | 5427 | router 10.69.76.86 5428 | distance 38 5429 | router 10.69.13.40 metric 10 5430 | router 10.69.74.65 metric 100 5431 | stubnet 10.69.76.86/32 metric 0 5432 | stubnet 10.68.76.86/32 metric 0 5433 | external 10.103.129.128/26 metric 20 5434 | 5435 | router 10.69.77.8 5436 | distance 33 5437 | router 10.69.59.16 metric 10 5438 | router 10.69.75.37 metric 100 5439 | stubnet 10.69.77.8/32 metric 0 5440 | stubnet 10.68.77.8/32 metric 0 5441 | external 10.103.135.0/26 metric 20 5442 | 5443 | router 10.69.77.10 5444 | distance 38 5445 | router 10.69.13.40 metric 10 5446 | stubnet 10.69.77.10/32 metric 0 5447 | stubnet 10.68.77.10/32 metric 0 5448 | external 10.103.135.128/26 metric 20 5449 | 5450 | router 10.69.77.34 5451 | distance 138 5452 | router 10.69.74.89 metric 100 5453 | stubnet 10.69.77.34/32 metric 0 5454 | stubnet 10.68.77.34/32 metric 0 5455 | external 10.70.182.0/25 metric 20 5456 | external 10.103.141.128/26 metric 20 5457 | 5458 | router 10.69.77.64 5459 | distance 51 5460 | router 10.69.24.163 metric 10 5461 | router 10.69.2.94 metric 10 5462 | stubnet 10.69.77.64/32 metric 0 5463 | stubnet 10.68.77.64/32 metric 0 5464 | external 10.103.149.0/26 metric 20 5465 | 5466 | router 10.69.77.65 5467 | distance 56 5468 | router 10.69.77.165 metric 10 5469 | router 10.69.41.92 metric 100 5470 | stubnet 10.69.77.65/32 metric 0 5471 | stubnet 10.68.77.65/32 metric 0 5472 | external 10.103.149.64/26 metric 20 5473 | 5474 | router 10.69.77.70 5475 | distance 33 5476 | router 10.69.59.16 metric 10 5477 | router 10.69.20.12 metric 100 5478 | stubnet 10.69.77.70/32 metric 0 5479 | stubnet 10.68.77.70/32 metric 0 5480 | external 10.103.150.128/26 metric 20 5481 | 5482 | router 10.69.77.89 5483 | distance 60 5484 | router 10.69.1.78 metric 10 5485 | router 10.69.60.171 metric 10 5486 | router 10.69.22.74 metric 10 5487 | router 10.69.1.78 metric 100 5488 | router 10.69.41.16 metric 100 5489 | router 10.69.79.26 metric 100 5490 | router 10.69.60.71 metric 100 5491 | router 10.69.2.69 metric 100 5492 | stubnet 10.69.77.89/32 metric 0 5493 | stubnet 10.68.77.89/32 metric 0 5494 | external 10.103.155.64/26 metric 20 5495 | 5496 | router 10.69.77.165 5497 | distance 46 5498 | router 10.69.77.65 metric 10 5499 | router 10.69.41.92 metric 10 5500 | stubnet 10.69.77.165/32 metric 0 5501 | stubnet 10.68.77.165/32 metric 0 5502 | 5503 | router 10.69.78.0 5504 | distance 65 5505 | router 10.69.4.1 metric 10 5506 | router 10.69.2.43 metric 10 5507 | router 10.69.8.98 metric 10 5508 | router 10.69.78.100 metric 10 5509 | router 10.69.4.31 metric 10 5510 | router 10.69.4.23 metric 10 5511 | router 10.69.1.48 metric 10 5512 | router 10.69.2.78 metric 10 5513 | router 10.69.4.126 metric 10 5514 | stubnet 10.69.78.0/32 metric 0 5515 | stubnet 10.68.78.0/32 metric 0 5516 | external 10.103.158.0/26 metric 20 5517 | 5518 | router 10.69.78.17 5519 | distance 126 5520 | router 10.69.4.5 metric 10 5521 | router 10.69.4.5 metric 100 5522 | router 10.69.16.35 metric 100 5523 | stubnet 10.69.78.17/32 metric 0 5524 | stubnet 10.68.78.17/32 metric 0 5525 | external 10.103.162.64/26 metric 20 5526 | 5527 | router 10.69.78.25 5528 | distance 36 5529 | router 10.69.16.35 metric 10 5530 | router 10.69.4.82 metric 100 5531 | router 10.69.2.23 metric 100 5532 | router 10.69.44.80 metric 100 5533 | router 10.69.51.51 metric 100 5534 | stubnet 10.69.78.25/32 metric 0 5535 | stubnet 10.68.78.25/32 metric 0 5536 | external 10.103.164.64/26 metric 20 5537 | 5538 | router 10.69.78.40 5539 | distance 46 5540 | router 10.69.75.12 metric 10 5541 | stubnet 10.69.78.40/32 metric 0 5542 | stubnet 10.68.78.40/32 metric 0 5543 | external 10.103.168.0/26 metric 20 5544 | 5545 | router 10.69.78.68 5546 | distance 26 5547 | router 10.69.4.103 metric 10 5548 | router 10.69.7.13 metric 10 5549 | router 10.69.4.3 metric 100 5550 | router 10.69.33.54 metric 100 5551 | stubnet 10.69.78.68/32 metric 0 5552 | stubnet 10.68.78.68/32 metric 0 5553 | external 10.103.175.0/26 metric 20 5554 | 5555 | router 10.69.78.69 5556 | distance 61 5557 | router 10.69.2.27 metric 10 5558 | stubnet 10.69.78.69/32 metric 0 5559 | stubnet 10.68.78.69/32 metric 0 5560 | external 10.103.175.64/26 metric 20 5561 | 5562 | router 10.69.78.94 5563 | distance 53 5564 | router 10.69.74.65 metric 10 5565 | router 10.69.79.85 metric 10 5566 | router 10.69.2.10 metric 100 5567 | router 10.69.1.74 metric 100 5568 | router 10.69.79.59 metric 100 5569 | router 10.69.73.98 metric 100 5570 | router 10.69.74.65 metric 100 5571 | router 10.69.79.85 metric 100 5572 | router 10.69.72.50 metric 100 5573 | router 10.69.79.76 metric 100 5574 | router 10.69.2.19 metric 100 5575 | stubnet 10.69.78.94/32 metric 0 5576 | stubnet 10.68.78.94/32 metric 0 5577 | external 10.103.181.128/26 metric 20 5578 | 5579 | router 10.69.78.100 5580 | distance 55 5581 | router 10.69.7.13 metric 39 5582 | router 10.69.2.27 metric 50 5583 | router 10.69.8.98 metric 10 5584 | router 10.69.78.0 metric 10 5585 | stubnet 10.70.91.249/32 metric 0 5586 | stubnet 10.70.72.35/32 metric 0 5587 | stubnet 10.69.78.100/32 metric 0 5588 | external 10.16.10.0/23 metric 20 5589 | external 10.70.185.0/26 metric 20 5590 | 5591 | router 10.69.79.9 5592 | distance 46 5593 | router 10.69.10.84 metric 10 5594 | router 10.69.11.67 metric 100 5595 | stubnet 10.69.79.9/32 metric 0 5596 | stubnet 10.68.79.9/32 metric 0 5597 | external 10.103.185.64/26 metric 20 5598 | 5599 | router 10.69.79.12 5600 | distance 33 5601 | router 10.69.2.8 metric 10 5602 | router 10.69.59.16 metric 10 5603 | router 10.69.2.8 metric 100 5604 | router 10.69.3.62 metric 100 5605 | stubnet 10.69.79.12/32 metric 0 5606 | stubnet 10.68.79.12/32 metric 0 5607 | external 10.103.186.0/26 metric 20 5608 | 5609 | router 10.69.79.25 5610 | distance 26 5611 | router 10.69.7.13 metric 10 5612 | stubnet 10.69.79.25/32 metric 0 5613 | stubnet 10.68.79.25/32 metric 0 5614 | external 10.103.189.64/26 metric 20 5615 | 5616 | router 10.69.79.26 5617 | distance 60 5618 | router 10.69.22.74 metric 10 5619 | router 10.69.41.16 metric 100 5620 | router 10.69.77.89 metric 100 5621 | stubnet 10.69.79.26/32 metric 0 5622 | stubnet 10.68.79.26/32 metric 0 5623 | external 10.103.189.128/26 metric 20 5624 | 5625 | router 10.69.79.34 5626 | distance 36 5627 | router 10.69.24.62 metric 10 5628 | router 10.69.55.78 metric 100 5629 | router 10.69.24.62 metric 100 5630 | stubnet 10.69.79.34/32 metric 0 5631 | stubnet 10.68.79.34/32 metric 0 5632 | external 10.103.191.128/26 metric 20 5633 | 5634 | router 10.69.79.41 5635 | distance 61 5636 | router 10.69.2.49 metric 100 5637 | router 10.69.4.90 metric 100 5638 | router 10.69.35.31 metric 100 5639 | router 10.69.14.40 metric 100 5640 | router 10.69.2.27 metric 10 5641 | stubnet 10.68.79.41/32 metric 0 5642 | stubnet 10.69.79.41/32 metric 0 5643 | external 10.103.193.64/26 metric 20 5644 | 5645 | router 10.69.79.54 5646 | distance 36 5647 | router 10.69.34.61 metric 10 5648 | router 10.69.41.92 metric 100 5649 | router 10.69.3.34 metric 100 5650 | stubnet 10.69.79.54/32 metric 0 5651 | stubnet 10.68.79.54/32 metric 0 5652 | external 10.103.196.128/26 metric 20 5653 | 5654 | router 10.69.79.59 5655 | distance 53 5656 | router 10.69.79.85 metric 10 5657 | router 10.69.74.65 metric 100 5658 | router 10.69.2.10 metric 100 5659 | router 10.69.73.98 metric 100 5660 | router 10.69.78.94 metric 100 5661 | router 10.69.79.85 metric 100 5662 | router 10.69.72.50 metric 100 5663 | stubnet 10.69.79.59/32 metric 0 5664 | stubnet 10.68.79.59/32 metric 0 5665 | external 10.103.197.192/26 metric 20 5666 | 5667 | router 10.69.79.76 5668 | distance 53 5669 | router 10.69.79.85 metric 10 5670 | router 10.69.1.74 metric 100 5671 | router 10.69.73.98 metric 100 5672 | router 10.69.2.10 metric 100 5673 | router 10.69.72.50 metric 100 5674 | router 10.69.79.85 metric 100 5675 | router 10.69.74.65 metric 100 5676 | router 10.69.78.94 metric 100 5677 | stubnet 10.69.79.76/32 metric 0 5678 | stubnet 10.68.79.76/32 metric 0 5679 | external 10.103.202.0/26 metric 20 5680 | 5681 | router 10.69.79.85 5682 | distance 43 5683 | router 10.69.2.10 metric 100 5684 | router 10.69.74.65 metric 100 5685 | router 10.69.1.74 metric 100 5686 | router 10.69.79.76 metric 100 5687 | router 10.69.73.98 metric 100 5688 | router 10.69.78.94 metric 100 5689 | router 10.69.79.59 metric 100 5690 | router 10.69.72.50 metric 100 5691 | router 10.69.2.19 metric 100 5692 | router 10.69.78.94 metric 10 5693 | router 10.69.2.10 metric 10 5694 | router 10.69.72.50 metric 10 5695 | router 10.69.79.59 metric 10 5696 | router 10.69.79.76 metric 10 5697 | router 10.69.2.19 metric 10 5698 | stubnet 10.68.79.85/32 metric 0 5699 | stubnet 10.69.79.85/32 metric 0 5700 | external 10.103.204.64/26 metric 20 5701 | 5702 | router 10.69.79.86 5703 | distance 46 5704 | router 10.69.33.1 metric 10 5705 | router 10.69.33.1 metric 100 5706 | stubnet 10.69.79.86/32 metric 0 5707 | stubnet 10.68.79.86/32 metric 0 5708 | external 10.103.204.128/26 metric 20 5709 | 5710 | router 10.69.79.97 5711 | distance 38 5712 | router 10.69.1.97 metric 10 5713 | router 10.69.13.40 metric 10 5714 | router 10.69.70.65 metric 100 5715 | router 10.69.1.97 metric 100 5716 | router 10.69.3.87 metric 100 5717 | stubnet 10.69.79.97/32 metric 0 5718 | stubnet 10.68.79.97/32 metric 0 5719 | external 10.103.207.64/26 metric 20 5720 | 5721 | router 10.70.71.137 5722 | distance 61 5723 | network 10.70.76.0/24 metric 1 5724 | external 199.167.59.7/32 metric 1 5725 | 5726 | router 10.70.76.24 5727 | distance 61 5728 | network 10.70.76.0/24 metric 10 5729 | stubnet 10.10.10.123/32 metric 0 5730 | external 0.0.0.0/0 metric2 10000 via 10.70.76.1 5731 | external 10.10.10.123/32 metric2 10000 5732 | external 10.70.76.0/24 metric2 10000 5733 | 5734 | router 10.70.89.133 5735 | distance 15 5736 | router 10.69.14.217 metric 50 5737 | router 10.69.3.117 metric 15 5738 | router 10.69.3.129 metric 15 5739 | router 10.70.251.26 metric 31 5740 | router 10.70.251.34 metric 15 5741 | router 10.70.251.22 metric 30 5742 | router 10.70.253.15 metric 15 5743 | router 10.69.1.35 metric 41 5744 | network 10.70.89.128/27 metric 1 5745 | stubnet 10.70.89.32/32 metric 0 5746 | stubnet 10.70.89.34/32 metric 0 5747 | stubnet 10.70.89.40/32 metric 0 5748 | stubnet 10.70.251.25/32 metric 0 5749 | stubnet 10.70.251.33/32 metric 0 5750 | stubnet 10.70.251.37/32 metric 0 5751 | stubnet 10.70.253.16/31 metric 15 5752 | stubnet 10.70.251.48/30 metric 15 5753 | stubnet 10.70.251.53/32 metric 0 5754 | stubnet 10.70.251.21/32 metric 0 5755 | stubnet 199.170.132.4/32 metric 0 5756 | stubnet 10.70.253.28/32 metric 0 5757 | stubnet 10.70.253.14/32 metric 0 5758 | stubnet 10.70.251.65/32 metric 0 5759 | stubnet 10.70.251.29/32 metric 0 5760 | external 10.70.89.32/31 metric 1 5761 | external 10.70.89.34/31 metric 1 5762 | external 10.70.89.40/31 metric 1 5763 | external 10.70.89.42/31 metric 1 5764 | external 10.70.89.128/27 metric 1 5765 | external 10.70.92.0/24 metric 1 5766 | external 10.70.251.20/30 metric 1 5767 | external 10.70.251.24/30 metric 1 5768 | external 10.70.251.28/30 metric 1 5769 | external 10.70.251.32/30 metric 1 5770 | external 10.70.251.36/30 metric 1 5771 | external 10.70.251.48/30 metric 1 5772 | external 10.70.251.52/30 metric 1 5773 | external 10.70.251.64/30 metric 1 5774 | external 10.70.253.14/31 metric 1 5775 | external 10.70.253.16/31 metric 1 5776 | external 10.70.253.28/31 metric 1 5777 | external 199.170.132.4/32 metric 1 5778 | 5779 | router 10.70.90.22 5780 | distance 26 5781 | network 10.70.90.0/24 metric 100 5782 | stubnet 199.170.132.97/32 metric 100 5783 | 5784 | router 10.70.90.34 5785 | distance 26 5786 | network 10.70.90.0/24 metric 10 5787 | stubnet 199.170.132.38/32 metric 0 5788 | 5789 | router 10.70.90.87 5790 | distance 26 5791 | network 10.70.90.0/24 metric 10 5792 | stubnet 199.170.132.91/32 metric 10 5793 | 5794 | router 10.70.90.90 5795 | distance 26 5796 | network 10.70.90.0/24 metric 10 5797 | stubnet 199.170.132.37/32 metric 0 5798 | external 10.70.90.0/24 metric 1 5799 | external 199.170.132.37/32 metric 1 5800 | 5801 | router 10.70.90.98 5802 | distance 26 5803 | network 10.70.90.0/24 metric 10 5804 | stubnet 199.170.132.36/32 metric 0 5805 | external 10.70.90.0/24 metric 1 5806 | external 199.170.132.36/32 metric 1 5807 | 5808 | router 10.70.90.128 5809 | distance 26 5810 | network 10.70.90.0/24 metric 10 5811 | stubnet 208.68.5.21/32 metric 10 5812 | 5813 | router 10.70.90.175 5814 | distance 26 5815 | network 10.70.90.0/24 metric 10 5816 | external 10.2.3.0/24 metric 1 5817 | 5818 | router 10.70.102.6 5819 | distance 33 5820 | router 10.69.0.10 metric 1 5821 | stubnet 10.70.102.4/30 metric 1 5822 | external 0.0.0.0/0 metric 1 5823 | external 10.70.102.128/25 metric 20 5824 | external 10.70.103.0/24 metric 20 5825 | external 10.70.253.47/32 metric 20 5826 | external 23.158.16.17/32 metric 20 5827 | 5828 | router 10.70.123.1 5829 | distance 26 5830 | network 10.70.90.0/24 metric 10 5831 | external 10.70.123.0/24 metric 1 5832 | external 199.167.59.72/32 metric 1 5833 | external 199.167.59.96/32 metric 1 5834 | external 199.170.132.34/32 metric 1 5835 | external 199.170.132.79/32 metric 1 5836 | external 199.170.132.80/32 metric 1 5837 | external 199.170.132.83/32 metric 1 5838 | 5839 | router 10.70.164.1 5840 | distance 51 5841 | router 10.69.24.163 metric 10 5842 | router 10.69.31.75 metric 100 5843 | stubnet 10.69.0.19/32 metric 0 5844 | stubnet 10.68.0.19/32 metric 0 5845 | external 10.70.164.0/25 metric 20 5846 | external 10.70.164.128/26 metric 20 5847 | 5848 | router 10.70.175.1 5849 | distance 86 5850 | router 10.69.14.40 metric 100 5851 | router 10.69.35.31 metric 100 5852 | router 10.69.1.51 metric 100 5853 | router 10.69.2.49 metric 100 5854 | router 10.69.4.90 metric 100 5855 | router 10.69.19.71 metric 10 5856 | stubnet 10.68.27.92/32 metric 0 5857 | stubnet 10.69.27.92/32 metric 0 5858 | external 10.70.175.0/24 metric 20 5859 | 5860 | router 10.70.176.1 5861 | distance 91 5862 | router 10.69.4.7 metric 10 5863 | stubnet 10.69.4.65/32 metric 0 5864 | stubnet 10.68.4.65/32 metric 0 5865 | external 10.70.176.0/24 metric 20 5866 | 5867 | router 10.70.177.5 5868 | distance 37 5869 | router 10.69.1.77 metric 1 5870 | stubnet 10.10.10.123/32 metric 0 5871 | stubnet 10.70.177.5/32 metric 0 5872 | 5873 | router 10.70.251.22 5874 | distance 45 5875 | router 10.69.1.77 metric 10 5876 | router 10.70.89.133 metric 30 5877 | stubnet 10.69.1.177/32 metric 10 5878 | stubnet 10.70.251.22/32 metric 30 5879 | external 10.70.251.20/30 metric 1 5880 | 5881 | router 10.70.251.26 5882 | distance 46 5883 | router 10.69.1.48 metric 10 5884 | router 10.70.89.133 metric 31 5885 | stubnet 10.69.1.148/32 metric 10 5886 | stubnet 10.70.251.26/32 metric 31 5887 | external 10.70.251.24/30 metric 1 5888 | 5889 | router 10.70.251.34 5890 | distance 30 5891 | router 10.70.89.133 metric 15 5892 | stubnet 10.70.178.1/32 metric 1 5893 | stubnet 10.70.251.34/32 metric 15 5894 | external 10.69.3.91/32 metric 1 5895 | external 10.70.178.0/28 metric 1 5896 | external 10.70.251.32/30 metric 1 5897 | 5898 | router 10.70.253.15 5899 | distance 0 5900 | router 10.70.89.133 metric 15 5901 | stubnet 10.70.253.15/32 metric 0 5902 | external 10.70.178.32/27 metric2 10000 5903 | 5904 | router 199.167.59.98 5905 | distance 51 5906 | router 10.69.24.163 metric 10 5907 | router 10.69.3.78 metric 100 5908 | router 10.69.29.83 metric 100 5909 | stubnet 10.69.28.14/32 metric 0 5910 | stubnet 10.68.28.14/32 metric 0 5911 | external 10.70.170.0/25 metric 20 5912 | external 10.70.170.128/26 metric 20 5913 | external 199.167.59.84/32 metric 20 5914 | external 199.167.59.98/32 metric 20 5915 | 5916 | network 10.70.76.0/24 5917 | dr 10.10.10.10 5918 | distance 61 5919 | router 10.10.10.10 5920 | router 10.70.71.137 5921 | router 10.70.76.24 5922 | router 10.69.2.27 5923 | 5924 | network 10.70.89.128/27 5925 | dr 10.69.7.13 5926 | distance 16 5927 | router 10.69.7.13 5928 | router 10.70.89.133 5929 | 5930 | network 10.70.90.0/24 5931 | dr 10.70.123.1 5932 | distance 26 5933 | router 10.70.123.1 5934 | router 10.70.90.128 5935 | router 10.70.90.34 5936 | router 10.70.90.98 5937 | router 10.70.90.90 5938 | router 10.70.90.87 5939 | router 10.69.7.13 5940 | router 10.70.90.175 5941 | router 10.70.90.22 5942 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "bird-ospf-link-db-parser" 3 | version = "1.1.3" 4 | authors = [{ name = "Andrew Dickinson", email = "andrew.dickinson.0216@gmail.com" }] 5 | description = "Parse the text output from the BIRD Routing Daemon's OSPF link database into machine readable JSON" 6 | readme = "README.md" 7 | license = { file = "LICENSE.txt" } 8 | classifiers = [ 9 | "License :: OSI Approved :: MIT License", 10 | "Programming Language :: Python :: 3", 11 | "Operating System :: OS Independent" 12 | ] 13 | dependencies = [ 14 | "python-dotenv", 15 | "pytz", 16 | "python-dateutil", 17 | "jsonschema", 18 | ] 19 | 20 | [project.urls] 21 | repository = "https://github.com/Andrew-Dickinson/bird-ospf-link-db-parser" 22 | 23 | [project.optional-dependencies] 24 | test = [ 25 | "pytest >= 6", 26 | "coverage", 27 | "freezegun", 28 | ] 29 | dev = [ 30 | "build", 31 | "twine" 32 | ] 33 | 34 | [build-system] 35 | requires = ['setuptools>=42'] 36 | build-backend = 'setuptools.build_meta' 37 | 38 | [project.scripts] 39 | parse-bird-link-db = "bird_parser:main.main" 40 | 41 | [options.packages.find] 42 | where = "src" -------------------------------------------------------------------------------- /src/bird_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew-Dickinson/bird-ospf-link-db-parser/7dd5f6a1c8cdb5328c3409ed5ba536c14bcbd7be/src/bird_parser/__init__.py -------------------------------------------------------------------------------- /src/bird_parser/main.py: -------------------------------------------------------------------------------- 1 | import json 2 | import os.path 3 | import sys 4 | 5 | from bird_parser.parse_bird_output import parse_ospf_state_all 6 | 7 | from jsonschema import validate 8 | 9 | 10 | def main(): 11 | if len(sys.argv) < 2: 12 | print(f"Usage: {sys.argv[0]} OSPF_LINK_DB_TXT_FILE [--no-validate]") 13 | sys.exit(2) 14 | 15 | file_name = sys.argv[1] 16 | if file_name == "-": 17 | input_str = sys.stdin.read() 18 | else: 19 | with open(file_name) as input_file: 20 | input_str = input_file.read() 21 | 22 | link_db = parse_ospf_state_all(input_str) 23 | 24 | if len(sys.argv) < 3 or sys.argv[2] != "--no-validate": 25 | schema_fname = os.path.join(os.path.dirname(__file__), "output_schema.json") 26 | with open(schema_fname, "r") as output_schema: 27 | validate(link_db, json.load(output_schema)) 28 | 29 | print(json.dumps(link_db)) 30 | 31 | 32 | if __name__ == "__main__": 33 | main() 34 | -------------------------------------------------------------------------------- /src/bird_parser/output_schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "object", 3 | "required": [ 4 | "areas" 5 | ], 6 | "additionalProperties": false, 7 | "properties": { 8 | "areas": { 9 | "type": "object", 10 | "patternProperties": { 11 | "^(?:[0-9]{1,3}\\.){3}[0-9]{1,3}$": { 12 | "type": "object", 13 | "required": [ 14 | "routers", 15 | "networks" 16 | ], 17 | "properties": { 18 | "routers": { 19 | "type": "object", 20 | "patternProperties": { 21 | "^(?:[0-9]{1,3}\\.){3}[0-9]{1,3}$": { 22 | "type": "object", 23 | "properties": { 24 | "links": { 25 | "type": "object", 26 | "properties": { 27 | "router": { 28 | "type": "array", 29 | "minItems": 1, 30 | "items": { 31 | "type": "object", 32 | "required": [ 33 | "id", 34 | "metric" 35 | ], 36 | "properties": { 37 | "id": { 38 | "type": "string", 39 | "pattern": "^(?:[0-9]{1,3}\\.){3}[0-9]{1,3}$" 40 | }, 41 | "metric": { 42 | "type": "integer", 43 | "minimum": 0 44 | } 45 | }, 46 | "additionalProperties": false 47 | } 48 | }, 49 | "network": { 50 | "type": "array", 51 | "minItems": 1, 52 | "items": { 53 | "type": "object", 54 | "required": [ 55 | "id", 56 | "metric" 57 | ], 58 | "properties": { 59 | "id": { 60 | "type": "string", 61 | "pattern": "^(?:[0-9]{1,3}\\.){3}[0-9]{1,3}\\/[0-9]{1,2}$" 62 | }, 63 | "metric": { 64 | "type": "integer", 65 | "minimum": 0 66 | } 67 | }, 68 | "additionalProperties": false 69 | } 70 | }, 71 | "stubnet": { 72 | "type": "array", 73 | "minItems": 1, 74 | "items": { 75 | "type": "object", 76 | "required": [ 77 | "id", 78 | "metric" 79 | ], 80 | "properties": { 81 | "id": { 82 | "type": "string", 83 | "pattern": "^(?:[0-9]{1,3}\\.){3}[0-9]{1,3}\\/[0-9]{1,2}$" 84 | }, 85 | "metric": { 86 | "type": "integer", 87 | "minimum": 0 88 | } 89 | }, 90 | "additionalProperties": false 91 | } 92 | }, 93 | "external": { 94 | "type": "array", 95 | "minItems": 1, 96 | "items": { 97 | "type": "object", 98 | "required": [ 99 | "id" 100 | ], 101 | "properties": { 102 | "id": { 103 | "type": "string", 104 | "pattern": "^(?:[0-9]{1,3}\\.){3}[0-9]{1,3}\\/[0-9]{1,2}$" 105 | }, 106 | "metric": { 107 | "type": "integer", 108 | "minimum": 0 109 | }, 110 | "metric2": { 111 | "type": "integer", 112 | "minimum": 0 113 | }, 114 | "via": { 115 | "type": "string", 116 | "pattern": "^(?:[0-9]{1,3}\\.){3}[0-9]{1,3}$" 117 | } 118 | }, 119 | "additionalProperties": false 120 | } 121 | } 122 | }, 123 | "additionalProperties": false 124 | } 125 | }, 126 | "minProperties": 1, 127 | "additionalProperties": false 128 | } 129 | }, 130 | "additionalProperties": false 131 | }, 132 | "networks": { 133 | "type": "object", 134 | "patternProperties": { 135 | "^(?:[0-9]{1,3}\\.){3}[0-9]{1,3}\\/[0-9]{1,2}$": { 136 | "type": "object", 137 | "required": [ 138 | "dr", 139 | "routers" 140 | ], 141 | "properties": { 142 | "dr": { 143 | "type": "string", 144 | "pattern": "^(?:[0-9]{1,3}\\.){3}[0-9]{1,3}$" 145 | }, 146 | "routers": { 147 | "type": "array", 148 | "items": { 149 | "type": "string", 150 | "pattern": "^(?:[0-9]{1,3}\\.){3}[0-9]{1,3}$" 151 | } 152 | } 153 | }, 154 | "additionalProperties": false 155 | } 156 | }, 157 | "additionalProperties": false 158 | } 159 | }, 160 | "additionalProperties": false 161 | } 162 | } 163 | } 164 | } 165 | } -------------------------------------------------------------------------------- /src/bird_parser/parse_bird_output.py: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | from bird_parser.utils import ( 4 | OutputDict, 5 | parse_router_link, 6 | get_default_value_for_resource, 7 | ) 8 | 9 | 10 | def get_indentation_level(line: str): 11 | return len(line) - len(line.lstrip("\t")) 12 | 13 | 14 | def parse_ospf_state_all(ospf_state_str: str): 15 | parser = StackParser(ospf_state_str) 16 | return parser.parse() 17 | 18 | 19 | class StackParser: 20 | def __init__(self, ospf_state_str: str): 21 | self.output = OutputDict({}) 22 | self.previous_indentation_level = 0 23 | self.path_stack = ["", ""] 24 | 25 | self.lines = [ 26 | line.rstrip() for line in ospf_state_str.split("\n") if len(line) > 0 27 | ] 28 | self.lines.append("") 29 | 30 | def parse(self): 31 | assert re.match(r"BIRD.+ready\.", self.lines[0]) 32 | 33 | for line in self.lines[1:]: 34 | self.parse_line(line) 35 | 36 | return self.output 37 | 38 | def parse_line(self, line: str): 39 | line_parts = line.split() 40 | indentation_level = get_indentation_level(line) 41 | 42 | if line_parts and ( 43 | line_parts[0] == "distance" or line_parts[0] == "unreachable" 44 | ): 45 | # Ignore distance/reachability from our local perspective as it's not meaningful to 46 | # understanding the global state of the system 47 | return 48 | 49 | level_diff = indentation_level - self.previous_indentation_level 50 | if level_diff > 0: 51 | assert ( 52 | level_diff == 1 53 | ), "Indenting by more than one tab at a time is not supported" 54 | self.handle_enter_resource(self.path_stack[-2][:-1]) 55 | else: 56 | if level_diff < 0: 57 | self.handle_exit_resource(self.path_stack[2][:-1]) 58 | 59 | # Account for the un-indent 60 | for i in range(abs(level_diff)): 61 | self.path_stack.pop() 62 | self.path_stack.pop() 63 | 64 | # Remove the previous "current level", since it will be replaced below 65 | self.path_stack.pop() 66 | self.path_stack.pop() 67 | 68 | if line_parts: 69 | self.path_stack.append(line_parts[0] + "s") 70 | self.path_stack.append(line_parts[1]) 71 | 72 | current_container_name = ( 73 | self.path_stack[-4][:-1] if len(self.path_stack) > 2 else None 74 | ) 75 | if current_container_name == "router": 76 | link_type = line_parts[0] 77 | link_list_for_type = self.output.get_value_by_path( 78 | self.path_stack[:-2] + ["links", link_type] 79 | ) 80 | link_list_for_type.append(parse_router_link(line_parts)) 81 | elif current_container_name == "network": 82 | network = self.output.get_value_by_path(self.path_stack[:-2]) 83 | if line_parts[0] == "dr": 84 | network["dr"] = line_parts[1] 85 | elif line_parts[0] == "router": 86 | network["routers"].append(line_parts[1]) 87 | else: 88 | raise ValueError(f"Invalid line: {line}") 89 | 90 | self.previous_indentation_level = indentation_level 91 | 92 | def handle_enter_resource(self, resource_name: str): 93 | # Create an output key to track the new deeper indentation level 94 | self.output.create_key_from_path(self.path_stack) 95 | 96 | # If we are entering an area, router, or network, create the appropriate default containers 97 | if resource_name in ["area", "router", "network"]: 98 | self.output.set_value_by_path( 99 | self.path_stack, 100 | get_default_value_for_resource(resource_name), 101 | ) 102 | 103 | def handle_exit_resource(self, resource_name: str): 104 | # If we are exiting a router, clean up the empty link lists so they don't appear in the output 105 | if resource_name == "router": 106 | link_lists = self.output.get_value_by_path(self.path_stack[:-2] + ["links"]) 107 | lists_to_remove = [ 108 | link_type for link_type, links in link_lists.items() if len(links) == 0 109 | ] 110 | for link_type in lists_to_remove: 111 | del link_lists[link_type] 112 | -------------------------------------------------------------------------------- /src/bird_parser/utils.py: -------------------------------------------------------------------------------- 1 | from typing import List, Any 2 | 3 | 4 | class OutputDict(dict): 5 | def create_key_from_path(self, path: List[str]): 6 | nested_dict = self 7 | for item in path: 8 | if item not in nested_dict: 9 | nested_dict[item] = {} 10 | nested_dict = nested_dict[item] 11 | 12 | def set_value_by_path(self, path: List[str], value: Any): 13 | nested_dict = self 14 | for item in path[:-1]: 15 | nested_dict = nested_dict[item] 16 | 17 | nested_dict[path[-1]] = value 18 | 19 | def get_value_by_path(self, path: List[str]): 20 | nested_dict = self 21 | for item in path: 22 | nested_dict = nested_dict[item] 23 | 24 | return nested_dict 25 | 26 | 27 | def parse_router_link(line_parts: List[str]): 28 | assert line_parts[2] in ["metric", "metric2"] 29 | link = {"id": line_parts[1], line_parts[2]: int(line_parts[3])} 30 | 31 | if len(line_parts) == 6: 32 | assert line_parts[4] == "via" 33 | link["via"] = line_parts[5] 34 | 35 | return link 36 | 37 | 38 | def get_default_value_for_resource(resource_name: str): 39 | if resource_name == "area": 40 | return { 41 | "networks": {}, 42 | "routers": {}, 43 | } 44 | elif resource_name == "router": 45 | return { 46 | "links": { 47 | "network": [], 48 | "external": [], 49 | "router": [], 50 | "stubnet": [], 51 | } 52 | } 53 | elif resource_name == "network": 54 | return { 55 | "dr": "", 56 | "routers": [], 57 | } 58 | else: 59 | raise NotImplementedError( 60 | f"No default value found for resource: {resource_name}" 61 | ) 62 | -------------------------------------------------------------------------------- /test/test_comprehensive.py: -------------------------------------------------------------------------------- 1 | import pytest 2 | from bird_parser.parse_bird_output import parse_ospf_state_all 3 | 4 | SIMPLE_INPUT = """BIRD 1.6.8 ready. 5 | 6 | area 0.0.0.0 7 | router 10.68.29.50 8 | distance 51 9 | router 10.69.7.31 metric 10 10 | stubnet 10.69.29.50/32 metric 0 11 | external 10.70.174.0/24 metric 20 12 | external 199.170.132.0/24 metric 20 via 10.70.89.131 13 | external 10.70.178.32/27 metric2 10000 14 | network 10.70.76.0/24 metric 10 15 | 16 | network 10.70.89.128/27 17 | dr 10.69.7.13 18 | distance 16 19 | router 10.69.7.13 20 | router 10.70.89.133 21 | 22 | area 1.1.1.1 23 | router 10.10.10.10 24 | distance 61 25 | network 10.70.76.0/24 metric 10 26 | external 10.10.10.10/32 metric 1 27 | external 10.10.10.11/32 metric 1 28 | 29 | router 10.68.29.50 30 | distance 51 31 | router 10.69.7.31 metric 10 32 | stubnet 10.69.29.50/32 metric 0 33 | stubnet 10.68.29.50/32 metric 0 34 | external 10.70.174.0/24 metric 20 35 | 36 | """ 37 | 38 | 39 | def test_parse_comprehensive(): 40 | parsed_object = parse_ospf_state_all(SIMPLE_INPUT) 41 | 42 | assert parsed_object == { 43 | "areas": { 44 | "0.0.0.0": { 45 | "networks": { 46 | "10.70.89.128/27": { 47 | "dr": "10.69.7.13", 48 | "routers": ["10.69.7.13", "10.70.89.133"], 49 | } 50 | }, 51 | "routers": { 52 | "10.68.29.50": { 53 | "links": { 54 | "network": [{"id": "10.70.76.0/24", "metric": 10}], 55 | "external": [ 56 | {"id": "10.70.174.0/24", "metric": 20}, 57 | { 58 | "id": "199.170.132.0/24", 59 | "metric": 20, 60 | "via": "10.70.89.131", 61 | }, 62 | {"id": "10.70.178.32/27", "metric2": 10000}, 63 | ], 64 | "router": [{"id": "10.69.7.31", "metric": 10}], 65 | "stubnet": [{"id": "10.69.29.50/32", "metric": 0}], 66 | } 67 | }, 68 | }, 69 | }, 70 | "1.1.1.1": { 71 | "networks": {}, 72 | "routers": { 73 | "10.10.10.10": { 74 | "links": { 75 | "network": [{"id": "10.70.76.0/24", "metric": 10}], 76 | "external": [ 77 | {"id": "10.10.10.10/32", "metric": 1}, 78 | {"id": "10.10.10.11/32", "metric": 1}, 79 | ], 80 | } 81 | }, 82 | "10.68.29.50": { 83 | "links": { 84 | "router": [{"id": "10.69.7.31", "metric": 10}], 85 | "stubnet": [ 86 | {"id": "10.69.29.50/32", "metric": 0}, 87 | {"id": "10.68.29.50/32", "metric": 0}, 88 | ], 89 | "external": [ 90 | {"id": "10.70.174.0/24", "metric": 20}, 91 | ], 92 | } 93 | }, 94 | }, 95 | }, 96 | } 97 | } 98 | -------------------------------------------------------------------------------- /test/test_live_data.py: -------------------------------------------------------------------------------- 1 | import json 2 | import os 3 | 4 | import pytest 5 | from bird_parser.parse_bird_output import parse_ospf_state_all 6 | 7 | 8 | def test_with_live_data(): 9 | absolute_path = os.path.dirname(__file__) 10 | input_fname = os.path.join( 11 | absolute_path, "artifacts/ospf_state_output_apr_29_2023.txt" 12 | ) 13 | expected_output_fname = os.path.join( 14 | absolute_path, "artifacts/expected_output.json" 15 | ) 16 | with open(input_fname, "r") as input_txt: 17 | parsed_object = parse_ospf_state_all(input_txt.read()) 18 | 19 | with open(expected_output_fname, "r") as output_json: 20 | expected_output = json.load(output_json) 21 | 22 | parsed_routers = parsed_object["areas"]["0.0.0.0"]["routers"] 23 | expected_routers = expected_output["areas"]["0.0.0.0"]["routers"] 24 | 25 | for key in parsed_routers: 26 | assert parsed_routers[key] == expected_routers[key] 27 | 28 | parsed_networks = parsed_object["areas"]["0.0.0.0"]["networks"] 29 | expected_networks = expected_output["areas"]["0.0.0.0"]["networks"] 30 | 31 | for key in parsed_networks: 32 | assert parsed_networks[key] == expected_networks[key] 33 | -------------------------------------------------------------------------------- /test/test_simple.py: -------------------------------------------------------------------------------- 1 | import pytest 2 | from bird_parser.parse_bird_output import parse_ospf_state_all 3 | 4 | SIMPLE_INPUT = """BIRD 1.6.8 ready. 5 | 6 | area 0.0.0.0 7 | 8 | router 10.10.10.10 9 | distance 61 10 | network 10.70.76.0/24 metric 10 11 | external 10.10.10.10/32 metric 1 12 | external 10.10.10.11/32 metric 1 13 | 14 | router 10.68.29.50 15 | distance 51 16 | router 10.69.7.31 metric 10 17 | stubnet 10.69.29.50/32 metric 0 18 | stubnet 10.68.29.50/32 metric 0 19 | external 10.70.174.0/24 metric 20 20 | 21 | """ 22 | 23 | 24 | def test_parse_simple(): 25 | parsed_object = parse_ospf_state_all(SIMPLE_INPUT) 26 | 27 | assert parsed_object == { 28 | "areas": { 29 | "0.0.0.0": { 30 | "networks": {}, 31 | "routers": { 32 | "10.10.10.10": { 33 | "links": { 34 | "network": [{"id": "10.70.76.0/24", "metric": 10}], 35 | "external": [ 36 | {"id": "10.10.10.10/32", "metric": 1}, 37 | {"id": "10.10.10.11/32", "metric": 1}, 38 | ], 39 | } 40 | }, 41 | "10.68.29.50": { 42 | "links": { 43 | "router": [{"id": "10.69.7.31", "metric": 10}], 44 | "stubnet": [ 45 | {"id": "10.69.29.50/32", "metric": 0}, 46 | {"id": "10.68.29.50/32", "metric": 0}, 47 | ], 48 | "external": [ 49 | {"id": "10.70.174.0/24", "metric": 20}, 50 | ], 51 | } 52 | }, 53 | }, 54 | } 55 | } 56 | } 57 | --------------------------------------------------------------------------------