mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-06 10:40:32 -07:00
Feat: Add infiniband mac address support in nmcli module
This commit is contained in:
parent
70b5e362f9
commit
03bc8532ad
1 changed files with 13 additions and 1 deletions
|
@ -429,6 +429,10 @@ options:
|
||||||
- MAC address of the connection.
|
- MAC address of the connection.
|
||||||
- Note this requires a recent kernel feature, originally introduced in 3.15 upstream kernel.
|
- Note this requires a recent kernel feature, originally introduced in 3.15 upstream kernel.
|
||||||
type: str
|
type: str
|
||||||
|
infiniband_mac:
|
||||||
|
description:
|
||||||
|
- MAC address of the Infiniband IPoIB devices.
|
||||||
|
type: str
|
||||||
slavepriority:
|
slavepriority:
|
||||||
description:
|
description:
|
||||||
- This is only used with 'bridge-slave' - [<0-63>] - STP priority of this slave.
|
- This is only used with 'bridge-slave' - [<0-63>] - STP priority of this slave.
|
||||||
|
@ -1737,6 +1741,7 @@ class Nmcli(object):
|
||||||
self.hairpin = module.params['hairpin']
|
self.hairpin = module.params['hairpin']
|
||||||
self.path_cost = module.params['path_cost']
|
self.path_cost = module.params['path_cost']
|
||||||
self.mac = module.params['mac']
|
self.mac = module.params['mac']
|
||||||
|
self.infiniband_mac = module.params['infiniband_mac']
|
||||||
self.runner = module.params['runner']
|
self.runner = module.params['runner']
|
||||||
self.runner_hwaddr_policy = module.params['runner_hwaddr_policy']
|
self.runner_hwaddr_policy = module.params['runner_hwaddr_policy']
|
||||||
self.runner_fast_rate = module.params['runner_fast_rate']
|
self.runner_fast_rate = module.params['runner_fast_rate']
|
||||||
|
@ -2034,6 +2039,10 @@ class Nmcli(object):
|
||||||
options.update({
|
options.update({
|
||||||
'infiniband.transport-mode': self.transport_mode,
|
'infiniband.transport-mode': self.transport_mode,
|
||||||
})
|
})
|
||||||
|
if self.infiniband_mac:
|
||||||
|
options.update({
|
||||||
|
'infiniband.mac-address': self.infiniband_mac,
|
||||||
|
})
|
||||||
elif self.type == 'vrf':
|
elif self.type == 'vrf':
|
||||||
options.update({
|
options.update({
|
||||||
'table': self.table,
|
'table': self.table,
|
||||||
|
@ -2708,9 +2717,12 @@ def main():
|
||||||
tap=dict(type='bool'))),
|
tap=dict(type='bool'))),
|
||||||
wireguard=dict(type='dict'),
|
wireguard=dict(type='dict'),
|
||||||
vpn=dict(type='dict'),
|
vpn=dict(type='dict'),
|
||||||
transport_mode=dict(type='str', choices=['datagram', 'connected']),
|
|
||||||
sriov=dict(type='dict'),
|
sriov=dict(type='dict'),
|
||||||
table=dict(type='int'),
|
table=dict(type='int'),
|
||||||
|
# infiniband specific vars
|
||||||
|
transport_mode=dict(type='str', choices=['datagram', 'connected']),
|
||||||
|
infiniband_mac=dict(type='str'),
|
||||||
|
|
||||||
),
|
),
|
||||||
mutually_exclusive=[['never_default4', 'gw4'],
|
mutually_exclusive=[['never_default4', 'gw4'],
|
||||||
['routes4_extended', 'routes4'],
|
['routes4_extended', 'routes4'],
|
||||||
|
|
Loading…
Add table
Reference in a new issue