diff options
author | Dimitri John Ledkov <xnox@ubuntu.com> | 2017-05-13 01:45:23 +0100 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2017-05-25 15:10:33 -0400 |
commit | 910ed46124e992eb20e49ea156b7127cd3ebbe9d (patch) | |
tree | 855f2db02f971028e1af1d8db366fd5063177219 /tests | |
parent | e5b2c011440aefe036c71a8c5e8ec547cc80f270 (diff) | |
download | vyos-cloud-init-910ed46124e992eb20e49ea156b7127cd3ebbe9d.tar.gz vyos-cloud-init-910ed46124e992eb20e49ea156b7127cd3ebbe9d.zip |
nplan: For bonds, allow dashed or underscore names of keys.
As some of the bond paramemters are passed in as dashed, or
underscored, depending on the input source.
Also correct transmit-hash-policy netplan target key.
LP: #1690480
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unittests/test_net.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py index 7104d00e..5169821a 100644 --- a/tests/unittests/test_net.py +++ b/tests/unittests/test_net.py @@ -483,11 +483,15 @@ auto eth1 iface eth1 inet manual bond-master bond0 bond-mode active-backup + bond-xmit-hash-policy layer3+4 + bond_miimon 100 auto eth2 iface eth2 inet manual bond-master bond0 bond-mode active-backup + bond-xmit-hash-policy layer3+4 + bond_miimon 100 iface eth3 inet manual @@ -500,6 +504,8 @@ auto bond0 iface bond0 inet6 dhcp bond-mode active-backup bond-slaves none + bond-xmit-hash-policy layer3+4 + bond_miimon 100 hwaddress aa:bb:cc:dd:ee:ff auto br0 @@ -625,7 +631,9 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true - eth1 - eth2 parameters: + mii-monitor-interval: 100 mode: active-backup + transmit-hash-policy: layer3+4 bridges: br0: addresses: @@ -716,6 +724,8 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true - eth2 params: bond-mode: active-backup + bond_miimon: 100 + bond-xmit-hash-policy: "layer3+4" subnets: - type: dhcp6 # A Bond VLAN. |