Hyphen +

write neturon ml2 mechanism driver

Author:海峰 http://weibo.com/344736086

###1. 基本概念:

  1. core feature: network, subnet, port
  2. plugins feature: loadbalance, firewall, vpn, etc.
  3. ML2 core plugin: type driver, mechanism driver.
  4. ML2 type driver: vlan, vxlan, gre, etc.
  5. ML2 mechanism driver: linux bridge, openvSwitch, etc.

###2. 环境准备: devstack 开发环境搭建, local.conf 参考:

  1. [[local|localrc]]
  2. FORCE=yes
  3. ADMIN_PASSWORD=password
  4. DATABASE_PASSWORD=$ADMIN_PASSWORD
  5. RABBIT_PASSWORD=$ADMIN_PASSWORD
  6. SERVICE_PASSWORD=$ADMIN_PASSWORD
  7. SERVICE_TOKEN=$ADMIN_PASSWORD
  8. HOST_IP=192.168.56.102
  9. LIBVIRT_TYPE=qemu
  10. VIRT_DRIVER=libvirt
  11. MULTI_HOST=False
  12. DEST=/opt/stack
  13. LOGFILE=$DEST/logs/stack.sh.log
  14. SCREEN_LOGDIR=$DEST/logs/screen
  15. LOG_COLOR=False
  16. RECLONE=no
  17. VERBOSE=False
  18. disable_service n-net
  19. disable_service tempest
  20. disable_service cinder c-sch c-api c-vol
  21. disable_service heat h-api h-api-cfn h-api-cw h-eng
  22. enable_service q-agt
  23. enable_service q-dhcp
  24. enable_service q-l3
  25. enable_service q-meta
  26. enable_service q-svc
  27. # Neutron related config
  28. Q_PLUGIN=ml2
  29. Q_AGENT=openvswitch
  30. Q_ML2_PLUGIN_MECHANISM_DRIVERS=openvswitch,cookbook
  31. # VLAN Related Config
  32. ENABLE_TENANT_VLANS=TRUE
  33. TENANT_VLAN_RANGE=1000:1100
  34. PHYSICAL_NETWORK=physnet1
  35. FLAT_INTERFACE=eth0
  36. OVS_PHYSICAL_BRIDGE=br-eth0
  37. Q_ML2_TENANT_NETWORK_TYPE=vlan

###3. 创建简单的ML2 Mechanism driver, 名字叫”cookbook”: ####3.1. 在devstack安装目录下的neutron目录下: /opt/stack/neutron/neutron/plugins/ml2/drivers 创建文件 ml2_mech_driver.py 如下:

  1. # Import Neutron Database API
  2. from neutron.db import api as db
  3. try:
  4. from neutron.openstack.common import log as logger
  5. except ImportError:
  6. from oslo_log import log as logger
  7. from neutron.plugins.ml2 import driver_api as api
  8. driver_logger = logger.getLogger(__name__)
  9. class CookbookMechanismDriver(api.MechanismDriver):
  10. def initialize(self):
  11. driver_logger.info("Inside Mech Driver Initialize")

####3.2. 配置neutron server 使用上面这个ML2 mechanism driver, 编辑文件: /etc/neutron/plugins/ml2/ml2_conf.ini

  1. [ml2]
  2. tenant_network_types = vlan
  3. type_drivers = local,flat,vlan,gre,vxlan
  4. mechanism_drivers = openvswitch,cookbook

编辑入口配置文件: /opt/stack/neutron/neutron.egg-info/entry_points.txt 在 [neutron.ml2.mechanism_drivers] 配置部分, 增加一行指定cookbook 入口:

  1. [neutron.ml2.mechanism_drivers]
  2. ...
  3. neutron.plugins.ml2.drivers.ml2_mech_driver.CookbookMechanismDriver

重启neutron server, 从日志 /opt/stack/logs/q-svc.log 中可以看到我们的改动.

