Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-06-26 | migration: T6007: convert all migration scripts to load as module | John Estabrook | |
2023-08-02 | T5427: Fix migration script arguments len expects 2 args | Viacheslav Hletenko | |
The script's name is always provided as the first argument sys.argv[0] Expected length for argv is 2 (script itself + config file) Change: 'if (len(argv) < 1)' to 'if len(argv) < 2' | |||
2023-07-03 | isis: T5335: fix invalid isis config base in migration script | Jonathan Voss | |
2023-04-13 | T5150: migrate CLI configs to new Kernel/Zebra route-map support | Christian Breunig | |
2022-10-11 | isis: T4739: ISIS segment routing being refactored | Cheeze_It | |
This is to refactor ISIS segment routing to match up with OSPF segment routing. | |||
2021-03-29 | isis: T3417: fix invalid call to exit() in migration script | Christian Poessinger | |
2021-03-21 | isis: T3417: drop artificial "domain" node identifying the IS-IS process name | Christian Poessinger | |
As we and FRR do not support multiple FRR process instances, there is no need to make this configurable for a user. We rather rely on a solid default "VyOS". | |||
2021-03-21 | isis: T3417: move from cli tagNode to node | Christian Poessinger | |
As there can only be one running IS-IS process (FRR limitation) there is no need in having a tagNode here. This adds artifical restrictions/limitations when moving on to support VRFs for IS-IS protocol. |