1
0
mirror of https://github.com/CumulusNetworks/ifupdown2.git synced 2024-05-06 15:54:50 +00:00

206 lines
8.8 KiB
Plaintext
Raw Normal View History

ifupdown2 (1.2.1) UNRELEASED; urgency=medium
* Fix: Link down does not work on any intf configured in a VRF
* Add: warning when bridge attribute are used on non br[port] intf
* Add: point-to-point protocol (ppp) addon to create/configure ppp interfaces
* Add: tunnel support (gretap, ipip, sit, vti, ip6gre, ipip6, ip6ip6, vti6)
* Add: 0/1/on/off/yes/no support to ip[6]-forward attribute
* Add: address module_globals policy l3_intf_arp_accept to control ARP_ACCEPT
* addressvirtual module_globals "addressvirtual_with_route_metric" policy
* Closes: ethtool: link-fec: local variable 'fec_attrs'
referencede before assignment
-- Julien Fortin <julien@cumulusnetworks.com> Fri, 31 Aug 2018 23:42:42 +0200
ifupdown2 (1.2.0) UNRELEASED; urgency=medium
* Package architecture refactoring and cleanups
* Package can be build/install as debian, pip or rpm package
* Makefile to easily perform tasks (i.e.: install, build, test, upload..)
* VRF slaves: add support for link-down yes
* addressvirtual: macvlan: add default metric to ip4 and ip6
* Closes #48: Run up/down on "manual" interfaces, but ignore any errors.
bridge: vlan-aware: add new boolean policy "vlan_aware_bridge_address_support" closes #58 In linux its possible to assign a vlan-aware bridge an ip address For some use cases is it useful to restrict users from configuring ips on bridges VA. This patch will let admins and distributions decide if it is necessary to warn the user in such case. The patch introduces a new 'address' policy: vlan_aware_bridge_address_support: yes|no|on|off|0|1 (default to yes) [16:46:09] root:~ # cat /var/lib/ifupdown2/policy.d/address.json { "address": { "module_globals": { "enable_l3_iface_forwarding_checks": "yes" }, "defaults": { "mtu": "1500", "ip-forward": "on", "ip6-forward": "on" } } } [16:46:16] root:~ # ifquery -a auto lo iface lo inet loopback auto eth0 iface eth0 inet dhcp auto bridge iface bridge bridge-ports swp1 bridge-vlan-aware yes address 10.10.10.10/32 [16:46:20] root:~ # ifup -a --syntax-check [16:46:22] root:~ # echo $? 0 [16:46:33] root:~ # nano /var/lib/ifupdown2/policy.d/address.json [16:46:47] root:~ # cat /var/lib/ifupdown2/policy.d/address.json { "address": { "module_globals": { "enable_l3_iface_forwarding_checks": "yes", "vlan_aware_bridge_address_support": "no" }, "defaults": { "mtu": "1500", "ip-forward": "on", "ip6-forward": "on" } } } [16:46:48] root:~ # ifup -a --syntax-check warning: bridge: ignoring ip address. Assigning an IP address is not allowed on bridge vlan aware interfaces [16:46:51] root:~ # echo $? 1 [16:46:52] root:~ # Reviewed-by: Roopa Prabhu <roopa@cumulusnetworks.com> Signed-off-by: Julien Fortin <julien@cumulusnetworks.com>
2018-06-18 18:44:32 +02:00
* Closes #58: address addon "vlan_aware_bridge_address_support" policy
* Traditional bridge support for mstpctl attr: (portautoedge, portrestrrole)
* Configuration for IPv6 link-local auto-generate mode, new attributes:
ipv6-addrgen (address addon)
address-virtual-ipv6-addrgen (addressvirtual addon)
-- Julien Fortin <julien@cumulusnetworks.com> Mon, 25 Jun 2018 23:42:42 +0200
ifupdown2 (1.1.18) RELEASED; urgency=medium
* Fix: Link down does not work on SVI configured in a VRF
* Fix: ifreload causes MTU to drop on bridge SVIs
* Fix: addons: addressvirtual: check if SVI name is first in routing table
* Fix: ifreload error on deleting bond slaves from an already configured bond
* Fix: ifupdown2 error is confusing when netmask is specified for vxlan-local-tunnelip
* Fix: ifupdown2 syntax check needed for vxlan interfaces
* Fix: vxlan-ageing default timer doesn't align with bridge-ageing
* Fix: Error with "ifreload -a -n" when MGMT VRF is not Applied
* Fix: using reserved VLAN range reports error but ifreload returns 0
* Fix: unable to set bridge-portmcrouter to "2"
* Fix: vxlan syntax-check warn on missing vxlan-local-tunnelip
* Fix: traditional bridge svi breaks when extra bridge added
* Fix: github #39: addons: vrf: fix vrf slave link kind
* New. Enabled: addons: vxlan: add support for vxlan-port attribute
-- Julien Fortin <julien@cumulusnetworks.com> Thu, 12 Apr 2018 11:10:04 +0200
ifupdown2 (1.1.17) RELEASED; urgency=medium
* Fix: ip[6]-forward attributes not set at boot
-- Julien Fortin <julien@cumulusnetworks.com> Thu, 08 Feb 2018 09:48:37 +0100
ifupdown2 (1.1.16) RELEASED; urgency=medium
* Fix: python exception on macvlans address dump
* Fix: eth0 doesn't acquire DHCP address when mgmt VRF is enabled
-- Julien Fortin <julien@cumulusnetworks.com> Tue, 09 Jan 2018 02:02:58 +0100
ifupdown2 (1.1.15) RELEASED; urgency=medium
* New. Enabled: bridge: add support for bridge-l2protocol-tunnel
* New. Enabled: bridge attributes, when removed reset to default
* New. Enabled: vxlan attributes, when removed reset to default
* New. Enabled: improve handling of optional resources (if missing bridge-utils/ethtool)
* Fix: policy "iface_defaults" not supported for MTU
* Fix: address module: handling of ipv4 & ipv6 (add/remove)
* Fix: warning for vlan reserved range
* Fix: MTU handling on bridge SVIs
-- Julien Fortin <julien@cumulusnetworks.com> Wed, 22 Nov 2017 19:07:43 +0100
ifupdown2 (1.1.14) RELEASED; urgency=medium
* New. Enabled: default policy for bridge MAC address
* Fix: ethtool: don't set link speed and duplex if autoneg is on
-- Julien Fortin <julien@cumulusnetworks.com> Wed, 25 Oct 2017 23:12:27 +0200
ifupdown2 (1.1.13) RELEASED; urgency=medium
* Fix: VRF: ssh session not killed on ifreload
-- Julien Fortin <julien@cumulusnetworks.com> Fri, 15 Sep 2017 22:43:12 +0200
ifupdown2 (1.1.12) RELEASED; urgency=medium
* New. Enabled: mpls-enable attribute
* New. Enabled: bond and bridge module moved to netlink configuration
* New. Enabled: handle a mix of auto and specified vrf table ids
* Fix: igmp attribute reset to defaults when removed from config
-- Julien Fortin <julien@cumulusnetworks.com> Mon, 07 Aug 2017 22:14:03 +0200
ifupdown2 (1.1.11) RELEASED; urgency=medium
* Fix: link-down attribute not applied on slave ports
* Fix: bug that prevented config of mtu below 1280
-- Julien Fortin <julien@cumulusnetworks.com> Thu, 18 May 2017 12:45:21 -0700
ifupdown2 (1.1.10) RELEASED; urgency=medium
* New. Enabled: drop the dependency to pkg_resources, hardcode version number (closes: #855401)
* New. Enabled: adjust allow-hotplug behavior to ifupdown (closes: #855598)
* New. Enabled: bond-lacp-rate support slow/fast argument
* New. Enabled: ifquery --syntax-help: add support for json output
* New. Enabled: vlan: add new attribute 'vlan-protocol'
* New. Enabled: address: add new attribute 'ip6-forward'
* New. Enabled: bridge: add new attribute 'bridge-mcstats'
* New. Enabled: bridge: add new attribute 'bridge-vlan-stats'
* New. Enabled: bridge: add new attribute 'bridge-vlan-protocol'
* New. Enabled: bridge: add new attribute 'bridge-arp-nd-suppress'
* Fix: bond: add attribute bond-(up|down)delay
* Fix: bridge-vids: --syntax-check accepts legacy syntax
-- Julien Fortin <julien@cumulusnetworks.com> Mon, 17 Apr 2017 06:18:04 +0200
ifupdown2 (1.1.9) RELEASED; urgency=medium
* New. Enabled: support for bridge-learning attribute
-- Julien Fortin <julien@cumulusnetworks.com> Mon, 06 Feb 2017 13:22:51 -0800
ifupdown2 (1.1.8) RELEASED; urgency=medium
* New. Enabled: update link-speed values: add 25G and 50G
* New. Enabled: new 'link-down' [yes|no] attribute to keep link down
-- Julien Fortin <julien@cumulusnetworks.com> Tue, 17 Jan 2017 08:39:29 +0100
ifupdown2 (1.1.7) RELEASED; urgency=medium
* New. Enabled: fix for inet and inet6 dhcp on the same interface
* New. Enabled: syntax check to warn on common configuration mistakes
* New. Enabled: addons: bridge: disable ip fwding on a bridge with no ip
and no upperifaces
* Fix: fixes for MTU handling
* Fix: dhcpv6 fails if interface doesn't have link-local addr
-- Julien Fortin <julien@cumulusnetworks.com> Wed, 07 Dec 2016 05:48:45 +0100
ifupdown2 (1.1.6) RELEASED; urgency=medium
* Closes: github #14. add environment variables passed to user scripts
* New. Enabled: addons may provide a list of ifupdown scripts to ignore
-- Julien Fortin <julien@cumulusnetworks.com> Mon, 19 Sep 2016 16:37:36 -0700
ifupdown2 (1.1.5) RELEASED; urgency=medium
* Fix: handling of EXISTS errors on address add
* Fix: handling of mtu on addressvirtual macvlan devices
* Fix: mako namespace handling
-- Julien Fortin <julien@cumulusnetworks.com> Fri, 16 Sep 2016 12:48:04 -0700
ifupdown2 (1.1.4) RELEASED; urgency=medium
* Performance improvements
* New. Enabled: sbin: start-networking: support hotplug class from init script
* New. Enabled: support for classical numerical bond modes
* New. Enabled: extend ifquery support for mstpctl addons
* New. Enabled: each addon may perform semantic and syntax checks by
implementing a custom method
* Fix: Support for address-virtual lines under a vrf slave
* Fix: Defaults for link attributes were not applied
* Fix: Disable IPv6 duplicate address detection on VRR interfaces
* Fix: ifquery to extract vlan-id from iface if not preset
* Fix: ifquery -c bridge pvid error on a valid config
-- Julien Fortin <julien@cumulusnetworks.com> Fri, 29 Jul 2016 08:55:50 -0700
ifupdown2 (1.1.3) RELEASED; urgency=medium
* Fix: Interface configuration parsing error when keyword vlan
is the interface name.
-- Julien Fortin <julien@cumulusnetworks.com> Sun, 05 Jun 2016 08:55:50 -0700
ifupdown2 (1.1.2) RELEASED; urgency=medium
2016-04-19 14:37:39 -07:00
* Fix: checks for invalid address-virtual attributes
* New. Deprecated: `mstpctl-stp` attribute
* New. Deprecated: lacp parameters: bond-ad-sys-priority, bond-ad-sys-mac-addr
* New. Enabled: addon module for configuring vrf
* New. Enabled: bridge: display warning when (in vlan unware bridge)
an untagged bridge is not configured
* New. Enabled: adjusting MTU for vlan devices depending on lower device mtu
* New. Enabled: introduce checks for reserved vrf table names
* New. Enabled: ifquery: new option '--with-defaults' to include default
attributes
* New. Enabled: bridge: disabling ipv6 on bridge if any VXLAN port
* New. Enabled: vrf awareness in dhcp addon module
2016-04-19 14:37:39 -07:00
-- Julien Fortin <julien@cumulusnetworks.com> Tue, 3 May 2016 14:42:42 -0700
2016-04-19 14:37:39 -07:00
ifupdown2 (1.1.0) unstable; urgency=low
* Initial release.
-- Roopa Prabhu <roopa@cumulusnetworks.com> Thu, 20 Aug 2015 06:14:24 -0700