###4. 完善cookbook mechanism driver, 增加网络处理模块: 增加文件 /opt/stack/neutron/neutron/plugins/ml2/drivers/ml2_mech_driver_network.py 如下:

  1. try:
  2. from neutron.openstack.common import log as logger
  3. except ImportError:
  4. from oslo_log import log as logger
  5. from neutron.plugins.ml2 import driver_api as api
  6. driver_logger = logger.getLogger(__name__)
  7. class CookbookNetworkMechanismDriver(api.MechanismDriver):
  8. def _log_network_information(self, method_name, current_context, prev_context):
  9. driver_logger.info("**** %s ****" % (method_name))
  10. # Print the Network Name using the context
  11. driver_logger.info("Current Network Name: %s" % (current_context['name']))
  12. # For create operation prev_context will be None.
  13. if prev_context is not None:
  14. driver_logger.info("Previous Network Name: %s" % (prev_context['name']))
  15. # Print the Network Type
  16. driver_logger.info("Current Network Type: %s" % current_context['provider:network_type'])
  17. driver_logger.info("**** %s ****" % (method_name))
  18. def create_network_postcommit(self, context):
  19. # Extract the current and the previous network context
  20. current_network_context = context.current
  21. previous_network_context = context.original
  22. self._log_network_information("Create Network PostCommit", current_network_context, previous_network_context)
  23. def update_network_postcommit(self, context):
  24. # Extract the current and the previous network context
  25. current_network_context = context.current
  26. previous_network_context = context.original
  27. self._log_network_information("Update Network PostCommit", current_network_context, previous_network_context)

编辑/opt/stack/neutron/neutron/plugins/ml2/drivers/ml2_mech_driver.py 如下:

  1. # Import Neutron Database API
  2. from neutron.db import api as db
  3. try:
  4. from neutron.openstack.common import log as logger
  5. except ImportError:
  6. from oslo_log import log as logger
  7. from neutron.plugins.ml2 import driver_api as api
  8. import ml2_mech_driver_network as cookbook_network_driver
  9. driver_logger = logger.getLogger(__name__)
  10. class CookbookMechanismDriver(api.MechanismDriver, ml2_mech_driver_network.CookbookNetworkMechanismDriver):
  11. def initialize(self):
  12. driver_logger.info("Inside Mech Driver Initialize")

重启neutron 服务, 创建网络:

  1. $neutron net-create CookbookNetwork1

可以从日志 /opt/stack/log/q-svc.log 看到打印出来的网络信息.

###5. 完善cookbook mechanism driver, 增加子网处理模块: 增加文件 /opt/stack/neutron/neutron/plugins/ml2/drivers/ml2_mech_driver_subnet.py 如下:

  1. # Import Neutron Database API
  2. from neutron.db import api as db
  3. try:
  4. from neutron.openstack.common import log as logger
  5. except ImportError:
  6. from oslo_log import log as logger
  7. from neutron.plugins.ml2 import driver_api as api
  8. # Import ML2 Database API
  9. from neutron.plugins.ml2 import db as ml2_db
  10. driver_logger = logger.getLogger(__name__)
  11. class CookbookSubnetMechanismDriver(api.MechanismDriver):
  12. def _log_subnet_information(self, method_name, current_context, prev_context):
  13. driver_logger.info("**** %s ****" % (method_name))
  14. driver_logger.info("Current Subnet Name: %s" % (current_context['name']))
  15. driver_logger.info("Current Subnet CIDR: %s" % (current_context['cidr']))
  16. # Extract the Network ID from the Subnet Context
  17. network_id = current_context['network_id']
  18. # Get the Neutron DB Session Handle
  19. session = db.get_session()
  20. # Using ML2 DB API, fetch the Network that matches the Network ID
  21. networks = ml2_db.get_network_segments(session, network_id)
  22. driver_logger.info("Network associated to the Subnet: %s" % (networks))
  23. driver_logger.info("**** %s ****" % (method_name))
  24. def create_subnet_postcommit(self, context):
  25. # Extract the current and the previous Subnet context
  26. current_subnet_context = context.current
  27. previous_subnet_context = context.original
  28. self._log_subnet_information("Create Subnet PostCommit", current_subnet_context, previous_subnet_context)

