mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
* [nmcli] add new network configuration options
* [nmcli_add_options] add documentation for new parameters nad add disabled method for IPv6
* [nmcli] fix and version adding. Add changelog fragment
* Update plugins/modules/net_tools/nmcli.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update changelogs/fragments/2732-nmcli_add_options.yml
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update changelogs/fragments/2732-nmcli_add_options.yml
Co-authored-by: Felix Fontein <felix@fontein.de>
* [nmcli_add_options] fix testing
* Update plugins/modules/net_tools/nmcli.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update plugins/modules/net_tools/nmcli.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update changelogs/fragments/2732-nmcli_add_options.yml
Co-authored-by: Amin Vakil <info@aminvakil.com>
* Update plugins/modules/net_tools/nmcli.py
Co-authored-by: Amin Vakil <info@aminvakil.com>
* Update plugins/modules/net_tools/nmcli.py
Co-authored-by: Amin Vakil <info@aminvakil.com>
* Update plugins/modules/net_tools/nmcli.py
Co-authored-by: Amin Vakil <info@aminvakil.com>
Co-authored-by: Oriol MULA VALLS <oriol.mula@lxp.lu>
Co-authored-by: Felix Fontein <felix@fontein.de>
Co-authored-by: Amin Vakil <info@aminvakil.com>
(cherry picked from commit 67cabcb2aa
)
Co-authored-by: omula <joriol.mula@gmail.com>
This commit is contained in:
parent
0296c200c7
commit
830734d6cf
3 changed files with 32 additions and 2 deletions
3
changelogs/fragments/2732-nmcli_add_options.yml
Normal file
3
changelogs/fragments/2732-nmcli_add_options.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
minor_changes:
|
||||||
|
- nmcli - add ``routing_rules4`` and ``may_fail4`` options (https://github.com/ansible-collections/community.general/issues/2730).
|
||||||
|
- nmcli - add ``disabled`` value to ``method6`` option (https://github.com/ansible-collections/community.general/issues/2730).
|
|
@ -95,6 +95,11 @@ options:
|
||||||
- Set metric level of ipv4 routes configured on interface.
|
- Set metric level of ipv4 routes configured on interface.
|
||||||
type: int
|
type: int
|
||||||
version_added: 2.0.0
|
version_added: 2.0.0
|
||||||
|
routing_rules4:
|
||||||
|
description:
|
||||||
|
- Is the same as in an C(ip route add) command, except always requires specifying a priority.
|
||||||
|
type: str
|
||||||
|
version_added: 3.3.0
|
||||||
never_default4:
|
never_default4:
|
||||||
description:
|
description:
|
||||||
- Set as default route.
|
- Set as default route.
|
||||||
|
@ -126,6 +131,12 @@ options:
|
||||||
type: str
|
type: str
|
||||||
choices: [auto, link-local, manual, shared, disabled]
|
choices: [auto, link-local, manual, shared, disabled]
|
||||||
version_added: 2.2.0
|
version_added: 2.2.0
|
||||||
|
may_fail4:
|
||||||
|
description:
|
||||||
|
- If you need I(ip4) configured before C(network-online.target) is reached, set this option to C(false).
|
||||||
|
type: bool
|
||||||
|
default: true
|
||||||
|
version_added: 3.3.0
|
||||||
ip6:
|
ip6:
|
||||||
description:
|
description:
|
||||||
- The IPv6 address to this interface.
|
- The IPv6 address to this interface.
|
||||||
|
@ -164,8 +175,9 @@ options:
|
||||||
description:
|
description:
|
||||||
- Configuration method to be used for IPv6
|
- Configuration method to be used for IPv6
|
||||||
- If I(ip6) is set, C(ipv6.method) is automatically set to C(manual) and this parameter is not needed.
|
- If I(ip6) is set, C(ipv6.method) is automatically set to C(manual) and this parameter is not needed.
|
||||||
|
- C(disabled) was added in community.general 3.3.0.
|
||||||
type: str
|
type: str
|
||||||
choices: [ignore, auto, dhcp, link-local, manual, shared]
|
choices: [ignore, auto, dhcp, link-local, manual, shared, disabled]
|
||||||
version_added: 2.2.0
|
version_added: 2.2.0
|
||||||
mtu:
|
mtu:
|
||||||
description:
|
description:
|
||||||
|
@ -675,11 +687,13 @@ class Nmcli(object):
|
||||||
self.gw4_ignore_auto = module.params['gw4_ignore_auto']
|
self.gw4_ignore_auto = module.params['gw4_ignore_auto']
|
||||||
self.routes4 = module.params['routes4']
|
self.routes4 = module.params['routes4']
|
||||||
self.route_metric4 = module.params['route_metric4']
|
self.route_metric4 = module.params['route_metric4']
|
||||||
|
self.routing_rules4 = module.params['routing_rules4']
|
||||||
self.never_default4 = module.params['never_default4']
|
self.never_default4 = module.params['never_default4']
|
||||||
self.dns4 = module.params['dns4']
|
self.dns4 = module.params['dns4']
|
||||||
self.dns4_search = module.params['dns4_search']
|
self.dns4_search = module.params['dns4_search']
|
||||||
self.dns4_ignore_auto = module.params['dns4_ignore_auto']
|
self.dns4_ignore_auto = module.params['dns4_ignore_auto']
|
||||||
self.method4 = module.params['method4']
|
self.method4 = module.params['method4']
|
||||||
|
self.may_fail4 = module.params['may_fail4']
|
||||||
self.ip6 = module.params['ip6']
|
self.ip6 = module.params['ip6']
|
||||||
self.gw6 = module.params['gw6']
|
self.gw6 = module.params['gw6']
|
||||||
self.gw6_ignore_auto = module.params['gw6_ignore_auto']
|
self.gw6_ignore_auto = module.params['gw6_ignore_auto']
|
||||||
|
@ -762,8 +776,10 @@ class Nmcli(object):
|
||||||
'ipv4.ignore-auto-routes': self.gw4_ignore_auto,
|
'ipv4.ignore-auto-routes': self.gw4_ignore_auto,
|
||||||
'ipv4.routes': self.routes4,
|
'ipv4.routes': self.routes4,
|
||||||
'ipv4.route-metric': self.route_metric4,
|
'ipv4.route-metric': self.route_metric4,
|
||||||
|
'ipv4.routing-rules': self.routing_rules4,
|
||||||
'ipv4.never-default': self.never_default4,
|
'ipv4.never-default': self.never_default4,
|
||||||
'ipv4.method': self.ipv4_method,
|
'ipv4.method': self.ipv4_method,
|
||||||
|
'ipv4.may-fail': self.may_fail4,
|
||||||
'ipv6.addresses': self.ip6,
|
'ipv6.addresses': self.ip6,
|
||||||
'ipv6.dns': self.dns6,
|
'ipv6.dns': self.dns6,
|
||||||
'ipv6.dns-search': self.dns6_search,
|
'ipv6.dns-search': self.dns6_search,
|
||||||
|
@ -935,6 +951,7 @@ class Nmcli(object):
|
||||||
'ipv4.never-default',
|
'ipv4.never-default',
|
||||||
'ipv4.ignore-auto-dns',
|
'ipv4.ignore-auto-dns',
|
||||||
'ipv4.ignore-auto-routes',
|
'ipv4.ignore-auto-routes',
|
||||||
|
'ipv4.may-fail',
|
||||||
'ipv6.ignore-auto-dns',
|
'ipv6.ignore-auto-dns',
|
||||||
'ipv6.ignore-auto-routes'):
|
'ipv6.ignore-auto-routes'):
|
||||||
return bool
|
return bool
|
||||||
|
@ -1155,11 +1172,13 @@ def main():
|
||||||
gw4_ignore_auto=dict(type='bool', default=False),
|
gw4_ignore_auto=dict(type='bool', default=False),
|
||||||
routes4=dict(type='list', elements='str'),
|
routes4=dict(type='list', elements='str'),
|
||||||
route_metric4=dict(type='int'),
|
route_metric4=dict(type='int'),
|
||||||
|
routing_rules4=dict(type='str'),
|
||||||
never_default4=dict(type='bool', default=False),
|
never_default4=dict(type='bool', default=False),
|
||||||
dns4=dict(type='list', elements='str'),
|
dns4=dict(type='list', elements='str'),
|
||||||
dns4_search=dict(type='list', elements='str'),
|
dns4_search=dict(type='list', elements='str'),
|
||||||
dns4_ignore_auto=dict(type='bool', default=False),
|
dns4_ignore_auto=dict(type='bool', default=False),
|
||||||
method4=dict(type='str', choices=['auto', 'link-local', 'manual', 'shared', 'disabled']),
|
method4=dict(type='str', choices=['auto', 'link-local', 'manual', 'shared', 'disabled']),
|
||||||
|
may_fail4=dict(type='bool', default=True),
|
||||||
dhcp_client_id=dict(type='str'),
|
dhcp_client_id=dict(type='str'),
|
||||||
ip6=dict(type='str'),
|
ip6=dict(type='str'),
|
||||||
gw6=dict(type='str'),
|
gw6=dict(type='str'),
|
||||||
|
@ -1167,7 +1186,7 @@ def main():
|
||||||
dns6=dict(type='list', elements='str'),
|
dns6=dict(type='list', elements='str'),
|
||||||
dns6_search=dict(type='list', elements='str'),
|
dns6_search=dict(type='list', elements='str'),
|
||||||
dns6_ignore_auto=dict(type='bool', default=False),
|
dns6_ignore_auto=dict(type='bool', default=False),
|
||||||
method6=dict(type='str', choices=['ignore', 'auto', 'dhcp', 'link-local', 'manual', 'shared']),
|
method6=dict(type='str', choices=['ignore', 'auto', 'dhcp', 'link-local', 'manual', 'shared', 'disabled']),
|
||||||
# Bond Specific vars
|
# Bond Specific vars
|
||||||
mode=dict(type='str', default='balance-rr',
|
mode=dict(type='str', default='balance-rr',
|
||||||
choices=['802.3ad', 'active-backup', 'balance-alb', 'balance-rr', 'balance-tlb', 'balance-xor', 'broadcast']),
|
choices=['802.3ad', 'active-backup', 'balance-alb', 'balance-rr', 'balance-tlb', 'balance-xor', 'broadcast']),
|
||||||
|
|
|
@ -98,6 +98,7 @@ ipv4.gateway: 10.10.10.1
|
||||||
ipv4.ignore-auto-dns: no
|
ipv4.ignore-auto-dns: no
|
||||||
ipv4.ignore-auto-routes: no
|
ipv4.ignore-auto-routes: no
|
||||||
ipv4.never-default: no
|
ipv4.never-default: no
|
||||||
|
ipv4.may-fail: yes
|
||||||
ipv6.method: auto
|
ipv6.method: auto
|
||||||
ipv6.ignore-auto-dns: no
|
ipv6.ignore-auto-dns: no
|
||||||
ipv6.ignore-auto-routes: no
|
ipv6.ignore-auto-routes: no
|
||||||
|
@ -128,6 +129,7 @@ ipv4.ignore-auto-dns: no
|
||||||
ipv4.ignore-auto-routes: no
|
ipv4.ignore-auto-routes: no
|
||||||
ipv4.never-default: no
|
ipv4.never-default: no
|
||||||
ipv4.dns-search: search.redhat.com
|
ipv4.dns-search: search.redhat.com
|
||||||
|
ipv4.may-fail: yes
|
||||||
ipv6.dns-search: search6.redhat.com
|
ipv6.dns-search: search6.redhat.com
|
||||||
ipv6.method: auto
|
ipv6.method: auto
|
||||||
ipv6.ignore-auto-dns: no
|
ipv6.ignore-auto-dns: no
|
||||||
|
@ -158,6 +160,7 @@ ipv4.gateway: 10.10.10.1
|
||||||
ipv4.ignore-auto-dns: no
|
ipv4.ignore-auto-dns: no
|
||||||
ipv4.ignore-auto-routes: no
|
ipv4.ignore-auto-routes: no
|
||||||
ipv4.never-default: no
|
ipv4.never-default: no
|
||||||
|
ipv4.may-fail: yes
|
||||||
ipv6.method: auto
|
ipv6.method: auto
|
||||||
ipv6.ignore-auto-dns: no
|
ipv6.ignore-auto-dns: no
|
||||||
ipv6.ignore-auto-routes: no
|
ipv6.ignore-auto-routes: no
|
||||||
|
@ -187,6 +190,7 @@ ipv4.gateway: 10.10.10.1
|
||||||
ipv4.ignore-auto-dns: no
|
ipv4.ignore-auto-dns: no
|
||||||
ipv4.ignore-auto-routes: no
|
ipv4.ignore-auto-routes: no
|
||||||
ipv4.never-default: no
|
ipv4.never-default: no
|
||||||
|
ipv4.may-fail: yes
|
||||||
ipv6.method: auto
|
ipv6.method: auto
|
||||||
ipv6.ignore-auto-dns: no
|
ipv6.ignore-auto-dns: no
|
||||||
ipv6.ignore-auto-routes: no
|
ipv6.ignore-auto-routes: no
|
||||||
|
@ -218,6 +222,7 @@ ipv4.gateway: 10.10.10.1
|
||||||
ipv4.ignore-auto-dns: no
|
ipv4.ignore-auto-dns: no
|
||||||
ipv4.ignore-auto-routes: no
|
ipv4.ignore-auto-routes: no
|
||||||
ipv4.never-default: no
|
ipv4.never-default: no
|
||||||
|
ipv4.may-fail: yes
|
||||||
ipv6.method: auto
|
ipv6.method: auto
|
||||||
ipv6.ignore-auto-dns: no
|
ipv6.ignore-auto-dns: no
|
||||||
ipv6.ignore-auto-routes: no
|
ipv6.ignore-auto-routes: no
|
||||||
|
@ -275,6 +280,7 @@ ipv4.gateway: 10.10.10.1
|
||||||
ipv4.ignore-auto-dns: no
|
ipv4.ignore-auto-dns: no
|
||||||
ipv4.ignore-auto-routes: no
|
ipv4.ignore-auto-routes: no
|
||||||
ipv4.never-default: no
|
ipv4.never-default: no
|
||||||
|
ipv4.may-fail: yes
|
||||||
ipv6.method: auto
|
ipv6.method: auto
|
||||||
ipv6.ignore-auto-dns: no
|
ipv6.ignore-auto-dns: no
|
||||||
ipv6.ignore-auto-routes: no
|
ipv6.ignore-auto-routes: no
|
||||||
|
@ -370,6 +376,7 @@ ipv4.dhcp-client-id: 00:11:22:AA:BB:CC:DD
|
||||||
ipv4.ignore-auto-dns: no
|
ipv4.ignore-auto-dns: no
|
||||||
ipv4.ignore-auto-routes: no
|
ipv4.ignore-auto-routes: no
|
||||||
ipv4.never-default: no
|
ipv4.never-default: no
|
||||||
|
ipv4.may-fail: yes
|
||||||
ipv6.method: auto
|
ipv6.method: auto
|
||||||
ipv6.ignore-auto-dns: no
|
ipv6.ignore-auto-dns: no
|
||||||
ipv6.ignore-auto-routes: no
|
ipv6.ignore-auto-routes: no
|
||||||
|
@ -399,6 +406,7 @@ ipv4.gateway: 10.10.10.1
|
||||||
ipv4.ignore-auto-dns: no
|
ipv4.ignore-auto-dns: no
|
||||||
ipv4.ignore-auto-routes: no
|
ipv4.ignore-auto-routes: no
|
||||||
ipv4.never-default: no
|
ipv4.never-default: no
|
||||||
|
ipv4.may-fail: yes
|
||||||
ipv4.dns: 1.1.1.1,8.8.8.8
|
ipv4.dns: 1.1.1.1,8.8.8.8
|
||||||
ipv6.method: auto
|
ipv6.method: auto
|
||||||
ipv6.ignore-auto-dns: no
|
ipv6.ignore-auto-dns: no
|
||||||
|
|
Loading…
Reference in a new issue