Openstack with LISP-enabled OpenVSwitch
From DocWiki
This wiki describes all the steps necessary to setup a testbed of Openstack Folsom nodes (All-in-one node and Compute nodes), which rely on a LISP-enabled OpenVSwitch (OVS) bridge.
cisco ("public") Network
----+----------------------+-----
| |
+--------+--------+ +-------+--------+
| All-In-One Node | | Compute Node |
| | | |
| | | |
| Nova | | Nova -agent |
| Keystone | | Nova-compute |
| Glance | | Nova-Network |
| Nova-Network | +----------------+
| Cinder |
| Horizon |
+-----------------+
Contents |
Testbed Setup
Dependencies
The Openstack nodes are considered hereafter to be <a href="http://releases.ubuntu.com/precise/">Ubuntu 12.04.1 LTS (Precise Pangolin)</a> machines (running the 3.2.0-29 kernel version). The following dependencies need to be met.
sudo apt-get update sudo apt-get upgrade (NOT dist-upgrade) sudo apt-get install openssh-server vim git openssh-server bridge-utils build-essential git-core libssl-dev libconfuse-dev pkg-config autoconf libtool pkg-config gengetopt \ clang mosh cscope vim-gtk htop subversion tmux iotop dpatch automake1.9 python-support uml-utilities farpd sudo apt-get install linux-headers-3.2.0-29-generic # For KVM sudo apt-get install qemu-kvm libvirt-bin ubuntu-vm-builder bridge-utils virt-manager virtinst
In case you wish to also use Wireshark (with LISP dissector included):
$ sudo apt-get build-dep wireshark $ sudo apt-get install autoconf bison flex libtool libgtk2.0-dev libpcap-dev libc-ares-dev libsmi2-dev libgnutls-dev libgcrypt11-dev libkrb5-dev libcap2-bin libgeoip-dev libortp-dev libportaudio-dev $ mkdir ~/Downloads; cd ~/Downloads; wget http://wiresharkdownloads.riverbed.com/wireshark/src/wireshark-1.8.3.tar.bz2 $ tar -xvf wireshark-1.8.3.tar.bz2 -C /tmp $ cd /tmp/wireshark-1.8.3/ $ ./autogen.sh $ ./configure --enable-setcap-install $ make $ sudo make install $ sudo ldconfig $ wireshark &
Although this is simply a recommendation, the testbed has been successfully run with the following memory settings:
- 1.8GB for the All-In-One Node
- 1.2GB for the Compute Node
Network
Public + Management Network
--+--------------------------+-----
| |
| |
10.10.10.10 10.10.11.10
| |
+------|-------------+ +--------|-------+
| (eth0) | | (eth0) |
| | | | | |
| | | | | |
| [ br-lisp ] | | [br-lisp] |
| | | | | | |
| (vnet0) (vnet1) | | (vnet0) |
| | | | | | |
| VM VM | | VM |
| 192.168. 192.168. | | 192.168. |
| 127.2 127.4 | | 127.3 |
+--------------------+ +----------------+
All-In-One Node Compute Node
[] OVS-LISP bridge
() Network interface
If instead of physical machines you plan on setting this testbed up with VMware Fusion, make sure the network is configured as Bridged (Ethernet).
Map Server (MS)
Just to get an idea of how the EID addresses are supposed to be associated with their corresponding RLOCs, you can have a look at the following MS configuration, which makes static assignments.
Under regular LISP operation you will not have to impose the following configuration. Rather, it is formed automatically and dynamically.
<?xml version="1.0" encoding="ISO-8859-1"?>
<db>
<eid prefix="0.0.0.0/3" act="2" ttl="5" />
<eid prefix="128.0.0.0/8" act="2" ttl="5" />
<eid prefix="171.0.0.0/8" act="2" ttl="5" />
<eid prefix="224.0.0.0/4" act="2" ttl="5" />
<eid prefix="192.168.127.3/32" ttl="1440" A="true">
<rloc>
<address>10.10.10.10</address>
<priority>1</priority>
<weight>100</weight>
<m_priority>255</m_priority>
<m_weight>0</m_weight>
<reachable>true</reachable>
</rloc>
</eid>
<eid prefix="192.168.127.4/32" ttl="1440" A="true">
<rloc>
<address>10.10.11.10</address>
<priority>1</priority>
<weight>100</weight>
<m_priority>255</m_priority>
<m_weight>0</m_weight>
<reachable>true</reachable>
</rloc>
</eid>
</db>
Installing the LISP-enabled OVS bridge
On both machines do the following. First download the corresponding code:
cd /home/user/ git clone https://
First install lispmob:
cd /home/user/lispmob-ovs/ make sudo make install sudo depmod -a
Afterward install the modified LISP-enabled OpenVswitch:
cd /home/user/ovs-lisp/ ./boot.sh ./configure --with-linux=/lib/modules/`uname -r`/build make
cp /home/user/lispmob-ovs/lisp_mod/Module.symvers /home/user/ovs-lisp/datapath/linux/ sudo vi /home/user/ovs-lisp/datapath/linux/Makefile.main.in
...and remove 'Module.symvers' from the 'clean' target (on line 33)
sudo reboot
Then, you will need to REMAKE and REINSTALL lisp
cd /home/lakafosi/lispmob-ovs make sudo make install sudo depmod -a cd /home/lakafosi/ovs-lisp/ make sudo make install sudo depmod -a sudo dmesg -c
In order to bring up the OVS bridge:
sudo /home/user/ovs-scripts/ovs-start
which includes:
#!/bin/bash
BUILD_DIR=/home/lakafosi/ovs-lisp
OVS_PATH=/usr/local
rmmod -s openvswitch
modprobe lisp
insmod ${BUILD_DIR}/datapath/linux/openvswitch.ko
mkdir -p ${OVS_PATH}/etc/openvswitch
rm ${OVS_PATH}/etc/openvswitch/conf.db
ovsdb-tool create /usr/local/etc/openvswitch/conf.db /home/lakafosi/ovs-lisp/vswitchd/vswitch.ovsschema
${OVS_PATH}/sbin/ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock \
--remote=db:Open_vSwitch,manager_options \
--private-key=db:SSL,private_key \
--certificate=db:SSL,certificate \
--bootstrap-ca-cert=db:SSL,ca_cert \
--pidfile --detach
${OVS_PATH}/bin/ovs-vsctl --no-wait init
${OVS_PATH}/sbin/ovs-vswitchd --pidfile --detach
ps -ea | grep ovs; ps -ea | grep lisp; lsmod | grep lisp; lsmod | grep ovs
You can verify everything is setup correctly by issuing:
ps -ea | grep ovs; ps -ea | grep lisp; lsmod | grep lisp; lsmod | grep ovs
which should yield an output similar to the following:
1404 ? 00:00:00 ovs_workq 1406 ? 00:00:00 ovsdb-server 1409 ? 00:00:00 ovs-vswitchd 1410 ? 00:00:00 ovs-vswitchd lisp 41286 1 openvswitch
Openstack
First create the stack user in order to install and run Openstack without any passwords requested.
su - useradd -U -G sudo -s /bin/bash -m stack; echo "stack ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers su stack cd
This Openstack installation is based on <a href="http://devstack.org/">Devstack</a>.
It is important you stick with the stable Folsom version:
git clone -b stable/folsom https://github.com/openstack-dev/devstack.git
Alternatively,
git clone -b stable/folsom git://git.cisco.com/lakafosi/devstack.git
Additionally, you will have to download one more script for setting up the OVS-bridge and attaching the vnetX ports of the instantiated VMs, the lispd.conf control plane configuration file of LISP and a few cloud qcow2 (Ubuntu and Fedora) images (to use in addition to the preloaded tiny <a href="https://launchpad.net/cirros/+download">CirrOS cloud guest</a>).
mkdir /home/stack/Downloads mv /* /home/stack/devstack/Downloads/* /home/stack/Downloads
All-In-One Openstack Node
localrc
Located in /home/stack/devstack/
#HOST_NAME=$(hostname) #SERVICE_HOST_NAME=lakafosi-server-1 SERVICE_HOST=10.10.10.10 HOST_IP=10.10.10.10 FIXED_RANGE=192.168.127.0/24 MULTI_HOST=True SCHEDULER=nova.scheduler.simple.SimpleScheduler Q_HOST=$SERVICE_HOST MYSQL_HOST=$SERVICE_HOST RABBIT_HOST=$SERVICE_HOST GLANCE_HOSTPORT=$SERVICE_HOST:9292 KEYSTONE_AUTH_HOST=$SERVICE_HOST KEYSTONE_SERVICE_HOST=$SERVICE_HOST CINDER_BRANCH=stable/folsom NOVA_BRANCH=stable/folsom SWIFT_BRANCH=stable/folsom GLANCE_BRANCH=stable/folsom KEYSTONE_BRANCH=stable/folsom HORIZON_BRANCH=stable/folsom #QUANTUM_BRANCH=stable/folsom # password MYSQL_PASSWORD=mysql RABBIT_PASSWORD=rabbit SERVICE_TOKEN=service SERVICE_PASSWORD=admin ADMIN_PASSWORD=admin # Uncomment the following line to save time by skipping checking of packages that need to be installed #OFFLINE=True
local.sh
This is the script run right after stack.sh, i.e. the Openstack installation. It is located in /home/stack/devstack/ .
#!/usr/bin/env bash
# Sample ``local.sh`` for user-configurable tasks to run automatically
# at the sucessful conclusion of ``stack.sh``.
# Keep track of the devstack directory
TOP_DIR=$(cd $(dirname "$0") && pwd)
# Import common functions
source $TOP_DIR/functions
# Use openrc + stackrc + localrc for settings
source $TOP_DIR/stackrc
# Destination path for installation ``DEST``
DEST=${DEST:-/opt/stack}
# lakafosi
for i in `seq 2 5`; do /opt/stack/nova/bin/nova-manage fixed reserve 192.168.127.$i; done
# Get OpenStack admin auth
source $TOP_DIR/openrc admin admin
# nova-manage instance_type create m1.cirrOS 256 1 0 0 0 0
glance add name=cirros-0.3.0-x86_64 disk_format=qcow2 container_format=bare < ~/Downloads/cirros-0.3.0-x86_64-disk.img
glance add name=Ubuntu-12.04 is_public=true container_format=ovf disk_format=qcow2 < ~/Downloads/precise-server-cloudimg-amd64-disk1.img
glance add name=f16-jeos is_public=true disk_format=qcow2 container_format=bare < ~/Downloads/f16-x86_64-openstack-sda.qcow2
# nova-manage floating create --ip_range=192.168.127.6/31
# Get OpenStack demo auth
source $TOP_DIR/openrc demo demo
glance add name=cirros-0.3.0-x86_64 disk_format=qcow2 container_format=bare < ~/Downloads/cirros-0.3.0-x86_64-disk.img
glance add name=Ubuntu-12.04 is_public=true container_format=ovf disk_format=qcow2 < ~/Downloads/precise-server-cloudimg-amd64-disk1.img
glance add name=f16-jeos is_public=true disk_format=qcow2 container_format=bare < ~/Downloads/f16-x86_64-openstack-sda.qcow2
# Import keys from the current user into the default OpenStack user (usually
# ``demo``)
# Get OpenStack auth
source $TOP_DIR/openrc
# Add first keypair found in localhost:$HOME/.ssh
for i in $HOME/.ssh/id_rsa.pub $HOME/.ssh/id_dsa.pub; do
if [[ -r $i ]]; then
nova keypair-add --pub_key=$i `hostname`
break
fi
done
# Create my Flavor
# ---------------
# Get OpenStack admin auth
source $TOP_DIR/openrc admin admin
# Name of new flavor
# set in ``localrc`` with ``DEFAULT_INSTANCE_TYPE=m1.micro``
MI_NAME=m1.cirrOS
# Create micro flavor if not present
if [[ -z $(nova flavor-list | grep $MI_NAME) ]]; then
nova-manage instance_type create m1.cirrOS 256 1 0 0 0 0
# nova flavor-create $MI_NAME 6 128 0 1
fi
# Other Uses
# ----------
# Add tcp/22 and icmp to default security group
nova secgroup-add-rule default tcp 22 22 0.0.0.0/0
nova secgroup-add-rule default icmp -1 -1 0.0.0.0/0
lispd.conf
LISP is run with
sudo lispd -f /etc/lispd.conf
Its configuration file is located in /etc/ and contains:
# lispd example config file
debug = on
map-request-retries = 2 # send 2 before giving up
# Encapsulated Map-Requests are sent to this map resolver
map-resolver = 10.32.164.141
# Register to this map server
map-server {
address = 10.32.164.141
key-type = 1 # SHA1
key = foo%bar
verify = off # on --> lig(self)
proxy-reply = on # ask ms to proxy reply
}
# Encapsulate packets for non-LISP sites to this Proxy-ETR
proxy-etr {
address = 149.20.48.60
priority = 1
weight = 100
}
# IPv4 EID of the mobile node
database-mapping {
eid-prefix = 192.168.127.3/32 # for Openstack AllInOne Node
# iid = 0
interface = br-lisp
priority = 1
weight = 100
}
# List of PITRs to SMR on handover
proxy-itrs = {
69.31.31.98, # eqx-ash-pxtr
149.20.48.60, # isc-pxtr
198.6.255.37, # asp-pxtr
129.250.1.63, # ntt-amer-pxtr
217.8.98.33, # intouch-pxtr-1
217.8.98.35, # intouch-pxtr-2
193.162.145.46, # tdc-pxtr
158.38.1.92, # uninett-pxtr
203.181.249.172 # apan-pxtr
}
Bringing up a guest VM
ovs-lisp-openstask-scenario.sh
su - vi /home/stack/Downloads/ovs-lisp-openstask-scenario.sh
#!/bin/bash
echo "=== lakafosi: Stopping firewall and allowing everyone... ==="
iptables -F
iptables -X
iptables -t nat -F
iptables -t nat -X
iptables -t mangle -F
iptables -t mangle -X
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
echo "=== lakafosi: Fixing the bridges... ==="
VM_mac=fa:16:$(ifconfig vnet0 | grep HWaddr | awk '{print $5}'i | awk '{print substr($0,7)}')
#Alternatively:
#VM_mac=$(brctl showmacs br100 | grep fa:16: |awk '{print $2}'i)
echo "MAC address of guest VM: $VM_mac"
brctl delif br100 vnet0
brctl delif br100 eth0
#ifconfig br100 0.0.0.0
#ifconfig br100 0.0.0.0
#ifconfig br100 192.168.127.1 netmask 255.255.255.0
ifconfig br100 down
brctl delbr br100
ovs-vsctl -- --if-exists del-br br-lisp
ovs-vsctl add-br br-lisp
ovs-vsctl add-port br-lisp vnet0
#AllInOne
ovs-vsctl add-port br-lisp lisp0 -- set Interface lisp0 type=lisp options:remote_ip=10.10.11.10
ovs-vsctl add-port br-lisp eth0
ovs-ofctl del-flows br-lisp
ovs-ofctl add-flow br-lisp priority=3,dl_dst=00:11:22:ee:ee:ee,action=mod_dl_dst:$VM_mac,NORMAL
ovs-ofctl add-flow br-lisp priority=2,in_port=1,dl_type=0x0806,action=NORMAL
ovs-ofctl add-flow br-lisp priority=1,in_port=1,dl_type=0x0800,vlan_tci=0,nw_src=192.168.127.0/24,action=output:2
ovs-ofctl add-flow br-lisp priority=0,action=NORMAL
ifconfig vnet0 up
ifconfig eth0 0.0.0.0
#AllInOne
ifconfig br-lisp 10.10.10.10 netmask 255.255.255.192
route add default gw 10.10.1.1
killall farpd
farpd -i br-lisp 192.168.127.0/24
echo "=== lakafosi: Bridge Status: ==="
brctl show
ovs-vsctl show
ovs-appctl fdb/show br-lisp
ovs-dpctl show
ovs-ofctl dump-flows br-lisp
echo "=== lakafosi: Go and START lisp...! ==="
#echo "lakafosi: Starting lisp..."
#lispd -f /etc/lispd.conf &
echo "=== lakafosi: lisp status: ==="
ps -ea | grep lisp; lsmod | grep lisp
To run it:
chmod +x /home/stack/Downloads/ovs-lisp-openstask-scenario.sh /home/stack/Downloads/ovs-lisp-openstask-scenario.sh
Compute Openstack Node
localrc
Located in /home/stack/devstack/
#SERVICE_HOST_NAME=lakafosi-server-1 SERVICE_HOST=10.10.10.10 HOST_IP=10.10.11.10 MULTI_HOST=True #FIXED_RANGE=192.168.127.0/24 # compute node ENABLED_SERVICES=n-cpu,n-net,n-api,n-vol,rabbit #disable_all_services #enable_service rabbit n-cpu quantum q-agt n-vol n-api Q_HOST=$SERVICE_HOST MYSQL_HOST=$SERVICE_HOST RABBIT_HOST=$SERVICE_HOST GLANCE_HOSTPORT=$SERVICE_HOST:9292 KEYSTONE_AUTH_HOST=$SERVICE_HOST KEYSTONE_SERVICE_HOST=$SERVICE_HOST CINDER_BRANCH=stable/folsom NOVA_BRANCH=stable/folsom SWIFT_BRANCH=stable/folsom GLANCE_BRANCH=stable/folsom KEYSTONE_BRANCH=stable/folsom HORIZON_BRANCH=stable/folsom #QUANTUM_BRANCH=stable/folsom # password MYSQL_PASSWORD=mysql RABBIT_PASSWORD=rabbit SERVICE_TOKEN=service SERVICE_PASSWORD=admin ADMIN_PASSWORD=admin # Uncomment the following line to save time by skipping checking of packages that need to be installed #OFFLINE=True
local.sh
Make sure no local.sh exists under /home/stack/devstack
rm /home/stack/devstack/local.sh
lispd.conf
LISP is run with
sudo lispd -f /etc/lispd.conf
Its configuration file is located in /etc/ and contains:
# lispd example config file
debug = on
map-request-retries = 2 # send 2 before giving up
# Encapsulated Map-Requests are sent to this map resolver
map-resolver = 10.32.164.141
# Register to this map server
map-server {
address = 10.32.164.141
key-type = 1 # SHA1
key = foo%bar
verify = off # on --> lig(self)
proxy-reply = on # ask ms to proxy reply
}
# Encapsulate packets for non-LISP sites to this Proxy-ETR
proxy-etr {
address = 149.20.48.60
priority = 1
weight = 100
}
# IPv4 EID of the mobile node
database-mapping {
eid-prefix = 192.168.127.4/32 # for Openstack Compute Node
# iid = 0
interface = br-lisp
priority = 1
weight = 100
}
# List of PITRs to SMR on handover
proxy-itrs = {
69.31.31.98, # eqx-ash-pxtr
149.20.48.60, # isc-pxtr
198.6.255.37, # asp-pxtr
129.250.1.63, # ntt-amer-pxtr
217.8.98.33, # intouch-pxtr-1
217.8.98.35, # intouch-pxtr-2
193.162.145.46, # tdc-pxtr
158.38.1.92, # uninett-pxtr
203.181.249.172 # apan-pxtr
}
ovs-lisp-openstask-scenario.sh
su - vi /home/stack/Downloads/ovs-lisp-openstask-scenario.sh
#!/bin/bash
echo "=== lakafosi: Stopping firewall and allowing everyone... ==="
iptables -F
iptables -X
iptables -t nat -F
iptables -t nat -X
iptables -t mangle -F
iptables -t mangle -X
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
echo "=== lakafosi: Fixing the bridges... ==="
VM_mac=fa:16:$(ifconfig vnet0 | grep HWaddr | awk '{print $5}'i | awk '{print substr($0,7)}')
#Alternatively:
#VM_mac=$(brctl showmacs br100 | grep fa:16: |awk '{print $2}'i)
echo "MAC address of guest VM: $VM_mac"
brctl delif br100 vnet0
brctl delif br100 eth0
#ifconfig br100 0.0.0.0
#ifconfig br100 0.0.0.0
#ifconfig br100 192.168.127.1 netmask 255.255.255.0
ifconfig br100 down
brctl delbr br100
ovs-vsctl -- --if-exists del-br br-lisp
ovs-vsctl add-br br-lisp
ovs-vsctl add-port br-lisp vnet0
#Compute
ovs-vsctl add-port br-lisp lisp0 -- set Interface lisp0 type=lisp options:remote_ip=10.10.10.10
ovs-vsctl add-port br-lisp eth0
ovs-ofctl del-flows br-lisp
ovs-ofctl add-flow br-lisp priority=3,dl_dst=00:11:22:ee:ee:ee,action=mod_dl_dst:$VM_mac,NORMAL
ovs-ofctl add-flow br-lisp priority=2,in_port=1,dl_type=0x0806,action=NORMAL
ovs-ofctl add-flow br-lisp priority=1,in_port=1,dl_type=0x0800,vlan_tci=0,nw_src=192.168.127.0/24,action=output:2
ovs-ofctl add-flow br-lisp priority=0,action=NORMAL
ifconfig vnet0 up
ifconfig eth0 0.0.0.0
#Compute
ifconfig br-lisp 10.10.11.10 netmask 255.255.255.192
route add default gw 10.10.1.1
killall farpd
farpd -i br-lisp 192.168.127.0/24
echo "=== lakafosi: Bridge Status: ==="
brctl show
ovs-vsctl show
ovs-appctl fdb/show br-lisp
ovs-dpctl show
ovs-ofctl dump-flows br-lisp
echo "=== lakafosi: Go and START lisp...! ==="
#echo "lakafosi: Starting lisp..."
#lispd -f /etc/lispd.conf &
echo "=== lakafosi: lisp status: ==="
ps -ea | grep lisp; lsmod | grep lisp
To run it:
chmod +x /home/stack/Downloads/ovs-lisp-openstask-scenario.sh /home/stack/Downloads/ovs-lisp-openstask-scenario.sh