SlideShare a Scribd company logo
Running OpenStack + MidoNet
Virtual Tech Japan
VirtualTech.jp
Nobuyuki Tamaoki
2015/2/16 MidoNet Community Launch Event
About me
• Consultant & Business
development @Virtual Tech Japan
• Enjoy creating business around
OpenStack
• Writer of @IT article named
“Tamaoki’s OpenStack Watch”
• Latest article at ThinkIT, “8
OpenStack distribution
comparison” will be coming very
soon
2
Introduction
OpenStack Seminar
February 18th in Shibuya
“OpenStack Provisioning Tool Battle
- HP Helion、Mirantis、Ubuntu –”
Please visit!! http://EnterpriseCloud.jp
3
Introduction
EnterpriseCloud.jp
• You can find:
– The information necessary to
start OpenStack for Enterprise
Cloud.
– Download OpenStack installation
guide
– 1,000 Download /year
– Seminar documents
– OpenStack deployment know-
how
4
Introduction
Today’s goal
• To let everyone deploy and run
OpenStack+MidoNet in smooth and simple
way
5
ABOUT ORIZURU
6
Found Orizuru at MidoNet Blog
7Reference URL: http://blog.midonet.org/test-drive-midonet/
What is Orizuru?
• Installer for OpenStack+MidoNet
• Enable to deploy all-in-one and multi-node
environments easily.
• Docker container is used inside.
https://github.com/midonet/orizuru
8
Multi-node environment example
9Reference URL: http://blog.midonet.org/test-drive-midonet/
LET’S USE ORIZURU
10
Preaparation
11
• Macbook Pro
– CPU:4 processor core
– Memory:16GB
• VMware Fusion
• Guest OS
– Ubuntu 14.04.1
– CPU: 4 processor core
– Memory: 12GB allocated
– Disk: 40GB allocated
192.168.252.14
midonet_manager
192.168.252.13
midonet_gateway
Let’s create all-in-one environment
12
midonet_api
192.168.252.11
Cassandra
192.168.252.10
midonet_cli
192.168.252.12
192.168.252.15
openstack_compute
192.168.252.16
Openstack_controller
192.168.252.17
openstack_glance
192.168.252.18
openstack_horizon
192.168.252.19
openstack_keystone
192.168.252.20
openstack_mysql
192.168.252.21
openstack_neutron
192.168.252.22
openstack_rabbitmq
zookeeper
192.168.252.23
Physical server
172.16.XX.XX
OpenStack
Compute Nodes
OpenStack
Network Nodes
OpenStack
Controller Nodes
MidoNet
Gateway Nodes
MidoNet
Controller Nodes 192.168.252.14
midonet_manager
192.168.252.13
midonet_gatewayNetwork State
Database Nodes
Components of the environment
13
midonet_api
192.168.252.11
Cassandra
192.168.252.10
midonet_cli
192.168.252.12
192.168.252.15
openstack_compute
192.168.252.16
Openstack_controller
192.168.252.17
openstack_glance
192.168.252.18
openstack_horizon
192.168.252.19
openstack_keystone
192.168.252.20
openstack_mysql
192.168.252.21
openstack_neutron
192.168.252.22
openstack_rabbitmq
zookeeper
192.168.252.23
Physical Server
172.16.XX.XX
INTALL ORIZURU
14
1. Install Ubuntu
• Install Ubuntu 14.04.1 LTS
– Choose ssh-server
• Update packages
% sudo apt-get update
% sudo apt-get upgrade
• Install packages
% sudo apt-get install git make openssh-server
15
2. Configuration to ssh login to
localhost as a root user
16
• Make sure that you can ssh root@localhost
% ssh-keygen -t rsa
% sudo su -
# mkdir .ssh
# cat /home/ubuntu/.ssh/id_rsa.pub >>
~/.ssh/authorized_keys
# chmod 600 .ssh/authorized_keys
% ssh root@localhost
3. Get Orizuru from GitHub
% git clone https://github.com/midonet/orizuru.git
17
4. Modify conf/localhost.yaml
• Modify the server IP address from the
default (127.0.0.1) to your server’s IP
address
% cd orizuru
% vi conf/localhost.yaml
18
After
servers:
os001:
ip: your server’s IP address
Before (default)
servers:
os001:
ip: 127.0.0.1
5. Run Orizuru
• Execute “make” command
% cd
% cd orizuru
% export OS_MIDOKURA_ROOT_PASSWORD=”PW"
% export CONFIGFILE="$(pwd)/conf/localhost.yaml"
% make
19
Set your own
password
6. See the result
• The installation succeeded if you see the
message below.
your system is ready.
run 'make info' to see the urls and admin password
• If not, do “make clean” and re-do “make”.
% make clean
% make
20
The errors happened during the
installation
I tried the installation more than 20 times.
Here are the examples of errors I run into:
• Cannot log in when I ssh root@localhost
• Disc capacity was not big enough
• Could not find files and/or directories in
stage5
• Failed mysql setting in stage6
• Failed zookeeper setting in stage7
• etc 21
Trouble shooting
22
• Enable debug mode in conf/localhost.yaml
debug: True
• Save the log when you run “make” command
• Wait for a while and try again
• Try in multiple environments
Ask questions at MidoNet mailing list!
midonet-user@lists.midonet.org
7. Check the configuration
• To check the setting, do “make info”
command% make info
…
Admin password: XXXXXXXXXXXXXXXX
Horizon url: http://”server’s IP address”/horizon/
…
• Save the result of “make info”.
23
Example of “make info” result
(1)
24
XXX.XXX.XXX.XX
Example of “make info” result
(2)
25
CONFIRM THE TESTING
ENVIRONMENT
26
Access OpenStack
Dashboard(Horizon)
• Access Horizon URL (see page 23 for the
URL)
27
User name:
“admin”Admin password
(See page23)
Access OpenStack
Dashboard(Horizon)
28
Check instances (1)
• Click [Project]-[Compute]-[Instance]
29
Check your
instance IP address
Check instances (2)
• Log in to the instance
% ssh cirros@200.200.200.3
cirros@200.200.200.3's password:
30
Input cubswin:)
Admin password
in page 23
Check OpenStack Controller (1)
• Log-in to OpenStack Controller node
% ssh root@192.168.252.16
• Create admin_openrc
root@openstack_controller_os001:~# vi admin_openrc
export OS_USERNAME=admin
export OS_PASSWORD=9572b2b1a67d4aa2ff0c
export OS_TENANT_NAME=admin
export OS_AUTH_URL=http://192.168.252.19:35357/v2.0
31
How to find OS_AUTH_URL
• OS_AUTH_URL will be used when you
access keystone node
• http://[keystone URL]:[keystone port
#]/v2.0
• Search the log from “make” command(page
19)の make
% cat make_log | grep OS_AUTH_URL
• Test
% curl http://192.168.252.19:35357/v2.032
Check OpenStack Controller (2)
• Load admin_openrc
root@openstack_controller_os001:~# . admin_openrc
33
Tips: Check the log of Orizuru
environment
• Show syslog in
% tail –f /var/log/syslog
34
Tips: Check the server status
% dstat -tcdn --top-io --top-cpu -- output log.csv
35
Check OpenStack Controller (3)
root@openstack_controller_os001:~# keystone token-get
36
Check OpenStack Controller (4)
root@openstack_controller_os001:~# neutron agent-list
root@openstack_controller_os001:~# neutron net-list
root@openstack_controller_os001:~# neutron subnet-list
37
Check MidoNet CLI (1)
• Log in to MidoNet CLI node
% ssh root@192.168.252.12
• MidoNet CLI command
root@midonet_cli_os001:~# midonet-cli
midonet>
38
Check MidoNet CLI (2)
midonet> list bridge
midonet> list router
midonet> list router router0 port
midonet> list router router0 route
39
My next agenda
• Learn MidoNet trouble-shooting
• Practice and master MidoNet CLI
• Run MidoNet in multi-node environment
40

