Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-04-16 | dhcp(v6)-relay: T4353: fix Jinja2 linting errors | Christian Poessinger | |
2020-12-06 | dhcpv6-relay: T3095: is_ipv6_link_local() now supports a prefix length | Christian Poessinger | |
2020-11-29 | dhcpv6-relay: T3095: improve verify() | Christian Poessinger | |
- Upstream interfaces require a DHCPv6 server to be configured - Listen interface must have a a global unicast address assigned, else ISC dhcrelay won't start. | |||
2020-11-29 | dhcpv6-relay: T3095: migrate service to get_config_dict() | Christian Poessinger | |
2020-11-29 | smoketest: dhcpv6-relay: T3095: initial tests | Christian Poessinger | |
2020-08-31 | configd: T2582: add scripts to include list for daemon | John Estabrook | |
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-04-27 | template: T2388: move mkdir/chmod/chown within render() | Thomas Mangin | |
2020-04-13 | dhcpv6-relay: T2185: fix wrong call to os library | Christian Poessinger | |
Commit 5892d51 ("dhcpv6-relay: T2185: migrate from SysVinit to systemd") accidently called the non existent function os.file.exists instead of os.path.exists. | |||
2020-04-13 | dhcpv6-relay: T2185: migrate from SysVinit to systemd | 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-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 | dhcpv6-relay: T2230: move inlined templates to dedicated files | Christian Poessinger | |
2019-07-25 | T1541 Fix: adding additional check | Eshenko Dmitriy | |
2019-04-06 | [dhcpv6-relay] T1322: bugfix on multiple listen interfaces | Christian Poessinger | |
Same cause as with commit c6988bb4110541478dad74d0b892fd4643ed530a | |||
2019-04-03 | [dhcpv6-relay] T1322: support multiple upstream servers | Christian Poessinger | |
Add support for relaying a DHCPv6 packet to multiple servers on one upstream interface. | |||
2019-04-03 | [dhcpv6-relay] T1322: bugfix on multiple upstream interfaces | Christian Poessinger | |
When generation the configuration for multiple upstream interfaces a whitespace was missing in the generated configuration: OPTIONS="-6 -l 2001:db8::ffff%eth1 -u 2001:db8:1:ffff%eth2-u 2001:db8:2:ffff%eth3" ^--- This caused an error when starting up the DHCPv6 relay service | |||
2018-11-02 | T939: Remove possibility to specify DHCP relay port | Christian Poessinger | |
2018-10-25 | T938: do not bind DHCP relay to default port if unspecified | Christian Poessinger | |
Binding isc-dhcp-relay to its default port (67 e.g. for IPv4) will result in an error when starting up the service: bad: ---- $ dhcrelay -q -4 -p 67 -c 10 -A 576 -m discard -i eth0.21 -i eth0 10.253.253.1 binding to user-specified port 67 good: ----- $ dhcrelay -q -4 -c 10 -A 576 -m discard -i eth0.21 -i eth0 10.253.253.1 Setting removed from the IPv6 implementation, too! | |||
2018-10-19 | dhcpv6-relay: added missing verify() step for listen and upstream interfaces | Christian Poessinger | |
2018-10-17 | T913: DHCP relay service XML/Python rewrite for IPv6 | Christian Poessinger | |