2015-05-12 14:10:53 +02:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
# (c) 2015, Chris Long <alcamie@gmail.com> <chlong@redhat.com>
#
# This file is a module for Ansible that interacts with Network Manager
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
DOCUMENTATION = '''
- - -
module : nmcli
2015-06-16 18:30:47 +02:00
author : " Chris Long (@alcamie101) "
2015-05-12 14:10:53 +02:00
short_description : Manage Networking
requirements : [ nmcli , dbus ]
2015-06-12 20:11:38 +02:00
version_added : " 2.0 "
2015-05-12 14:10:53 +02:00
description :
- Manage the network devices . Create , modify , and manage , ethernet , teams , bonds , vlans etc .
options :
state :
required : True
choices : [ present , absent ]
2015-05-14 17:09:49 +02:00
description :
- Whether the device should exist or not , taking action if the state is different from what is stated .
autoconnect :
2015-05-12 14:10:53 +02:00
required : False
default : " yes "
choices : [ " yes " , " no " ]
description :
2015-05-14 17:09:49 +02:00
- Whether the connection should start on boot .
2015-06-12 20:11:38 +02:00
- Whether the connection profile can be automatically activated
2015-05-14 16:45:51 +02:00
conn_name :
2015-05-12 14:10:53 +02:00
required : True
description :
2015-06-12 20:11:38 +02:00
- ' Where conn_name will be the name used to call the connection. when not provided a default name is generated: <type>[-<ifname>][-<num>] '
2015-05-12 14:10:53 +02:00
ifname :
required : False
2015-05-14 16:45:51 +02:00
default : conn_name
2015-05-12 14:10:53 +02:00
description :
2015-05-14 17:09:49 +02:00
- Where IFNAME will be the what we call the interface name .
2015-05-12 14:10:53 +02:00
- interface to bind the connection to . The connection will only be applicable to this interface name .
- A special value of " * " can be used for interface - independent connections .
- The ifname argument is mandatory for all connection types except bond , team , bridge and vlan .
type :
required : False
choices : [ ethernet , team , team - slave , bond , bond - slave , bridge , vlan ]
description :
- This is the type of device or network connection that you wish to create .
mode :
required : False
choices : [ " balance-rr " , " active-backup " , " balance-xor " , " broadcast " , " 802.3ad " , " balance-tlb " , " balance-alb " ]
2015-06-12 20:11:38 +02:00
default : balence - rr
2015-05-12 14:10:53 +02:00
description :
2015-06-12 20:11:38 +02:00
- This is the type of device or network connection that you wish to create for a bond , team or bridge .
2015-05-12 14:10:53 +02:00
master :
required : False
default : None
description :
2015-05-14 16:45:51 +02:00
- master < master ( ifname , or connection UUID or conn_name ) of bridge , team , bond master connection profile .
2015-05-12 14:10:53 +02:00
ip4 :
required : False
default : None
2015-05-14 17:09:49 +02:00
description :
2015-06-12 20:11:38 +02:00
- ' The IPv4 address to this interface using this format ie: " 192.168.1.24/24 " '
2015-05-12 14:10:53 +02:00
gw4 :
required : False
2015-05-14 17:09:49 +02:00
description :
2015-06-12 20:11:38 +02:00
- ' The IPv4 gateway for this interface using this format ie: " 192.168.100.1 " '
2015-05-12 14:10:53 +02:00
dns4 :
required : False
default : None
2015-05-14 17:09:49 +02:00
description :
2015-06-12 20:11:38 +02:00
- ' A list of upto 3 dns servers, ipv4 format e.g. To add two IPv4 DNS server addresses: [ " 8.8.8.8 8.8.4.4 " ] '
2015-05-12 14:10:53 +02:00
ip6 :
required : False
default : None
description :
2015-06-12 20:11:38 +02:00
- ' The IPv6 address to this interface using this format ie: " abbe::cafe " '
2015-05-12 14:10:53 +02:00
gw6 :
required : False
default : None
2015-05-14 17:09:49 +02:00
description :
2015-06-12 20:11:38 +02:00
- ' The IPv6 gateway for this interface using this format ie: " 2001:db8::1 " '
2015-05-12 14:10:53 +02:00
dns6 :
required : False
2015-05-14 17:09:49 +02:00
description :
2015-06-12 20:11:38 +02:00
- ' A list of upto 3 dns servers, ipv6 format e.g. To add two IPv6 DNS server addresses: [ " 2001:4860:4860::8888 2001:4860:4860::8844 " ] '
2015-05-12 14:10:53 +02:00
mtu :
required : False
2015-06-12 20:11:38 +02:00
default : 1500
2015-05-12 14:10:53 +02:00
description :
2015-06-12 20:11:38 +02:00
- The connection MTU , e . g . 9000. This can ' t be applied when creating the interface and is done once the interface has been created.
2015-05-12 14:10:53 +02:00
- Can be used when modifying Team , VLAN , Ethernet ( Future plans to implement wifi , pppoe , infiniband )
primary :
required : False
default : None
description :
- This is only used with bond and is the primary interface name ( for " active-backup " mode ) , this is the usually the ' ifname '
miimon :
required : False
2015-06-12 20:11:38 +02:00
default : 100
2015-05-12 14:10:53 +02:00
description :
2015-06-12 20:11:38 +02:00
- This is only used with bond - miimon
2015-05-12 14:10:53 +02:00
downdelay :
required : False
default : None
description :
2015-06-12 20:11:38 +02:00
- This is only used with bond - downdelay
2015-05-12 14:10:53 +02:00
updelay :
required : False
default : None
description :
2015-06-12 20:11:38 +02:00
- This is only used with bond - updelay
2015-05-12 14:10:53 +02:00
arp_interval :
required : False
default : None
description :
2015-06-12 20:11:38 +02:00
- This is only used with bond - ARP interval
2015-05-12 14:10:53 +02:00
arp_ip_target :
required : False
default : None
description :
- This is only used with bond - ARP IP target
stp :
required : False
default : None
description :
- This is only used with bridge and controls whether Spanning Tree Protocol ( STP ) is enabled for this bridge
priority :
required : False
2015-06-12 20:11:38 +02:00
default : 128
2015-05-12 14:10:53 +02:00
description :
2015-06-12 20:11:38 +02:00
- This is only used with ' bridge ' - sets STP priority
2015-05-12 14:10:53 +02:00
forwarddelay :
required : False
2015-06-12 20:11:38 +02:00
default : 15
2015-05-12 14:10:53 +02:00
description :
2015-06-12 20:11:38 +02:00
- This is only used with bridge - [ forward - delay < 2 - 30 > ] STP forwarding delay , in seconds
2015-05-12 14:10:53 +02:00
hellotime :
required : False
2015-06-12 20:11:38 +02:00
default : 2
2015-05-12 14:10:53 +02:00
description :
2015-06-12 20:11:38 +02:00
- This is only used with bridge - [ hello - time < 1 - 10 > ] STP hello time , in seconds
2015-05-12 14:10:53 +02:00
maxage :
required : False
2015-06-12 20:11:38 +02:00
default : 20
2015-05-12 14:10:53 +02:00
description :
2015-06-12 20:11:38 +02:00
- This is only used with bridge - [ max - age < 6 - 42 > ] STP maximum message age , in seconds
2015-05-12 14:10:53 +02:00
ageingtime :
required : False
2015-06-12 20:11:38 +02:00
default : 300
2015-05-12 14:10:53 +02:00
description :
2015-06-12 20:11:38 +02:00
- This is only used with bridge - [ ageing - time < 0 - 1000000 > ] the Ethernet MAC address aging time , in seconds
2015-05-12 14:10:53 +02:00
mac :
required : False
default : None
description :
2015-06-12 20:11:38 +02:00
- ' This is only used with bridge - MAC address of the bridge (note: this requires a recent kernel feature, originally introduced in 3.15 upstream kernel) '
2015-05-12 14:10:53 +02:00
slavepriority :
required : False
2015-06-12 20:11:38 +02:00
default : 32
2015-05-12 14:10:53 +02:00
description :
2015-06-12 20:11:38 +02:00
- This is only used with ' bridge-slave ' - [ < 0 - 63 > ] - STP priority of this slave
2015-05-12 14:10:53 +02:00
path_cost :
required : False
2015-06-12 20:11:38 +02:00
default : 100
2015-05-12 14:10:53 +02:00
description :
2015-06-12 20:11:38 +02:00
- This is only used with ' bridge-slave ' - [ < 1 - 65535 > ] - STP port cost for destinations via this slave
2015-05-12 14:10:53 +02:00
hairpin :
required : False
2015-06-12 20:11:38 +02:00
default : yes
2015-05-12 14:10:53 +02:00
description :
2015-06-12 20:11:38 +02:00
- This is only used with ' bridge-slave ' - ' hairpin mode ' for the slave , which allows frames to be sent back out through the slave the frame was received on .
2015-05-12 14:10:53 +02:00
vlanid :
required : False
default : None
description :
- This is only used with VLAN - VLAN ID in range < 0 - 4095 >
vlandev :
required : False
default : None
description :
- This is only used with VLAN - parent device this VLAN is on , can use ifname
flags :
required : False
default : None
description :
- This is only used with VLAN - flags
ingress :
required : False
default : None
description :
- This is only used with VLAN - VLAN ingress priority mapping
egress :
required : False
default : None
description :
- This is only used with VLAN - VLAN egress priority mapping
'''
EXAMPLES = '''
The following examples are working examples that I have run in the field . I followed follow the structure :
` ` `
| _ / inventory / cloud - hosts
| / group_vars / openstack - stage . yml
| / host_vars / controller - 01. openstack . host . com
| / host_vars / controller - 02. openstack . host . com
| _ / playbook / library / nmcli . py
| / playbook - add . yml
| / playbook - del . yml
` ` `
## inventory examples
### groups_vars
` ` ` yml
- - -
#devops_os_define_network
storage_gw : " 192.168.0.254 "
external_gw : " 10.10.0.254 "
tenant_gw : " 172.100.0.254 "
#Team vars
nmcli_team :
2015-05-14 16:45:51 +02:00
- { conn_name : ' tenant ' , ip4 : " {{ tenant_ip}} " , gw4 : " {{ tenant_gw}} " }
- { conn_name : ' external ' , ip4 : " {{ external_ip}} " , gw4 : " {{ external_gw}} " }
- { conn_name : ' storage ' , ip4 : " {{ storage_ip}} " , gw4 : " {{ storage_gw}} " }
2015-05-12 14:10:53 +02:00
nmcli_team_slave :
2015-05-14 16:45:51 +02:00
- { conn_name : ' em1 ' , ifname : ' em1 ' , master : ' tenant ' }
- { conn_name : ' em2 ' , ifname : ' em2 ' , master : ' tenant ' }
- { conn_name : ' p2p1 ' , ifname : ' p2p1 ' , master : ' storage ' }
- { conn_name : ' p2p2 ' , ifname : ' p2p2 ' , master : ' external ' }
2015-05-12 14:10:53 +02:00
#bond vars
nmcli_bond :
2015-05-14 16:45:51 +02:00
- { conn_name : ' tenant ' , ip4 : " {{ tenant_ip}} " , gw4 : ' ' , mode : ' balance-rr ' }
- { conn_name : ' external ' , ip4 : " {{ external_ip}} " , gw4 : ' ' , mode : ' balance-rr ' }
- { conn_name : ' storage ' , ip4 : " {{ storage_ip}} " , gw4 : " {{ storage_gw}} " , mode : ' balance-rr ' }
2015-05-12 14:10:53 +02:00
nmcli_bond_slave :
2015-05-14 16:45:51 +02:00
- { conn_name : ' em1 ' , ifname : ' em1 ' , master : ' tenant ' }
- { conn_name : ' em2 ' , ifname : ' em2 ' , master : ' tenant ' }
- { conn_name : ' p2p1 ' , ifname : ' p2p1 ' , master : ' storage ' }
- { conn_name : ' p2p2 ' , ifname : ' p2p2 ' , master : ' external ' }
2015-05-12 14:10:53 +02:00
#ethernet vars
nmcli_ethernet :
2015-05-14 16:45:51 +02:00
- { conn_name : ' em1 ' , ifname : ' em1 ' , ip4 : " {{ tenant_ip}} " , gw4 : " {{ tenant_gw}} " }
- { conn_name : ' em2 ' , ifname : ' em2 ' , ip4 : " {{ tenant_ip1}} " , gw4 : " {{ tenant_gw}} " }
- { conn_name : ' p2p1 ' , ifname : ' p2p1 ' , ip4 : " {{ storage_ip}} " , gw4 : " {{ storage_gw}} " }
- { conn_name : ' p2p2 ' , ifname : ' p2p2 ' , ip4 : " {{ external_ip}} " , gw4 : " {{ external_gw}} " }
2015-05-12 14:10:53 +02:00
` ` `
### host_vars
` ` ` yml
- - -
storage_ip : " 192.168.160.21/23 "
external_ip : " 10.10.152.21/21 "
tenant_ip : " 192.168.200.21/23 "
` ` `
## playbook-add.yml example
` ` ` yml
- - -
- hosts : openstack - stage
remote_user : root
tasks :
- name : install needed network manager libs
yum : name = { { item } } state = installed
with_items :
- libnm - qt - devel . x86_64
- nm - connection - editor . x86_64
- libsemanage - python
- policycoreutils - python
##### Working with all cloud nodes - Teaming
2015-05-14 16:45:51 +02:00
- name : try nmcli add team - conn_name only & ip4 gw4
nmcli : type = team conn_name = { { item . conn_name } } ip4 = { { item . ip4 } } gw4 = { { item . gw4 } } state = present
2015-05-12 14:10:53 +02:00
with_items :
- " {{ nmcli_team}} "
- name : try nmcli add teams - slave
2015-05-14 16:45:51 +02:00
nmcli : type = team - slave conn_name = { { item . conn_name } } ifname = { { item . ifname } } master = { { item . master } } state = present
2015-05-12 14:10:53 +02:00
with_items :
- " {{ nmcli_team_slave}} "
###### Working with all cloud nodes - Bonding
2015-05-14 16:45:51 +02:00
# - name: try nmcli add bond - conn_name only & ip4 gw4 mode
# nmcli: type=bond conn_name={{item.conn_name}} ip4={{item.ip4}} gw4={{item.gw4}} mode={{item.mode}} state=present
2015-05-12 14:10:53 +02:00
# with_items:
# - "{{nmcli_bond}}"
#
# - name: try nmcli add bond-slave
2015-05-14 16:45:51 +02:00
# nmcli: type=bond-slave conn_name={{item.conn_name}} ifname={{item.ifname}} master={{item.master}} state=present
2015-05-12 14:10:53 +02:00
# with_items:
# - "{{nmcli_bond_slave}}"
##### Working with all cloud nodes - Ethernet
2015-05-14 16:45:51 +02:00
# - name: nmcli add Ethernet - conn_name only & ip4 gw4
# nmcli: type=ethernet conn_name={{item.conn_name}} ip4={{item.ip4}} gw4={{item.gw4}} state=present
2015-05-12 14:10:53 +02:00
# with_items:
# - "{{nmcli_ethernet}}"
` ` `
## playbook-del.yml example
` ` ` yml
- - -
- hosts : openstack - stage
remote_user : root
tasks :
- name : try nmcli del team - multiple
2015-05-14 16:45:51 +02:00
nmcli : conn_name = { { item . conn_name } } state = absent
2015-05-12 14:10:53 +02:00
with_items :
2015-05-14 16:45:51 +02:00
- { conn_name : ' em1 ' }
- { conn_name : ' em2 ' }
- { conn_name : ' p1p1 ' }
- { conn_name : ' p1p2 ' }
- { conn_name : ' p2p1 ' }
- { conn_name : ' p2p2 ' }
- { conn_name : ' tenant ' }
- { conn_name : ' storage ' }
- { conn_name : ' external ' }
- { conn_name : ' team-em1 ' }
- { conn_name : ' team-em2 ' }
- { conn_name : ' team-p1p1 ' }
- { conn_name : ' team-p1p2 ' }
- { conn_name : ' team-p2p1 ' }
- { conn_name : ' team-p2p2 ' }
2015-05-12 14:10:53 +02:00
` ` `
# To add an Ethernet connection with static IP configuration, issue a command as follows
2015-05-14 16:45:51 +02:00
- nmcli : conn_name = my - eth1 ifname = eth1 type = ethernet ip4 = 192.168 .100 .100 / 24 gw4 = 192.168 .100 .1 state = present
2015-05-12 14:10:53 +02:00
# To add an Team connection with static IP configuration, issue a command as follows
2015-05-14 17:09:49 +02:00
- nmcli : conn_name = my - team1 ifname = my - team1 type = team ip4 = 192.168 .100 .100 / 24 gw4 = 192.168 .100 .1 state = present autoconnect = yes
2015-05-12 14:10:53 +02:00
# Optionally, at the same time specify IPv6 addresses for the device as follows:
2015-05-14 16:45:51 +02:00
- nmcli : conn_name = my - eth1 ifname = eth1 type = ethernet ip4 = 192.168 .100 .100 / 24 gw4 = 192.168 .100 .1 ip6 = abbe : : cafe gw6 = 2001 : db8 : : 1 state = present
2015-05-12 14:10:53 +02:00
# To add two IPv4 DNS server addresses:
2015-05-14 16:45:51 +02:00
- nmcli : conn_name = my - eth1 dns4 = [ " 8.8.8.8 " , " 8.8.4.4 " ] state = present
2015-05-12 14:10:53 +02:00
# To make a profile usable for all compatible Ethernet interfaces, issue a command as follows
- nmcli : ctype = ethernet name = my - eth1 ifname = " * " state = present
# To change the property of a setting e.g. MTU, issue a command as follows:
2015-05-14 16:45:51 +02:00
- nmcli : conn_name = my - eth1 mtu = 9000 state = present
2015-05-12 14:10:53 +02:00
Exit Status ' s:
- nmcli exits with status 0 if it succeeds , a value greater than 0 is
returned if an error occurs .
- 0 Success - indicates the operation succeeded
- 1 Unknown or unspecified error
- 2 Invalid user input , wrong nmcli invocation
- 3 Timeout expired ( see - - wait option )
- 4 Connection activation failed
- 5 Connection deactivation failed
- 6 Disconnecting device failed
- 7 Connection deletion failed
- 8 NetworkManager is not running
- 9 nmcli and NetworkManager versions mismatch
- 10 Connection , device , or access point does not exist .
'''
# import ansible.module_utils.basic
import os
import sys
import dbus
from gi . repository import NetworkManager , NMClient
class Nmcli ( object ) :
"""
This is the generic nmcli manipulation class that is subclassed based on platform .
A subclass may wish to override the following action methods : -
- create_connection ( )
- delete_connection ( )
- modify_connection ( )
- show_connection ( )
- up_connection ( )
- down_connection ( )
All subclasses MUST define platform and distribution ( which may be None ) .
"""
platform = ' Generic '
distribution = None
bus = dbus . SystemBus ( )
# The following is going to be used in dbus code
DEVTYPES = { 1 : " Ethernet " ,
2 : " Wi-Fi " ,
5 : " Bluetooth " ,
6 : " OLPC " ,
7 : " WiMAX " ,
8 : " Modem " ,
9 : " InfiniBand " ,
10 : " Bond " ,
11 : " VLAN " ,
12 : " ADSL " ,
13 : " Bridge " ,
14 : " Generic " ,
15 : " Team "
}
STATES = { 0 : " Unknown " ,
10 : " Unmanaged " ,
20 : " Unavailable " ,
30 : " Disconnected " ,
40 : " Prepare " ,
50 : " Config " ,
60 : " Need Auth " ,
70 : " IP Config " ,
80 : " IP Check " ,
90 : " Secondaries " ,
100 : " Activated " ,
110 : " Deactivating " ,
120 : " Failed "
}
def __init__ ( self , module ) :
self . module = module
self . state = module . params [ ' state ' ]
2015-05-14 17:09:49 +02:00
self . autoconnect = module . params [ ' autoconnect ' ]
2015-05-14 16:45:51 +02:00
self . conn_name = module . params [ ' conn_name ' ]
2015-05-12 14:10:53 +02:00
self . master = module . params [ ' master ' ]
self . ifname = module . params [ ' ifname ' ]
self . type = module . params [ ' type ' ]
self . ip4 = module . params [ ' ip4 ' ]
self . gw4 = module . params [ ' gw4 ' ]
self . dns4 = module . params [ ' dns4 ' ]
self . ip6 = module . params [ ' ip6 ' ]
self . gw6 = module . params [ ' gw6 ' ]
self . dns6 = module . params [ ' dns6 ' ]
self . mtu = module . params [ ' mtu ' ]
self . stp = module . params [ ' stp ' ]
self . priority = module . params [ ' priority ' ]
self . mode = module . params [ ' mode ' ]
self . miimon = module . params [ ' miimon ' ]
self . downdelay = module . params [ ' downdelay ' ]
self . updelay = module . params [ ' updelay ' ]
self . arp_interval = module . params [ ' arp_interval ' ]
self . arp_ip_target = module . params [ ' arp_ip_target ' ]
self . slavepriority = module . params [ ' slavepriority ' ]
self . forwarddelay = module . params [ ' forwarddelay ' ]
self . hellotime = module . params [ ' hellotime ' ]
self . maxage = module . params [ ' maxage ' ]
self . ageingtime = module . params [ ' ageingtime ' ]
self . mac = module . params [ ' mac ' ]
self . vlanid = module . params [ ' vlanid ' ]
self . vlandev = module . params [ ' vlandev ' ]
self . flags = module . params [ ' flags ' ]
self . ingress = module . params [ ' ingress ' ]
self . egress = module . params [ ' egress ' ]
def execute_command ( self , cmd , use_unsafe_shell = False , data = None ) :
return self . module . run_command ( cmd , use_unsafe_shell = use_unsafe_shell , data = data )
def merge_secrets ( self , proxy , config , setting_name ) :
try :
# returns a dict of dicts mapping name::setting, where setting is a dict
# mapping key::value. Each member of the 'setting' dict is a secret
secrets = proxy . GetSecrets ( setting_name )
# Copy the secrets into our connection config
for setting in secrets :
for key in secrets [ setting ] :
config [ setting_name ] [ key ] = secrets [ setting ] [ key ]
except Exception , e :
pass
def dict_to_string ( self , d ) :
# Try to trivially translate a dictionary's elements into nice string
# formatting.
dstr = " "
for key in d :
val = d [ key ]
str_val = " "
add_string = True
if type ( val ) == type ( dbus . Array ( [ ] ) ) :
for elt in val :
if type ( elt ) == type ( dbus . Byte ( 1 ) ) :
str_val + = " %s " % int ( elt )
elif type ( elt ) == type ( dbus . String ( " " ) ) :
str_val + = " %s " % elt
elif type ( val ) == type ( dbus . Dictionary ( { } ) ) :
dstr + = self . dict_to_string ( val )
add_string = False
else :
str_val = val
if add_string :
dstr + = " %s : %s \n " % ( key , str_val )
return dstr
def connection_to_string ( self , config ) :
# dump a connection configuration to use in list_connection_info
setting_list = [ ]
for setting_name in config :
setting_list . append ( self . dict_to_string ( config [ setting_name ] ) )
return setting_list
# print ""
def list_connection_info ( self ) :
# Ask the settings service for the list of connections it provides
bus = dbus . SystemBus ( )
service_name = " org.freedesktop.NetworkManager "
proxy = bus . get_object ( service_name , " /org/freedesktop/NetworkManager/Settings " )
settings = dbus . Interface ( proxy , " org.freedesktop.NetworkManager.Settings " )
connection_paths = settings . ListConnections ( )
connection_list = [ ]
# List each connection's name, UUID, and type
for path in connection_paths :
con_proxy = bus . get_object ( service_name , path )
settings_connection = dbus . Interface ( con_proxy , " org.freedesktop.NetworkManager.Settings.Connection " )
config = settings_connection . GetSettings ( )
# Now get secrets too; we grab the secrets for each type of connection
# (since there isn't a "get all secrets" call because most of the time
# you only need 'wifi' secrets or '802.1x' secrets, not everything) and
# merge that into the configuration data - To use at a later stage
self . merge_secrets ( settings_connection , config , ' 802-11-wireless ' )
self . merge_secrets ( settings_connection , config , ' 802-11-wireless-security ' )
self . merge_secrets ( settings_connection , config , ' 802-1x ' )
self . merge_secrets ( settings_connection , config , ' gsm ' )
self . merge_secrets ( settings_connection , config , ' cdma ' )
self . merge_secrets ( settings_connection , config , ' ppp ' )
# Get the details of the 'connection' setting
s_con = config [ ' connection ' ]
connection_list . append ( s_con [ ' id ' ] )
connection_list . append ( s_con [ ' uuid ' ] )
connection_list . append ( s_con [ ' type ' ] )
connection_list . append ( self . connection_to_string ( config ) )
return connection_list
def connection_exists ( self ) :
# we are going to use name and type in this instance to find if that connection exists and is of type x
connections = self . list_connection_info ( )
for con_item in connections :
2015-05-14 16:45:51 +02:00
if self . conn_name == con_item :
2015-05-12 14:10:53 +02:00
return True
def down_connection ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# if self.connection_exists():
cmd . append ( ' con ' )
cmd . append ( ' down ' )
2015-05-14 16:45:51 +02:00
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
return self . execute_command ( cmd )
def up_connection ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
cmd . append ( ' con ' )
cmd . append ( ' up ' )
2015-05-14 16:45:51 +02:00
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
return self . execute_command ( cmd )
def create_connection_team ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# format for creating team interface
cmd . append ( ' con ' )
cmd . append ( ' add ' )
cmd . append ( ' type ' )
cmd . append ( ' team ' )
cmd . append ( ' con-name ' )
2015-05-14 16:45:51 +02:00
if self . conn_name is not None :
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
elif self . ifname is not None :
cmd . append ( self . ifname )
cmd . append ( ' ifname ' )
if self . ifname is not None :
cmd . append ( self . ifname )
2015-05-14 16:45:51 +02:00
elif self . conn_name is not None :
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
if self . ip4 is not None :
cmd . append ( ' ip4 ' )
cmd . append ( self . ip4 )
if self . gw4 is not None :
cmd . append ( ' gw4 ' )
cmd . append ( self . gw4 )
if self . ip6 is not None :
cmd . append ( ' ip6 ' )
cmd . append ( self . ip6 )
if self . gw6 is not None :
cmd . append ( ' gw6 ' )
cmd . append ( self . gw6 )
2015-05-14 17:09:49 +02:00
if self . autoconnect is not None :
2015-05-12 14:10:53 +02:00
cmd . append ( ' autoconnect ' )
2015-05-14 17:09:49 +02:00
cmd . append ( self . autoconnect )
2015-05-12 14:10:53 +02:00
return cmd
def modify_connection_team ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# format for modifying team interface
cmd . append ( ' con ' )
cmd . append ( ' mod ' )
2015-05-14 16:45:51 +02:00
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
if self . ip4 is not None :
cmd . append ( ' ipv4.address ' )
cmd . append ( self . ip4 )
if self . gw4 is not None :
cmd . append ( ' ipv4.gateway ' )
cmd . append ( self . gw4 )
if self . dns4 is not None :
cmd . append ( ' ipv4.dns ' )
cmd . append ( self . dns4 )
if self . ip6 is not None :
cmd . append ( ' ipv6.address ' )
cmd . append ( self . ip6 )
if self . gw6 is not None :
cmd . append ( ' ipv6.gateway ' )
cmd . append ( self . gw4 )
if self . dns6 is not None :
cmd . append ( ' ipv6.dns ' )
cmd . append ( self . dns6 )
2015-05-14 17:09:49 +02:00
if self . autoconnect is not None :
2015-05-12 14:10:53 +02:00
cmd . append ( ' autoconnect ' )
2015-05-14 17:09:49 +02:00
cmd . append ( self . autoconnect )
2015-05-12 14:10:53 +02:00
# Can't use MTU with team
return cmd
def create_connection_team_slave ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# format for creating team-slave interface
cmd . append ( ' connection ' )
cmd . append ( ' add ' )
cmd . append ( ' type ' )
cmd . append ( self . type )
cmd . append ( ' con-name ' )
2015-05-14 16:45:51 +02:00
if self . conn_name is not None :
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
elif self . ifname is not None :
cmd . append ( self . ifname )
cmd . append ( ' ifname ' )
if self . ifname is not None :
cmd . append ( self . ifname )
2015-05-14 16:45:51 +02:00
elif self . conn_name is not None :
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
cmd . append ( ' master ' )
2015-05-14 16:45:51 +02:00
if self . conn_name is not None :
2015-05-12 14:10:53 +02:00
cmd . append ( self . master )
# if self.mtu is not None:
# cmd.append('802-3-ethernet.mtu')
# cmd.append(self.mtu)
return cmd
def modify_connection_team_slave ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# format for modifying team-slave interface
cmd . append ( ' con ' )
cmd . append ( ' mod ' )
2015-05-14 16:45:51 +02:00
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
cmd . append ( ' connection.master ' )
cmd . append ( self . master )
if self . mtu is not None :
cmd . append ( ' 802-3-ethernet.mtu ' )
cmd . append ( self . mtu )
return cmd
def create_connection_bond ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# format for creating bond interface
cmd . append ( ' con ' )
cmd . append ( ' add ' )
cmd . append ( ' type ' )
cmd . append ( ' bond ' )
cmd . append ( ' con-name ' )
2015-05-14 16:45:51 +02:00
if self . conn_name is not None :
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
elif self . ifname is not None :
cmd . append ( self . ifname )
cmd . append ( ' ifname ' )
if self . ifname is not None :
cmd . append ( self . ifname )
2015-05-14 16:45:51 +02:00
elif self . conn_name is not None :
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
if self . ip4 is not None :
cmd . append ( ' ip4 ' )
cmd . append ( self . ip4 )
if self . gw4 is not None :
cmd . append ( ' gw4 ' )
cmd . append ( self . gw4 )
if self . ip6 is not None :
cmd . append ( ' ip6 ' )
cmd . append ( self . ip6 )
if self . gw6 is not None :
cmd . append ( ' gw6 ' )
cmd . append ( self . gw6 )
2015-05-14 17:09:49 +02:00
if self . autoconnect is not None :
2015-05-12 14:10:53 +02:00
cmd . append ( ' autoconnect ' )
2015-05-14 17:09:49 +02:00
cmd . append ( self . autoconnect )
2015-05-12 14:10:53 +02:00
if self . mode is not None :
cmd . append ( ' mode ' )
cmd . append ( self . mode )
if self . miimon is not None :
cmd . append ( ' miimon ' )
cmd . append ( self . miimon )
if self . downdelay is not None :
cmd . append ( ' downdelay ' )
cmd . append ( self . downdelay )
if self . downdelay is not None :
cmd . append ( ' updelay ' )
cmd . append ( self . updelay )
if self . downdelay is not None :
cmd . append ( ' arp-interval ' )
cmd . append ( self . arp_interval )
if self . downdelay is not None :
cmd . append ( ' arp-ip-target ' )
cmd . append ( self . arp_ip_target )
return cmd
def modify_connection_bond ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# format for modifying bond interface
cmd . append ( ' con ' )
cmd . append ( ' mod ' )
2015-05-14 16:45:51 +02:00
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
if self . ip4 is not None :
cmd . append ( ' ipv4.address ' )
cmd . append ( self . ip4 )
if self . gw4 is not None :
cmd . append ( ' ipv4.gateway ' )
cmd . append ( self . gw4 )
if self . dns4 is not None :
cmd . append ( ' ipv4.dns ' )
cmd . append ( self . dns4 )
if self . ip6 is not None :
cmd . append ( ' ipv6.address ' )
cmd . append ( self . ip6 )
if self . gw6 is not None :
cmd . append ( ' ipv6.gateway ' )
cmd . append ( self . gw4 )
if self . dns6 is not None :
cmd . append ( ' ipv6.dns ' )
cmd . append ( self . dns6 )
2015-05-14 17:09:49 +02:00
if self . autoconnect is not None :
2015-05-12 14:10:53 +02:00
cmd . append ( ' autoconnect ' )
2015-05-14 17:09:49 +02:00
cmd . append ( self . autoconnect )
2015-05-12 14:10:53 +02:00
return cmd
def create_connection_bond_slave ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# format for creating bond-slave interface
cmd . append ( ' connection ' )
cmd . append ( ' add ' )
cmd . append ( ' type ' )
cmd . append ( ' bond-slave ' )
cmd . append ( ' con-name ' )
2015-05-14 16:45:51 +02:00
if self . conn_name is not None :
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
elif self . ifname is not None :
cmd . append ( self . ifname )
cmd . append ( ' ifname ' )
if self . ifname is not None :
cmd . append ( self . ifname )
2015-05-14 16:45:51 +02:00
elif self . conn_name is not None :
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
cmd . append ( ' master ' )
2015-05-14 16:45:51 +02:00
if self . conn_name is not None :
2015-05-12 14:10:53 +02:00
cmd . append ( self . master )
return cmd
def modify_connection_bond_slave ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# format for modifying bond-slave interface
cmd . append ( ' con ' )
cmd . append ( ' mod ' )
2015-05-14 16:45:51 +02:00
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
cmd . append ( ' connection.master ' )
cmd . append ( self . master )
return cmd
def create_connection_ethernet ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# format for creating ethernet interface
# To add an Ethernet connection with static IP configuration, issue a command as follows
2015-05-14 16:45:51 +02:00
# - nmcli: name=add conn_name=my-eth1 ifname=eth1 type=ethernet ip4=192.168.100.100/24 gw4=192.168.100.1 state=present
2015-05-12 14:10:53 +02:00
# nmcli con add con-name my-eth1 ifname eth1 type ethernet ip4 192.168.100.100/24 gw4 192.168.100.1
cmd . append ( ' con ' )
cmd . append ( ' add ' )
cmd . append ( ' type ' )
cmd . append ( ' ethernet ' )
cmd . append ( ' con-name ' )
2015-05-14 16:45:51 +02:00
if self . conn_name is not None :
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
elif self . ifname is not None :
cmd . append ( self . ifname )
cmd . append ( ' ifname ' )
if self . ifname is not None :
cmd . append ( self . ifname )
2015-05-14 16:45:51 +02:00
elif self . conn_name is not None :
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
if self . ip4 is not None :
cmd . append ( ' ip4 ' )
cmd . append ( self . ip4 )
if self . gw4 is not None :
cmd . append ( ' gw4 ' )
cmd . append ( self . gw4 )
if self . ip6 is not None :
cmd . append ( ' ip6 ' )
cmd . append ( self . ip6 )
if self . gw6 is not None :
cmd . append ( ' gw6 ' )
cmd . append ( self . gw6 )
2015-05-14 17:09:49 +02:00
if self . autoconnect is not None :
2015-05-12 14:10:53 +02:00
cmd . append ( ' autoconnect ' )
2015-05-14 17:09:49 +02:00
cmd . append ( self . autoconnect )
2015-05-12 14:10:53 +02:00
return cmd
def modify_connection_ethernet ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# format for modifying ethernet interface
# To add an Ethernet connection with static IP configuration, issue a command as follows
2015-05-14 16:45:51 +02:00
# - nmcli: name=add conn_name=my-eth1 ifname=eth1 type=ethernet ip4=192.168.100.100/24 gw4=192.168.100.1 state=present
2015-05-12 14:10:53 +02:00
# nmcli con add con-name my-eth1 ifname eth1 type ethernet ip4 192.168.100.100/24 gw4 192.168.100.1
cmd . append ( ' con ' )
cmd . append ( ' mod ' )
2015-05-14 16:45:51 +02:00
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
if self . ip4 is not None :
cmd . append ( ' ipv4.address ' )
cmd . append ( self . ip4 )
if self . gw4 is not None :
cmd . append ( ' ipv4.gateway ' )
cmd . append ( self . gw4 )
if self . dns4 is not None :
cmd . append ( ' ipv4.dns ' )
cmd . append ( self . dns4 )
if self . ip6 is not None :
cmd . append ( ' ipv6.address ' )
cmd . append ( self . ip6 )
if self . gw6 is not None :
cmd . append ( ' ipv6.gateway ' )
cmd . append ( self . gw4 )
if self . dns6 is not None :
cmd . append ( ' ipv6.dns ' )
cmd . append ( self . dns6 )
if self . mtu is not None :
cmd . append ( ' 802-3-ethernet.mtu ' )
cmd . append ( self . mtu )
2015-05-14 17:09:49 +02:00
if self . autoconnect is not None :
2015-05-12 14:10:53 +02:00
cmd . append ( ' autoconnect ' )
2015-05-14 17:09:49 +02:00
cmd . append ( self . autoconnect )
2015-05-12 14:10:53 +02:00
return cmd
def create_connection_bridge ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# format for creating bridge interface
return cmd
def modify_connection_bridge ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# format for modifying bridge interface
return cmd
def create_connection_vlan ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# format for creating ethernet interface
return cmd
def modify_connection_vlan ( self ) :
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
# format for modifying ethernet interface
return cmd
def create_connection ( self ) :
cmd = [ ]
if self . type == ' team ' :
# cmd=self.create_connection_team()
if ( self . dns4 is not None ) or ( self . dns6 is not None ) :
cmd = self . create_connection_team ( )
self . execute_command ( cmd )
cmd = self . modify_connection_team ( )
self . execute_command ( cmd )
cmd = self . up_connection ( )
return self . execute_command ( cmd )
elif ( self . dns4 is None ) or ( self . dns6 is None ) :
cmd = self . create_connection_team ( )
return self . execute_command ( cmd )
elif self . type == ' team-slave ' :
if self . mtu is not None :
cmd = self . create_connection_team_slave ( )
self . execute_command ( cmd )
cmd = self . modify_connection_team_slave ( )
self . execute_command ( cmd )
# cmd=self.up_connection()
return self . execute_command ( cmd )
else :
cmd = self . create_connection_team_slave ( )
return self . execute_command ( cmd )
elif self . type == ' bond ' :
if ( self . mtu is not None ) or ( self . dns4 is not None ) or ( self . dns6 is not None ) :
cmd = self . create_connection_bond ( )
self . execute_command ( cmd )
cmd = self . modify_connection_bond ( )
self . execute_command ( cmd )
cmd = self . up_connection ( )
return self . execute_command ( cmd )
else :
cmd = self . create_connection_bond ( )
return self . execute_command ( cmd )
elif self . type == ' bond-slave ' :
cmd = self . create_connection_bond_slave ( )
elif self . type == ' ethernet ' :
if ( self . mtu is not None ) or ( self . dns4 is not None ) or ( self . dns6 is not None ) :
cmd = self . create_connection_ethernet ( )
self . execute_command ( cmd )
cmd = self . modify_connection_ethernet ( )
self . execute_command ( cmd )
cmd = self . up_connection ( )
return self . execute_command ( cmd )
else :
cmd = self . create_connection_ethernet ( )
return self . execute_command ( cmd )
elif self . type == ' bridge ' :
cmd = self . create_connection_bridge ( )
elif self . type == ' vlan ' :
cmd = self . create_connection_vlan ( )
return self . execute_command ( cmd )
def remove_connection ( self ) :
# self.down_connection()
cmd = [ self . module . get_bin_path ( ' nmcli ' , True ) ]
cmd . append ( ' con ' )
cmd . append ( ' del ' )
2015-05-14 16:45:51 +02:00
cmd . append ( self . conn_name )
2015-05-12 14:10:53 +02:00
return self . execute_command ( cmd )
def modify_connection ( self ) :
cmd = [ ]
if self . type == ' team ' :
cmd = self . modify_connection_team ( )
elif self . type == ' team-slave ' :
cmd = self . modify_connection_team_slave ( )
elif self . type == ' bond ' :
cmd = self . modify_connection_bond ( )
elif self . type == ' bond-slave ' :
cmd = self . modify_connection_bond_slave ( )
elif self . type == ' ethernet ' :
cmd = self . modify_connection_ethernet ( )
elif self . type == ' bridge ' :
cmd = self . modify_connection_bridge ( )
elif self . type == ' vlan ' :
cmd = self . modify_connection_vlan ( )
return self . execute_command ( cmd )
def main ( ) :
# Parsing argument file
module = AnsibleModule (
argument_spec = dict (
2015-05-14 17:09:49 +02:00
autoconnect = dict ( required = False , default = None , choices = [ ' yes ' , ' no ' ] , type = ' str ' ) ,
2015-05-14 16:45:51 +02:00
state = dict ( required = True , choices = [ ' present ' , ' absent ' ] , type = ' str ' ) ,
2015-05-14 17:09:49 +02:00
conn_name = dict ( required = True , type = ' str ' ) ,
2015-05-12 14:10:53 +02:00
master = dict ( required = False , default = None , type = ' str ' ) ,
ifname = dict ( required = False , default = None , type = ' str ' ) ,
type = dict ( required = False , default = None , choices = [ ' ethernet ' , ' team ' , ' team-slave ' , ' bond ' , ' bond-slave ' , ' bridge ' , ' vlan ' ] , type = ' str ' ) ,
ip4 = dict ( required = False , default = None , type = ' str ' ) ,
gw4 = dict ( required = False , default = None , type = ' str ' ) ,
dns4 = dict ( required = False , default = None , type = ' str ' ) ,
ip6 = dict ( required = False , default = None , type = ' str ' ) ,
gw6 = dict ( required = False , default = None , type = ' str ' ) ,
dns6 = dict ( required = False , default = None , type = ' str ' ) ,
# Bond Specific vars
mode = dict ( require = False , default = " balance-rr " , choices = [ " balance-rr " , " active-backup " , " balance-xor " , " broadcast " , " 802.3ad " , " balance-tlb " , " balance-alb " ] , type = ' str ' ) ,
miimon = dict ( required = False , default = None , type = ' str ' ) ,
downdelay = dict ( required = False , default = None , type = ' str ' ) ,
updelay = dict ( required = False , default = None , type = ' str ' ) ,
arp_interval = dict ( required = False , default = None , type = ' str ' ) ,
arp_ip_target = dict ( required = False , default = None , type = ' str ' ) ,
# general usage
mtu = dict ( required = False , default = None , type = ' str ' ) ,
mac = dict ( required = False , default = None , type = ' str ' ) ,
# bridge specific vars
stp = dict ( required = False , default = ' yes ' , choices = [ ' yes ' , ' no ' ] , type = ' str ' ) ,
priority = dict ( required = False , default = " 128 " , type = ' str ' ) ,
slavepriority = dict ( required = False , default = " 32 " , type = ' str ' ) ,
forwarddelay = dict ( required = False , default = " 15 " , type = ' str ' ) ,
hellotime = dict ( required = False , default = " 2 " , type = ' str ' ) ,
maxage = dict ( required = False , default = " 20 " , type = ' str ' ) ,
ageingtime = dict ( required = False , default = " 300 " , type = ' str ' ) ,
# vlan specific vars
vlanid = dict ( required = False , default = None , type = ' str ' ) ,
vlandev = dict ( required = False , default = None , type = ' str ' ) ,
flags = dict ( required = False , default = None , type = ' str ' ) ,
ingress = dict ( required = False , default = None , type = ' str ' ) ,
egress = dict ( required = False , default = None , type = ' str ' ) ,
) ,
supports_check_mode = True
)
nmcli = Nmcli ( module )
rc = None
out = ' '
err = ' '
result = { }
2015-05-14 16:45:51 +02:00
result [ ' conn_name ' ] = nmcli . conn_name
2015-05-12 14:10:53 +02:00
result [ ' state ' ] = nmcli . state
# check for issues
2015-05-14 16:45:51 +02:00
if nmcli . conn_name is None :
2015-05-12 14:10:53 +02:00
nmcli . module . fail_json ( msg = " You haven ' t specified a name for the connection " )
# team-slave checks
if nmcli . type == ' team-slave ' and nmcli . master is None :
nmcli . module . fail_json ( msg = " You haven ' t specified a name for the master so we ' re not changing a thing " )
if nmcli . type == ' team-slave ' and nmcli . ifname is None :
nmcli . module . fail_json ( msg = " You haven ' t specified a name for the connection " )
if nmcli . state == ' absent ' :
if nmcli . connection_exists ( ) :
if module . check_mode :
module . exit_json ( changed = True )
( rc , out , err ) = nmcli . down_connection ( )
( rc , out , err ) = nmcli . remove_connection ( )
if rc != 0 :
2015-05-14 16:45:51 +02:00
module . fail_json ( name = ( ' No Connection named %s exists ' % nmcli . conn_name ) , msg = err , rc = rc )
2015-05-12 14:10:53 +02:00
elif nmcli . state == ' present ' :
if nmcli . connection_exists ( ) :
# modify connection (note: this function is check mode aware)
2015-05-14 16:45:51 +02:00
# result['Connection']=('Connection %s of Type %s is not being added' % (nmcli.conn_name, nmcli.type))
2015-05-12 14:10:53 +02:00
result [ ' Exists ' ] = ' Connections do exist so we are modifying them '
if module . check_mode :
module . exit_json ( changed = True )
( rc , out , err ) = nmcli . modify_connection ( )
if not nmcli . connection_exists ( ) :
2015-05-14 16:45:51 +02:00
result [ ' Connection ' ] = ( ' Connection %s of Type %s is being added ' % ( nmcli . conn_name , nmcli . type ) )
2015-05-12 14:10:53 +02:00
if module . check_mode :
module . exit_json ( changed = True )
( rc , out , err ) = nmcli . create_connection ( )
if rc is not None and rc != 0 :
2015-05-14 16:45:51 +02:00
module . fail_json ( name = nmcli . conn_name , msg = err , rc = rc )
2015-05-12 14:10:53 +02:00
if rc is None :
result [ ' changed ' ] = False
else :
result [ ' changed ' ] = True
if out :
result [ ' stdout ' ] = out
if err :
result [ ' stderr ' ] = err
module . exit_json ( * * result )
# import module snippets
from ansible . module_utils . basic import *
2015-06-12 20:11:38 +02:00
main ( )