More Related Content

PPTX
Running OpenStack + MidoNet (Using Orizuru)
PPT
How To Deploy A Cloud Based Webserver in 5 minutes - LAMP
PDF
Account creation lab guide
PPTX
Aegir presentation
PDF
Step by-step installation of a secure linux web dns- and mail server
PDF
OpenStack Deployment with Chef Workshop
DOCX
Oracle WebLogic
ODP
Deploy Mediawiki Using FIWARE Lab Facilities
Running OpenStack + MidoNet (Using Orizuru)
How To Deploy A Cloud Based Webserver in 5 minutes - LAMP
Account creation lab guide
Aegir presentation
Step by-step installation of a secure linux web dns- and mail server
OpenStack Deployment with Chef Workshop
Oracle WebLogic
Deploy Mediawiki Using FIWARE Lab Facilities

What's hot (20)

PPTX
How to deploy spark instance using ansible 2.0 in fiware lab v2
PDF
PPTX
PowerCLI for the PowerShell Inclined
PDF
Rdo mitaka
PDF
Deploying OpenStack with Chef
PPT
Codership's galera cluster installation and quickstart webinar march 2016
PDF
Sitecore Docker XM&XP 9.2.0/9.3.0 SXA+JSS+PS
PPTX
L5 swagger
PDF
2018년 3월 정기 세미나 - March 2018 Ops Meetup 후기
PDF
Chef for OpenStack: Grizzly Roadmap
PDF
Simple flexible deployments with openstack ansible
PPTX
Cloudera amazon-ec2
PDF
Kotlinのcoroutine、async/awaitと同じでしょ?って思ってたけど意外と洗練されててすごいなぁって思った話をさせてほしい
PDF
Exploring, understanding and monitoring macOS activity with osquery
PPTX
How to Install Odoo 11 on Ubuntu 16.04?
PDF
Forensic Challenge 10 - FC5 Attack Dataset Visualization
PDF
CloudInit Introduction
PDF
SoftLayer-demoLabV3
PDF
Using OpenStack With Fog
How to deploy spark instance using ansible 2.0 in fiware lab v2
PowerCLI for the PowerShell Inclined
Rdo mitaka
Deploying OpenStack with Chef
Codership's galera cluster installation and quickstart webinar march 2016
Sitecore Docker XM&XP 9.2.0/9.3.0 SXA+JSS+PS
L5 swagger
2018년 3월 정기 세미나 - March 2018 Ops Meetup 후기
Chef for OpenStack: Grizzly Roadmap
Simple flexible deployments with openstack ansible
Cloudera amazon-ec2
Kotlinのcoroutine、async/awaitと同じでしょ?って思ってたけど意外と洗練されててすごいなぁって思った話をさせてほしい
Exploring, understanding and monitoring macOS activity with osquery
How to Install Odoo 11 on Ubuntu 16.04?
Forensic Challenge 10 - FC5 Attack Dataset Visualization
CloudInit Introduction
SoftLayer-demoLabV3
Using OpenStack With Fog
Ad

