Processing API requests for a Port
We will conclude this chapter with a recipe that shows you how to process API requests for a Port. In real-world applications, the Port-related operations are used more frequently when compared to a Network or Subnet. As there are different types of Ports, this recipe will show you how to identify the Port type from the API requests.
Getting ready
Ensure that your DevStack setup is up and running, with cookbook
as one of the mechanism drivers, as shown in the earlier recipe.
How to do it…
- With the appropriate credentials, SSH into your DevStack setup.
- Open
/opt/stack/neutron/neutron/plugins/ml2/drivers/ ch10_ml2_mech_driver.py
using an editor. - Add a new import statement, as highlighted in the following image:
- Update the class declaration statement to include the Port mechanism driver class, as follows:
CookbookMechanismDriver
now extends theCookbookPortMechanismDriver
,CookbookSubnetMechanismDriver
, andCookbookNetworkMechanismDriver
classes. Hence, it...