Openvim controller dhcp server over a ovs vxlan mesh

	- Base on dnsmasq per openvim net
	- Live in a namesapce and using veth pair
	- Support CIDR

Change-Id: Ie152ac73804719ed769f24cc8dc8c1be1421e570
Signed-off-by: Mirabal <leonardo.mirabal@altran.com>
diff --git a/openvimd.py b/openvimd.py
index eb6c2f0..c1a57d9 100755
--- a/openvimd.py
+++ b/openvimd.py
@@ -71,6 +71,8 @@
                      'log_level_of': 'ERROR',
                      'bridge_ifaces': {},
                      'network_type': 'ovs',
+                     'ovs_controller_user': 'osm_dhcp',
+                     'ovs_controller_file_path': '/var/lib/',
             }
     try:
         #First load configuration from configuration file
@@ -220,7 +222,7 @@
                 ( 'development_bridge' not in config_dic or config_dic['development_bridge'] not in config_dic.get("bridge_ifaces",None) ):
             logger.error("'%s' is not a valid 'development_bridge', not one of the 'bridge_ifaces'", config_file)
             exit(-1)
-            
+
         if config_dic['mode'] != 'normal':
             print '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
             print "!! Warning, openvimd in TEST mode '%s'" % config_dic['mode']