Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-07-22 | Merge pull request #2107 from fett0/T4974 | Christian Breunig | |
T4974:add/fixed enable ovpn-dco by default | |||
2023-07-22 | Merge pull request #2104 from c-po/t5377-ospf-gr | Christian Breunig | |
ospf: T5377: add graceful restart FRR feature (RFC 3623) | |||
2023-07-21 | T4974:add/fixed enable ovpn-dco by default | fett0 | |
2023-07-21 | login: T5363: keep home when user is deleted | Christian Breunig | |
Comply with the code comment and not remove the users home directory. This also fixes the issue that user homes get cleaned on system reboot | |||
2023-07-21 | ospf: T5377: add "capability opaque" support | Christian Breunig | |
2023-07-21 | ospf: T5377: add op-mode commands to display GR status | Christian Breunig | |
2023-07-20 | smoketest: remove failfast=True on unittest startup | Christian Breunig | |
2023-07-20 | vscode: identify j2 als Jinja | Christian Breunig | |
2023-07-20 | ospf: T5377: add graceful restart FRR feature (RFC 3623) | Christian Breunig | |
New CLI commands: * set protocols ospf graceful-restart grace-period 300 * set protocols ospf graceful-restart helper planned-only * set protocols ospf graceful-restart helper no-strict-lsa-checking * set protocols ospf graceful-restart helper supported-grace-time 400 * set protocols ospf graceful-restart helper enable router-id 192.0.2.1 * set protocols ospf graceful-restart helper enable router-id 192.0.2.2 * set protocols ospfv3 graceful-restart grace-period 300 * set protocols ospfv3 graceful-restart helper planned-only * set protocols ospfv3 graceful-restart helper lsa-check-disable * set protocols ospfv3 graceful-restart helper supported-grace-time 400 * set protocols ospfv3 graceful-restart helper enable router-id 192.0.2.1 * set protocols ospfv3 graceful-restart helper enable router-id 192.0.2.2 | |||
2023-07-20 | config: T5228: add missing check of args | John Estabrook | |
2023-07-20 | xml: T5345: replace dropped shift, necessary for compatability of args | John Estabrook | |
The fix for T5345 dropped a necessary adjusment in the case of get_first_key=False. | |||
2023-07-20 | Merge pull request #2103 from aapostoliuk/T5328-sagitta | Christian Breunig | |
bgp: T5328: Fixed verifying peer without AFI. | |||
2023-07-20 | vscode: specify additional common settings for languag association and indention | Christian Breunig | |
- add language file association (xml.i, xml.in -> XML) - add Jinja2 indention | |||
2023-07-20 | bgp: T5328: Fixed verifying peer without AFI. | aapostoliuk | |
Fixed verifying peer without AFI, if the peer is interface. | |||
2023-07-20 | Merge pull request #2102 from sever-sever/T5373 | Christian Breunig | |
T5373: LLDP is running even with disable option bug | |||
2023-07-20 | T5373: LLDP is running even with disable option bug | Viacheslav Hletenko | |
Fix template do not add interfaces with 'disable' option to the lldp.conf | |||
2023-07-19 | Merge pull request #2099 from aapostoliuk/T5362-sagitta | Christian Breunig | |
high-availability: T5362: Fixed setting vrrp version | |||
2023-07-19 | high-availability: T5362: Fixed setting vrrp version | aapostoliuk | |
Fixed setting vrrp version | |||
2023-07-19 | Merge pull request #2095 from srividya0208/T5361 | Christian Breunig | |
T5361:op_cmd monitor log vrrp: doesn't show last lines | |||
2023-07-19 | Merge pull request #2096 from nicolas-fort/T4497 | Christian Breunig | |
T4497: ping: andd option to force ipv4 or ipv6 (-4 | -6) | |||
2023-07-18 | syslog: T2778: add missing argument for rsyslog.conf template | John Estabrook | |
2023-07-18 | T4497: ping: andd option to force ipv4 or ipv6 (-4 | -6) | Nicolas Fort | |
2023-07-18 | T5361:op_cmd monitor log vrrp: doesn't show last lines | srividya0208 | |
2023-07-17 | syslog: T2778: fix dict index | John Estabrook | |
2023-07-16 | syslog: T2778: fix invalid handling of logrotate and default values | Christian Breunig | |
There was no /var/log/messages handler for logrotate making rsyslog crash after a few days. In addition we had some JIna2 templating errors for hosts, user and file CLI nodes jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'facility' Looks like therey are used rarely ;) - lucky me! | |||
2023-07-16 | T5195: fix remaining references to decommissioned vyos.util | Christian Breunig | |
2023-07-15 | T5195: remove empty vyos.util | John Estabrook | |
2023-07-15 | T5195: remove obsoleted mangle_dict_keys | John Estabrook | |
2023-07-15 | T5195: add/fix missing imports | John Estabrook | |
2023-07-15 | T5195: move individual helper functions to vyos.utils module | Christian Breunig | |
* FixedDict can be found in vyos.utils.dict.FixedDict * Move vyos.authutils to vyos.utils.auth | |||
2023-07-15 | T5195: vyos.util -> vyos.utils package refactoring part #2 | Christian Breunig | |
2023-07-15 | Merge pull request #2091 from jvoss/policy_bgp_communities | Christian Breunig | |
policy: T5357: only delete migrated BGP community rules | |||
2023-07-15 | Debian: T4974: add openvpn-dco dependency | Christian Breunig | |
2023-07-15 | T5195: add missing "import os" for vyos.utils.process | Christian Breunig | |
2023-07-14 | T5195: vyos.util -> vyos.utils package refactoring (#2093) | Christian Breunig | |
* T5195: move run, cmd, call, rc_cmd helper to vyos.utils.process * T5195: use read_file and write_file implementation from vyos.utils.file Changed code automatically using: find . -type f -not -path '*/\.*' -exec sed -i 's/^from vyos.util import read_file$/from vyos.utils.file import read_file/g' {} + find . -type f -not -path '*/\.*' -exec sed -i 's/^from vyos.util import write_file$/from vyos.utils.file import write_file/g' {} + * T5195: move chmod* helpers to vyos.utils.permission * T5195: use colon_separated_to_dict from vyos.utils.dict * T5195: move is_systemd_service_* to vyos.utils.process * T5195: fix boot issues with missing imports * T5195: move dict_search_* helpers to vyos.utils.dict * T5195: move network helpers to vyos.utils.network * T5195: move commit_* helpers to vyos.utils.commit * T5195: move user I/O helpers to vyos.utils.io | |||
2023-07-14 | Merge pull request #2089 from nicolas-fort/T5059 | Christian Breunig | |
T5059: relay: add disable options for dhcp-relay and dhcpv6-relay | |||
2023-07-14 | Merge pull request #2090 from srividya0208/T5355 | Christian Breunig | |
T5355:IPSec:op cmd:"sh vpn ike status" not working | |||
2023-07-14 | Merge pull request #2092 from darinkuo/current | Christian Breunig | |
dhclient: T5358: Use return in 99-ipsec-dhclient-hook | |||
2023-07-14 | dhclient: T5358: Use return in 99-ipsec-dhclient-hook | Darin Kuo | |
Use return instead of exit in 99-dhclient-exit-hook to allow subsequent unnumbered hooks to run (like rfc3442-classless-routes). Hooks are sourced, not executed. | |||
2023-07-14 | bgp: T5338: bugfix MPLS VRF error handling | Christian Breunig | |
Commit 6e621e42f ("bgp: T5338: simplify XML and code handling") hat a wrong if branch when handling the check if an interface belongs to the proper VRF when MPLS forwarding is used. This has been fixed. | |||
2023-07-13 | policy: T5357: only delete migrated BGP community rules | Jonathan Voss | |
2023-07-13 | T5355:IPSec:op cmd:"sh vpn ike status" not working | srividya0208 | |
2023-07-13 | T5059: relay: add disable options for dhcp-relay and dhcpv6-relay. Also add ↵ | Nicolas Fort | |
validor for dhcpv6-relay which was missing. | |||
2023-07-12 | T5195: drop sysctl_* implementation from vyos.util - prefer vyos.utils.system | Christian Breunig | |
2023-07-12 | T5195: move boot_* helpers to vyos.utils.boot | Christian Breunig | |
2023-07-12 | bgp: T5338: simplify XML and code handling | Christian Breunig | |
2023-07-12 | bgp: T2387: re-use XML building blocks to simplify CLI definition | Christian Breunig | |
2023-07-12 | Merge pull request #2079 from jestabro/from-defaults | Daniil Baturin | |
config: T5330: add boolean check for additions by default in config dict | |||
2023-07-12 | Merge pull request #2085 from aapostoliuk/T5338-sagitta | Christian Breunig | |
bgp: T5338: Added 'protocols bgp interface <int> mpls forwarding' feature | |||
2023-07-12 | debian: T5003: add power management userspace tools | Christian Breunig | |