编辑/opt/stack/neutron/neutron/plugins/ml2/drivers/ml2_mech_driver.py 如下:

  1. # Import Neutron Database API
  2. from neutron.db import api as db
  3. try:
  4. from neutron.openstack.common import log as logger
  5. except ImportError:
  6. from oslo_log import log as logger
  7. from neutron.plugins.ml2 import driver_api as api
  8. import ml2_mech_driver_network as cookbook_network_driver
  9. import ml2_mech_driver_subnet as cookbook_subnet_driver
  10. driver_logger = logger.getLogger(__name__)
  11. class CookbookMechanismDriver(api.MechanismDriver, ml2_mech_driver_network.CookbookNetworkMechanismDriver, cookbook_subnet_driver.CookbookSubnetMechanismDriver):
  12. def initialize(self):
  13. driver_logger.info("Inside Mech Driver Initialize")

重启neutron 服务, 创建子网:

  1. $eutron subnet-create --name CookbookSubnet2 CookbookNetwork2 10.0.0.0/24

可以从日志 /opt/stack/log/q-svc.log 看到打印出来的网络信息.

###6. 完善cookbook mechanism driver, 增加网络接口port处理模块: 增加文件 /opt/stack/neutron/neutron/plugins/ml2/drivers/ml2_mech_driver_port.py 如下:

  1. try:
  2. from neutron.openstack.common import log as logger
  3. except ImportError:
  4. from oslo_log import log as logger
  5. from neutron.plugins.ml2 import driver_api as api
  6. driver_logger = logger.getLogger(__name__)
  7. class CookbookPortMechanismDriver(api.MechanismDriver):
  8. def _log_port_information(self, method_name, context):
  9. driver_logger.info("**** %s ****" % (method_name))
  10. # Extract the current Port context
  11. current_port_context = context.current
  12. # Extract the associated Network Context
  13. network_context = context.network
  14. driver_logger.info("Port Type: %s" % (current_port_context['device_owner']))
  15. driver_logger.info("IP Address of the Port: %s" % ((current_port_context['fixed_ips'][0])['ip_address']))
  16. driver_logger.info("Network name for the Port: %s" % (network_context.current['name']))
  17. driver_logger.info("Network type for the Port: %s" % (network_context.current['provider:network_type']))
  18. driver_logger.info("Segmentation ID for the Port: %s" % (network_context.current['provider:segmentation_id']))
  19. driver_logger.info("**** %s ****" % (method_name))
  20. def create_port_postcommit(self, context):
  21. self._log_port_information("Create Port PostCommit", context)

编辑/opt/stack/neutron/neutron/plugins/ml2/drivers/ml2_mech_driver.py 如下:

  1. # Import Neutron Database API
  2. from neutron.db import api as db
  3. try:
  4. from neutron.openstack.common import log as logger
  5. except ImportError:
  6. from oslo_log import log as logger
  7. from neutron.plugins.ml2 import driver_api as api
  8. import ml2_mech_driver_network as cookbook_network_driver
  9. import ml2_mech_driver_port as cookbook_port_driver
  10. import ml2_mech_driver_subnet as cookbook_subnet_driver
  11. driver_logger = logger.getLogger(__name__)
  12. class CookbookMechanismDriver(api.MechanismDriver, ml2_mech_driver_network.CookbookNetworkMechanismDriver, cookbook_subnet_driver.CookbookSubnetMechanismDriver, cookbook_port_driver.CookbookPortMechanismDriver):
  13. def initialize(self):
  14. driver_logger.info("Inside Mech Driver Initialize")

重启neutron 服务, 创建一个路由, 然后连接一个子网到路由, 就会触发创建port的方法:

  1. $neutron router-create CookbookRouter
  2. $neutron router-interface-add CookbookRouter CookbookSubnet2

可以从日志 /opt/stack/log/q-svc.log 看到打印出来的网络信息. 可以看到port type 是 network:router_interface.

code from https://github.com/reachsrirams/packt-openstack-networking-cookbook

点击查看评论

Cloud

AI

Coding

Thinking