OpenStack | Ports

ports get created when we add subnets to the router, one port for each subnet #to view the list of all ports cumulus@server01:~$ openstack port list +--------------------------------------+------+-------------------+------------------------------------ ------------------------------------------+--------+ | ID | Name | MAC Address | Fixed IP Addresses | Status | +--------------------------------------+------+-------------------+------------------------------------ ------------------------------------------+--------+ | 04fa2fd3-7c55-4042-9831-b9159d3f68b6 | | fa:16:3e:46:74:c6 | ip_address='192.168.0.100', subnet_id='c679c440-8286-4eeb-8025-19e0c0895aef' | ACTIVE || … Continue reading OpenStack | Ports

OpenStack | Routers

command syntax1: openstack router <action/operation> <--flags values> <router-name> command syntax2: openstack router <action/operation> subnet <router-name> <subnet-name> #to check the list of routers cumulus@server01:~$ openstack router list #let's create a new router cumulus@server01:~$ openstack router create --project firstProject firstRouter +-------------------------+--------------------------------------+ | Field | Value | +-------------------------+--------------------------------------+ | admin_state_up | UP | | availability_zone_hints | | | … Continue reading OpenStack | Routers

OpenStack | Networks

command syntax: openstack network <action/operation> <--flags values> <network-name> action/operation: list, create, set, delete... flags: help, long, project, provider-physical-network, provider-network-type, external... #to view the list of the available networks cumulus@server01:~$ openstack network list +--------------------------------------+----------+-------------------------------------- + | ID | Name | Subnets | +--------------------------------------+----------+-------------------------------------- + | dc005f68-35c6-4151-ad18-ac21523ed4e5 | provider | c679c440-8286-4eeb-8025-19e0c0895aef | +--------------------------------------+----------+-------------------------------------- + #for a detailed … Continue reading OpenStack | Networks