Viewers also liked (20)

PDF
MidoNet 101: Face to Face with the Distributed SDN
PPTX
Distributed Clouds and Software Defined Networking
ODP
Circulatorio y excretor1
PDF
Xmedia solutions profile
PDF
Invention Patent Search| Indian patent office publishes indian patent journal...
PDF
Catálogo de partes a la venta para autos clásicos.
PPTX
New Age Advertising: How to Succeed In The World of Paid Content
PDF
How to Fight Lecturalgia
PDF
Collaborative Knowledge Base
PPTX
El aborto
PDF
1innovaciones
PPTX
101019 Da1 Netop Live Guide
PDF
81 2015 manuale-attività fisiche luoghi di lavoro
PDF
Clasificados para la Semana Jurado Internacional COE HONDURAS 2015
PDF
PTFE Stem Packing
PPTX
RADIOSURGERY
PDF
Ahoja kairos
PDF
Un taller práctica de Innovación colectiva
MidoNet 101: Face to Face with the Distributed SDN
Distributed Clouds and Software Defined Networking
Circulatorio y excretor1
Xmedia solutions profile
Invention Patent Search| Indian patent office publishes indian patent journal...
Catálogo de partes a la venta para autos clásicos.
New Age Advertising: How to Succeed In The World of Paid Content
How to Fight Lecturalgia
Collaborative Knowledge Base
El aborto
1innovaciones
101019 Da1 Netop Live Guide
81 2015 manuale-attività fisiche luoghi di lavoro
Clasificados para la Semana Jurado Internacional COE HONDURAS 2015
PTFE Stem Packing
RADIOSURGERY
Ahoja kairos
Un taller práctica de Innovación colectiva
Ad

