Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-03-08 | T1277: [dhcp-server] bugfix 'show dhcp server leases' | Christian Poessinger | |
The script did not check if the service was actually configured or not. This caused a FileNotFoundError for unconfigured services. vyos@vyos:~$ show dhcp server leases Traceback (most recent call last): File "/usr/libexec/vyos/op_mode/show_dhcp.py", line 123, in <module> leases = get_leases(lease_file, state='active') File "/usr/libexec/vyos/op_mode/show_dhcp.py", line 60, in get_leases leases = IscDhcpLeases(lease_file).get() File "/usr/lib/python3/dist-packages/isc_dhcp_leases/iscdhcpleases.py", line 110, in get with open(self.filename) as lease_file: FileNotFoundError: [Errno 2] No such file or directory: '/config/dhcpd.leases' | |||
2019-03-08 | T1277: [dhcpv6-server] bugfix 'show dhcpv6 server leases' | Christian Poessinger | |
The script did not check if the service was actually configured or not. This caused a FileNotFoundError for unconfigured services. vyos@vyos:~$ show dhcpv6 server leases Traceback (most recent call last): File "/usr/libexec/vyos/op_mode/show_dhcpv6.py", line 77, in <module> leases = get_leases(lease_file, state='active') File "/usr/libexec/vyos/op_mode/show_dhcpv6.py", line 46, in get_leases leases = IscDhcpLeases(lease_file).get() File "/usr/lib/python3/dist-packages/isc_dhcp_leases/iscdhcpleases.py", line 110, in get with open(self.filename) as lease_file: FileNotFoundError: [Errno 2] No such file or directory: '/config/dhcpdv6.leases' | |||
2019-02-21 | [IPsec] T1260: VICI-based implementation of "show vpn ipsec sa" | Daniil Baturin | |
2019-02-21 | T1256: Execute "show ipsec vpn ipsec sa" returns incorrect results | Daniel Pro | |
Not sure it's a normal case scenario, the one highlighted in T1256. To managed it I changed the "if" logic. | |||
2019-02-19 | fixes: T1254 - generate wireguard keypair fails when executed on the iso | hagbard | |
- keypair can now be generated and used from the running iso to create wg tunnels on the fly | |||
2019-01-12 | Correct the command suggestion in the "show vpn ipsec sa" script | Daniil Baturin | |
in case when no active SAs are found. | |||
2019-01-12 | T1175: add support for DMVPN connections to the "show vpn ipsec sa" script. | Daniil Baturin | |
2019-01-08 | Merge pull request #63 from daniel-pro/T1077 | hagbard-01 | |
T1077: Update show_ipsec_sa.py | |||
2019-01-06 | T1159: correct handling of SAs without PFS in "show vpn ipsec sa". | Daniil Baturin | |
2019-01-01 | T1119: 'show vpn ipsec sa' shows tunnel twice in 1.2.0-RC11 | Daniel | |
Removed duplicates from "connections" list. | |||
2018-12-31 | T1108: warn the user and exit if there are no established IPsec SAs. | Daniil Baturin | |
2018-12-18 | Update show_ipsec_sa.py | Daniel | |
2018-12-16 | Update show_ipsec_sa.py | daniel-pro | |
2018-12-03 | T956: display SA traffic counters in human-redable units. | Daniil Baturin | |
2018-12-03 | T956: correct IKE proposal string parsing for SAs with non-zero counters. | Daniil Baturin | |
2018-11-18 | Merge branch 'current' of https://github.com/vyos/vyos-1x into current | Daniil Baturin | |
2018-11-18 | T956: add a new script for displaying IPsec SAs. | Daniil Baturin | |
2018-11-17 | Rename show-igmpproxy.py -> show_igmpproxy.py | Christian Poessinger | |
2018-11-17 | T1016: fix IPv4/IPv6 dhcp relay restart command | Christian Poessinger | |
Current implementation referred to a no longer existing Perl script to restart the IPv4 and IPv6 instance of dhcrelay. > restart dhcp relay-agent > restart dhcpv6 relay-agent | |||
2018-11-04 | T959: XML/Python rewrite of "protocol igmp-proxy" and op-mode commands | Christian Poessinger | |
Examples: ========= CFG commands: vyos@vyos# set protocols igmp-proxy disable-quickleave vyos@vyos# set protocols igmp-proxy interface eth0 alt-subnet '172.16.35.0/24' vyos@vyos# set protocols igmp-proxy interface eth0 alt-subnet '172.31.0.0/24' vyos@vyos# set protocols igmp-proxy interface eth0 role 'upstream' vyos@vyos# set protocols igmp-proxy interface eth1 role 'downstream' vyos@vyos# show protocols igmp-proxy { disable-quickleave interface eth0 { alt-subnet 172.16.35.0/24 alt-subnet 172.31.0.0/24 role upstream } interface eth1 { role downstream } } OP mode commands: ----------------- vyos@vyos:~$ show ip multicast interface Interface BytesIn PktsIn BytesOut PktsOut Local eth0 0.0b 0 0.0b 0 xxx.xxx.xxx.65 eth1 0.0b 0 0.0b 0 xxx.xxx.xx.201 vyos@vyos:~$ show ip multicast mfc Group Origin Pkts Bytes Wrong In Out xxx.x.xx.1 xxx.xx.0.1 10 9.81KB 0 eth0 eth1 xxx.x.xx.2 xxx.xx.0.1 -- | |||
2018-11-04 | Add missing VyOS copyright notices | Christian Poessinger | |
2018-10-29 | T240: system integrity check | hagbard | |
2018-10-13 | Update show_dhcp.py | Ewald van Geffen | |
I don't really do python, please check/test. | |||
2018-10-10 | Merge pull request #52 from hagbard-01/current | hagbard-01 | |
T870: Commit-confirm restarts the server even after commit | |||
2018-10-10 | T870: Commit-confirm restarts the server even after commit | hagbard | |
- adding removal of the at job and /var/run/confirm.job - indent fixed | |||
2018-10-09 | T883: handle keyboard interrupts in the wireguard keypair command. | Daniil Baturin | |
2018-09-04 | T823: extend the new DHCP op mode. | Daniil Baturin | |
2018-09-02 | Merge remote-tracking branch 'upstream/current' into T793 | hagbard | |
2018-09-02 | T823: add a new DHCP op mode script, only capable of showing leases now. | Daniil Baturin | |
2018-08-31 | T793: preshared key op-mode parts | hagbard | |
2018-08-28 | T793: changed op-mode script from wireguard_key.py to wireguard.py | hagbard | |
2018-08-27 | T793: wiregurard preshared-key op-mode script and interface implementation | hagbard | |
2018-08-27 | T793: generate and show psk implemented in python script | hagbard | |
2018-08-20 | Merge pull request #36 from runborg/test | Christian Poessinger | |
T689: Reboot/Poweroff now not working after last changes | |||
2018-08-19 | T689: Reboot/Poweroff now not working after last changes | Runar Borge | |
2018-08-18 | T784: Added update dns dynamic operation | Dmytro Aleksandrov | |
2018-08-17 | Merge pull request #29 from runborg/current | Christian Poessinger | |
T689: Rewritten poweroff/reboot script to use systemd-shutdownd service | |||
2018-08-17 | T689: Added support for specifying date on poweroff and reboot | Runar Borge | |
2018-08-16 | T689: Rewritten poweroff/reboot script to use systemd-shutdownd service | Runar Borge | |
2018-08-11 | T427: wireguard support | hagbard | |
- 'generate wireguard keypair' added - 'show wireguard [pubkey|privkey]' added | |||
2018-08-10 | T666, T616: exit from op mode script if VRRP information is not available. | Daniil Baturin | |
2018-07-29 | T758: add 'show dns dynamic status' op mode command | Christian Poessinger | |
2018-07-27 | T666, T616: new implementation of the VRRP CLI. | Daniil Baturin | |
2018-07-21 | Merge pull request #17 from runborg/current | Daniil Baturin | |
T689: updated show host xml and fixed op_mode script names from last PR. | |||
2018-07-05 | T734: use existsEffective instead of exists in DNS forwarding restart script ↵ | Daniil Baturin | |
to make it work from op mode. | |||
2018-06-30 | op_mode: cpu_summary: fix bug (no war string) reported by sonarcube | Christian Poessinger | |
2018-06-23 | T689: changed from dash to underscore in filenames | Runar Borge | |
2018-06-14 | Merge branch 'snmp-op-mode' into current | Christian Poessinger | |
* snmp-op-mode: T683: Initial version for SNMP op mode command definition in XML | |||
2018-06-14 | T683: Initial version for SNMP op mode command definition in XML | Christian Poessinger | |
2018-06-13 | T689 followup: move the Maya date script to vyos-1x. | Daniil Baturin | |