mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-06 10:40:32 -07:00
[PR #6104/2dee3464 backport][stable-5] nmcli: fixed inability to change mtu on vlan connection (#6139)
nmcli: fixed inability to change mtu on vlan connection (#6104)
* tests updated
Co-authored-by: Sam Potekhin <heaveaxy@gmail.com>
(cherry picked from commit 2dee3464dd
)
Co-authored-by: Sam Potekhin <24751685+heaveaxy@users.noreply.github.com>
This commit is contained in:
parent
f2d980f75a
commit
6d03887c55
3 changed files with 4 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- nmcli - implemented changing mtu value on vlan interfaces (https://github.com/ansible-collections/community.general/issues/4387).
|
|
@ -1765,6 +1765,7 @@ class Nmcli(object):
|
||||||
'dummy',
|
'dummy',
|
||||||
'ethernet',
|
'ethernet',
|
||||||
'team-slave',
|
'team-slave',
|
||||||
|
'vlan',
|
||||||
)
|
)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
|
@ -663,6 +663,7 @@ ipv6.method: auto
|
||||||
ipv6.ignore-auto-dns: no
|
ipv6.ignore-auto-dns: no
|
||||||
ipv6.ignore-auto-routes: no
|
ipv6.ignore-auto-routes: no
|
||||||
vlan.id: 10
|
vlan.id: 10
|
||||||
|
802-3-ethernet.mtu: auto
|
||||||
"""
|
"""
|
||||||
|
|
||||||
TESTCASE_VXLAN = [
|
TESTCASE_VXLAN = [
|
||||||
|
|
Loading…
Add table
Reference in a new issue