- OpenStack Networking Cookbook
- Sriram Subramanian Chandan Dutta Chowdhury
- 535字
- 2021-07-09 21:40:43
Associating a Port to an instance using OpenStack CLI
The previous recipe showed you how to create a Port using CLI. The next recipe shows you how we can use an existing Port as part of the instance creation command.
Getting ready
For this recipe, you will have to identify the Port that you want to associate with an instance. For the instance creation itself, the software image needs to be identified.
How to do it…
The next set of steps will show you how to use the Nova and Neutron CLI commands to create an instance that uses an existing Port:
- Using the appropriate credentials, SSH into the OpenStack node where the Neutron and Nova client software packages are installed.
- Source the shell RC file to initialize the environment variables required for the CLI commands as seen in the earlier recipes.
- Execute the
neutron port-list
command and identify the ID of the Port that you want to use to create an instance. Make a note of the MAC and IP addresses assigned to the Port: - The CLI command to create an instance is
nova boot
. This command supports an argument called--nic
that allows us to specify a Port ID that we want to associate with the instance:openstack@controller:~$ nova boot --flavor m1.tiny --image cirros-0.3.3-x86_64 --nic port-id=ee6f30a1-6851-435a-89cd-a8e7390325a4 CLIPortVM
- Note that the virtual machine name used in the command is
CLIPortVM
. If we execute thenova show
command now, we can see the details about the instance: - In the preceding output, you can see that the IP address of the Port created using CLI has been assigned to the instance.
- Log in to the Horizon dashboard and navigate to Network Topology, as discussed in the Viewing the details of a Network using Horizon recipe. In Network Topology, move the mouse pointer over the icon representing the instance and click on Open Console as shown here:
- In the resulting window, log in to the instance. In our example, we will be using the CirrOS default username and password for the login.
At the shell prompt of the instance, type
ifconfig eth0
. This command will show the virtual interface for this instance. The command output shows the MAC and IP addresses that are assigned to the virtual interface:
This recipe demonstrated how to associate a Port to an instance. At the end of the recipe, we can see that the MAC and IP addresses for this virtual interface (eth0
) match those of the Port that we used in the nova boot
command.
How it works…
We have seen that Neutron assigns an IP address and MAC address to a Port during their creation. When users execute the nova boot
command with the --nic
option, then Nova takes the IP and MAC addresses of the Port and uses this information to configure the virtual interface of the instance.
There's more…
This technique of creating a Port prior to the instance creation is helpful if a specific IP address needs to be assigned to an instance or virtual machine. While we will cover this in another recipe later in the book, it is important to note that this capability is not available using the Horizon dashboard.
- Java程序設(shè)計實戰(zhàn)教程
- The Android Game Developer's Handbook
- 控糖控脂健康餐
- Java高手真經(jīng)(高級編程卷):Java Web高級開發(fā)技術(shù)
- 軟件測試項目實戰(zhàn)之性能測試篇
- 數(shù)據(jù)結(jié)構(gòu)簡明教程(第2版)微課版
- HTML5 and CSS3 Transition,Transformation,and Animation
- AppInventor實踐教程:Android智能應(yīng)用開發(fā)前傳
- Spring核心技術(shù)和案例實戰(zhàn)
- MongoDB,Express,Angular,and Node.js Fundamentals
- Managing Microsoft Hybrid Clouds
- 小程序從0到1:微信全棧工程師一本通
- Magento 2 Beginners Guide
- HTML5游戲開發(fā)實戰(zhàn)
- Responsive Web Design with jQuery