Similar to Running OpenStack and Midonet - Nobuyuki Tamaoki, Virtual Tech Japan (20)

PDF
Minimal OpenStack LinuxCon NA 2015
PPTX
Couch to OpenStack: Glance - July, 23, 2013
PPT
openstack-session.ppt
PDF
Openstack trystack
DOCX
Openstack training material
PPTX
Survey of open source cloud architectures
PPTX
Getting started with open stack
PDF
OpenStack in 10 minutes with Devstack
PPTX
Openstack in 10 mins
PPTX
Openstack
PDF
Openstack In Action 1st Edition V K Cody Bumgardner
PDF
Vancouver presentation
PPTX
OpenStack hands-on (All-in-One)
PDF
"OpenStack — more than just software". Tom Fifield, OpenStack
PDF
Open stack pike-devstack-tutorial
PDF
All about open stack
PPTX
Openstack Icehouse IaaS Presentation
PDF
How to master OpenStack in 2 hours
PDF
Introduction to OpenStack : Barcamp Bangkhen 2016
PDF
Build cloud like Rackspace with OpenStack Ansible
Minimal OpenStack LinuxCon NA 2015
Couch to OpenStack: Glance - July, 23, 2013
openstack-session.ppt
Openstack trystack
Openstack training material
Survey of open source cloud architectures
Getting started with open stack
OpenStack in 10 minutes with Devstack
Openstack in 10 mins
Openstack
Openstack In Action 1st Edition V K Cody Bumgardner
Vancouver presentation
OpenStack hands-on (All-in-One)
"OpenStack — more than just software". Tom Fifield, OpenStack
Open stack pike-devstack-tutorial
All about open stack
Openstack Icehouse IaaS Presentation
How to master OpenStack in 2 hours
Introduction to OpenStack : Barcamp Bangkhen 2016
Build cloud like Rackspace with OpenStack Ansible

More from MidoNet (11)

PDF
Our Journey to OpenStack with MidoNet
PDF
Technical Deep Dive into MidoNet
PDF
Operations Experience
PDF
Walk Through a Software Defined Everything PoC
PDF
Testing MidoNet
PDF
MidoNet Vision & Roadmap
PDF
MidoNet Community Web Resources
PDF
Container Orchestration Integration: OpenStack Kuryr & Apache Mesos
PDF
A Brief History of MidoNet
PDF
Technical Deep Dive into MidoNet - Taku Fukushima, Developer at Midokura
PDF
Technical introduction to MidoNet
Our Journey to OpenStack with MidoNet
Technical Deep Dive into MidoNet
Operations Experience
Walk Through a Software Defined Everything PoC
Testing MidoNet
MidoNet Vision & Roadmap
MidoNet Community Web Resources
Container Orchestration Integration: OpenStack Kuryr & Apache Mesos
A Brief History of MidoNet
Technical Deep Dive into MidoNet - Taku Fukushima, Developer at Midokura
Technical introduction to MidoNet

Recently uploaded (20)

PPTX
Chapter 5: Probability Theory and Statistics
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PPTX
cloud_computing_Infrastucture_as_cloud_p
PDF
2021 HotChips TSMC Packaging Technologies for Chiplets and 3D_0819 publish_pu...
PDF
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PDF
Getting Started with Data Integration: FME Form 101
PDF
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
PDF
Getting started with AI Agents and Multi-Agent Systems
PDF
A novel scalable deep ensemble learning framework for big data classification...
PPT
What is a Computer? Input Devices /output devices
PPTX
O2C Customer Invoices to Receipt V15A.pptx
PDF
DP Operators-handbook-extract for the Mautical Institute
PPTX
TLE Review Electricity (Electricity).pptx
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
A contest of sentiment analysis: k-nearest neighbor versus neural network
PPTX
1. Introduction to Computer Programming.pptx
Chapter 5: Probability Theory and Statistics
Assigned Numbers - 2025 - Bluetooth® Document
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
cloud_computing_Infrastucture_as_cloud_p
2021 HotChips TSMC Packaging Technologies for Chiplets and 3D_0819 publish_pu...
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
Final SEM Unit 1 for mit wpu at pune .pptx
Group 1 Presentation -Planning and Decision Making .pptx
Getting Started with Data Integration: FME Form 101
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
Getting started with AI Agents and Multi-Agent Systems
A novel scalable deep ensemble learning framework for big data classification...
What is a Computer? Input Devices /output devices
O2C Customer Invoices to Receipt V15A.pptx
DP Operators-handbook-extract for the Mautical Institute
TLE Review Electricity (Electricity).pptx
NewMind AI Weekly Chronicles - August'25-Week II
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
A contest of sentiment analysis: k-nearest neighbor versus neural network
1. Introduction to Computer Programming.pptx

