Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-06-03 | bfd: T6440: BFD peer length typo | Hannes Tamme | |
2024-04-03 | T6199: drop unused Python imports | Christian Breunig | |
found using "git ls-files *.py | xargs pylint | grep W0611" | |||
2024-01-23 | bfd: T5967: add minimum-ttl option | Christian Breunig | |
* set protocols bfd peer <x.x.x.x> minimum-ttl <1-254> * set protocols bfd profile <name> minimum-ttl <1-254> | |||
2023-08-07 | T5319: remove workarounds for defaults in protocols_bfd.py | John Estabrook | |
2023-08-06 | T5195: move helpers from vyos.validate to vyos.utils package | Christian Breunig | |
2022-04-14 | frr: T4353: fix Jinja2 linting errors | Christian Poessinger | |
2021-12-11 | bfd: T3310: bugfix on profile names using hyphens | Christian Poessinger | |
2021-12-06 | bfd: T1183: use unified error style | Christian Poessinger | |
2021-12-06 | bfd: T4054: bugfix missing profile assignment to peer | Christian Poessinger | |
2021-12-04 | bfd: T4044: add VRF support for peers | Christian Poessinger | |
2021-12-04 | bfd: T3310: add key_mangling option when calling get_config_dict() | Christian Poessinger | |
2021-11-27 | bfd: T3753: adjust to new FRR 8.1 syntax | Christian Poessinger | |
Every node in running config now has an explicit "exit" tag. | |||
2021-11-27 | frr: T3753: add default_add_before mnemonic for routing protocols to re-use code | Christian Poessinger | |
2021-11-27 | bfd: T3753: FRR 8 added support for bfdd when using frr-reload.py | Christian Poessinger | |
2021-09-27 | frr: T2175: rename daemon Jinja2 templates to match (d)aemon suffix | Christian Poessinger | |
2021-07-23 | frr: T2175: remove no longer required loop when removing routing protocols | Christian Poessinger | |
2021-04-15 | protocols: remove superfluous import of vyos.util.call | Christian Poessinger | |
2021-02-15 | bfd: T3310: implement peer profile support | Christian Poessinger | |
2021-02-15 | bfd: T3310: migrate to get_config_dict() and FRR reload | Christian Poessinger | |
2020-11-13 | vyos.template: provide general is_ip(v4|v6) helpers | Christian Poessinger | |
We had two places were the is_ip, is_ipv4 and is_ipv6 helpers had been defined. All places now have been converged into vyos.template as they are used both in the Jinja2 templates and also in our scripts. | |||
2020-05-29 | airbag: T2088: explicit enabling of the feature | Thomas Mangin | |
airbag must now be explicitly installed. the patch also allow to fully disables the installation of the logging code at setup (and not just installing and doing nothing) | |||
2020-05-17 | frr: combine all templates in frr directory | Christian Poessinger | |
2020-04-12 | template: T2230: use render to generate templates | Thomas Mangin | |
convert all call to jinja to use template.render | |||
2020-04-09 | util: T2226: os.system was wrongly converted to run | Thomas Mangin | |
os.system does print the ouput of the command, run() does not. A new function called call() does the printing and return the error code. | |||
2020-04-07 | util: T2226: fix merge conflict | Thomas Mangin | |
2020-04-06 | util: T2226: covert most calls from os.system to util | Thomas Mangin | |
As little change a possible but the function call The behaviour should be totally unchanged. | |||
2020-04-05 | bfd: T2230: move inlined templates to dedicated files | Christian Poessinger | |
2020-01-09 | bfd: T1949: fix verification logic for IPv6 BFD peers | Benjamin M. Hughes | |
IPv6 BFD peers only require a source address unless link-local addresses are used. | |||
2019-08-14 | [bfd] T1183: Added validations and fixing bugs in BFD: | zsdc | |
* added validations for "source address IP" and "bfd peer IP" * added check for configuring multihop together with an interface name * fixed "show protocols bfd peer X" for peers with custom options | |||
2019-08-09 | [bfd] T1183: Added some new functionality and fixed bugs in BFD: | zsdc | |
* added option "echo-mode" and "echo-interval" for BFD peers * added configuration check for usage "multihop" and "echo-mode" * added configuration check for denying deletion BFD peers, which are used in BGP configuration * fixed deleting/changing BFD peers with custom parameters (for example multihop, local-address, etc.) * deleted wrong skipping of configuration check for "shutdown" BFD peers | |||
2019-06-22 | bfd: T1183: move "multiplier" configuration node to "interval multiplier" | Christian Poessinger | |
2019-06-22 | bfd: T1183: add rx/tx interval configuration | Christian Poessinger | |
vyos@vyos# show protocols bfd { peer 1.1.1.1 { interval { receive 400 transmit 300 } } } | |||
2019-06-22 | bfd: T1183: multihop doesn't accept interface names | Christian Poessinger | |
2019-06-22 | bfd: T1183: add support to configure detection multiplier | Christian Poessinger | |
Configures the detection multiplier to determine packet loss. The remote transmission interval will be multiplied by this value to determine the connection loss detection timer. The default value is 3. Example: when the local system has detect-multiplier 3 and the remote system has transmission interval 300, the local system will detect failures only after 900 milliseconds without receiving packets. | |||
2019-06-22 | bfd: T1183: adjust CLI syntax for source address/interface | Christian Poessinger | |
Place address/interface under new source node. vyis@vyos# show protocols bfd peer 1.1.1.1 { source { address 1.2.3.4 interface eth0.201 } } | |||
2019-06-22 | bfd: T1183: add support for multihop | Christian Poessinger | |
multihop tells the BFD daemon that we should expect packets with TTL less than 254 (because it will take more than one hop) and to listen on the multihop port (4784). When using multi-hop mode echo-mode will not work (see RFC 5883 section 3). | |||
2019-06-22 | bfd: T1183: first working FRR bfd peer configuration | Christian Poessinger | |
2019-06-22 | bfd: T1183: IPv6 peers require explicit local address/interface | Christian Poessinger | |
2019-06-22 | bfd: T1183: initial CLI implementation | Christian Poessinger | |
vyos@vyos# show protocols bfd peer 172.18.202.10 { local-address 172.18.201.10 local-interface eth0.201 shutdown } peer 172.18.202.12 { shutdown } |