Running OpenStack and Midonet - Nobuyuki Tamaoki, Virtual Tech Japan

  • 1. Running OpenStack + MidoNet Virtual Tech Japan VirtualTech.jp Nobuyuki Tamaoki 2015/2/16 MidoNet Community Launch Event
  • 2. About me • Consultant & Business development @Virtual Tech Japan • Enjoy creating business around OpenStack • Writer of @IT article named “Tamaoki’s OpenStack Watch” • Latest article at ThinkIT, “8 OpenStack distribution comparison” will be coming very soon 2 Introduction
  • 3. OpenStack Seminar February 18th in Shibuya “OpenStack Provisioning Tool Battle - HP Helion、Mirantis、Ubuntu –” Please visit!! http://EnterpriseCloud.jp 3 Introduction
  • 4. EnterpriseCloud.jp • You can find: – The information necessary to start OpenStack for Enterprise Cloud. – Download OpenStack installation guide – 1,000 Download /year – Seminar documents – OpenStack deployment know- how 4 Introduction
  • 5. Today’s goal • To let everyone deploy and run OpenStack+MidoNet in smooth and simple way 5
  • 7. Found Orizuru at MidoNet Blog 7Reference URL: http://blog.midonet.org/test-drive-midonet/
  • 8. What is Orizuru? • Installer for OpenStack+MidoNet • Enable to deploy all-in-one and multi-node environments easily. • Docker container is used inside. https://github.com/midonet/orizuru 8
  • 9. Multi-node environment example 9Reference URL: http://blog.midonet.org/test-drive-midonet/
  • 11. Preaparation 11 • Macbook Pro – CPU:4 processor core – Memory:16GB • VMware Fusion • Guest OS – Ubuntu 14.04.1 – CPU: 4 processor core – Memory: 12GB allocated – Disk: 40GB allocated
  • 12. 192.168.252.14 midonet_manager 192.168.252.13 midonet_gateway Let’s create all-in-one environment 12 midonet_api 192.168.252.11 Cassandra 192.168.252.10 midonet_cli 192.168.252.12 192.168.252.15 openstack_compute 192.168.252.16 Openstack_controller 192.168.252.17 openstack_glance 192.168.252.18 openstack_horizon 192.168.252.19 openstack_keystone 192.168.252.20 openstack_mysql 192.168.252.21 openstack_neutron 192.168.252.22 openstack_rabbitmq zookeeper 192.168.252.23 Physical server 172.16.XX.XX
  • 13. OpenStack Compute Nodes OpenStack Network Nodes OpenStack Controller Nodes MidoNet Gateway Nodes MidoNet Controller Nodes 192.168.252.14 midonet_manager 192.168.252.13 midonet_gatewayNetwork State Database Nodes Components of the environment 13 midonet_api 192.168.252.11 Cassandra 192.168.252.10 midonet_cli 192.168.252.12 192.168.252.15 openstack_compute 192.168.252.16 Openstack_controller 192.168.252.17 openstack_glance 192.168.252.18 openstack_horizon 192.168.252.19 openstack_keystone 192.168.252.20 openstack_mysql 192.168.252.21 openstack_neutron 192.168.252.22 openstack_rabbitmq zookeeper 192.168.252.23 Physical Server 172.16.XX.XX
  • 15. 1. Install Ubuntu • Install Ubuntu 14.04.1 LTS – Choose ssh-server • Update packages % sudo apt-get update % sudo apt-get upgrade • Install packages % sudo apt-get install git make openssh-server 15
  • 16. 2. Configuration to ssh login to localhost as a root user 16 • Make sure that you can ssh root@localhost % ssh-keygen -t rsa % sudo su - # mkdir .ssh # cat /home/ubuntu/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys # chmod 600 .ssh/authorized_keys % ssh root@localhost
  • 17. 3. Get Orizuru from GitHub % git clone https://github.com/midonet/orizuru.git 17
  • 18. 4. Modify conf/localhost.yaml • Modify the server IP address from the default (127.0.0.1) to your server’s IP address % cd orizuru % vi conf/localhost.yaml 18 After servers: os001: ip: your server’s IP address Before (default) servers: os001: ip: 127.0.0.1
  • 19. 5. Run Orizuru • Execute “make” command % cd % cd orizuru % export OS_MIDOKURA_ROOT_PASSWORD=”PW" % export CONFIGFILE="$(pwd)/conf/localhost.yaml" % make 19 Set your own password
  • 20. 6. See the result • The installation succeeded if you see the message below. your system is ready. run 'make info' to see the urls and admin password • If not, do “make clean” and re-do “make”. % make clean % make 20
  • 21. The errors happened during the installation I tried the installation more than 20 times. Here are the examples of errors I run into: • Cannot log in when I ssh root@localhost • Disc capacity was not big enough • Could not find files and/or directories in stage5 • Failed mysql setting in stage6 • Failed zookeeper setting in stage7 • etc 21
  • 22. Trouble shooting 22 • Enable debug mode in conf/localhost.yaml debug: True • Save the log when you run “make” command • Wait for a while and try again • Try in multiple environments Ask questions at MidoNet mailing list! midonet-user@lists.midonet.org
  • 23. 7. Check the configuration • To check the setting, do “make info” command% make info … Admin password: XXXXXXXXXXXXXXXX Horizon url: http://”server’s IP address”/horizon/ … • Save the result of “make info”. 23
  • 24. Example of “make info” result (1) 24 XXX.XXX.XXX.XX
  • 25. Example of “make info” result (2) 25
  • 27. Access OpenStack Dashboard(Horizon) • Access Horizon URL (see page 23 for the URL) 27 User name: “admin”Admin password (See page23)
  • 29. Check instances (1) • Click [Project]-[Compute]-[Instance] 29 Check your instance IP address
  • 30. Check instances (2) • Log in to the instance % ssh cirros@200.200.200.3 cirros@200.200.200.3's password: 30 Input cubswin:)
  • 31. Admin password in page 23 Check OpenStack Controller (1) • Log-in to OpenStack Controller node % ssh root@192.168.252.16 • Create admin_openrc root@openstack_controller_os001:~# vi admin_openrc export OS_USERNAME=admin export OS_PASSWORD=9572b2b1a67d4aa2ff0c export OS_TENANT_NAME=admin export OS_AUTH_URL=http://192.168.252.19:35357/v2.0 31
  • 32. How to find OS_AUTH_URL • OS_AUTH_URL will be used when you access keystone node • http://[keystone URL]:[keystone port #]/v2.0 • Search the log from “make” command(page 19)の make % cat make_log | grep OS_AUTH_URL • Test % curl http://192.168.252.19:35357/v2.032
  • 33. Check OpenStack Controller (2) • Load admin_openrc root@openstack_controller_os001:~# . admin_openrc 33
  • 34. Tips: Check the log of Orizuru environment • Show syslog in % tail –f /var/log/syslog 34
  • 35. Tips: Check the server status % dstat -tcdn --top-io --top-cpu -- output log.csv 35
  • 36. Check OpenStack Controller (3) root@openstack_controller_os001:~# keystone token-get 36
  • 37. Check OpenStack Controller (4) root@openstack_controller_os001:~# neutron agent-list root@openstack_controller_os001:~# neutron net-list root@openstack_controller_os001:~# neutron subnet-list 37
  • 38. Check MidoNet CLI (1) • Log in to MidoNet CLI node % ssh root@192.168.252.12 • MidoNet CLI command root@midonet_cli_os001:~# midonet-cli midonet> 38
  • 39. Check MidoNet CLI (2) midonet> list bridge midonet> list router midonet> list router router0 port midonet> list router router0 route 39
  • 40. My next agenda • Learn MidoNet trouble-shooting • Practice and master MidoNet CLI • Run MidoNet in multi-node environment 40