36
Xen*, SDN and Apache Cloudstack Sebastien Goasguen, Apache CloudStack Citrix EMEA August 28 th 2012 Xen Summit

CloudStack and SDN

Embed Size (px)

DESCRIPTION

Software Defined Networking is seeing a lot of momentum these days. With server virtualization solving the virtual machines problem, and large scale object storage solving the distributed storage challenge, SDN is seen as key in virtual networking. In this talk we don't try to define SDN but rather dive straight into what in our opinion is the core enabled of SDN: the virtual switch OVS. OVS can help manage VLAN for guest network isolation, it can re-route any traffic at L2-L4 by keeping forwarding tables controlled by a remote controller (Openfow controller). We show these few OVS capabilities and highlight how they are used in CloudStack and Xen. Xen Summit presentation of CloudStack and Software Defined Networks. OpenVswitch is the default bridge in Xen and supported in XenServer and Xen Cloud Platform

Citation preview

Page 1: CloudStack and SDN

Xen*, SDN and Apache Cloudstack

Sebastien Goasguen, Apache CloudStack Citrix EMEA

August 28th 2012Xen Summit

Page 3: CloudStack and SDN

Apache CloudStack

• IaaS solution to build a private/public cloud

• Hypervisor agnostic:– Xen, XS, XCP– KVM– VMware

• Object store support– Swift– Upcoming support from

Caringo

• EC2/S3 compatibility

• Java application• Ant build but moving to

maven (via new contributor)

• First Apache release 4.0 coming Sept 26th

Page 4: CloudStack and SDN

Participating in CloudStack

• Apache incubator project• http://www.cloudstack.org• #cloudstack on irc.freenode.net• @CloudStack on Twitter• http://cloudstack.org/discuss/mailing-lists.html

Welcoming contributions and feedback, Join the fun !

Page 5: CloudStack and SDN

A Very Flexible IaaS PlatformCompute Hypervisor

Storage Block & Object

Network Network & Network Services

Primary Storage Secondary Storage

http://www.slideshare.net/cloudstack/cloudstack-architecture

Page 6: CloudStack and SDN

NaaS ?

• “Cloud Servers”– On-demand, Elastic, Measured server provisioning

• Cloud Storage– Scalable/fault tolerant storage with object stores

• Cloud Networks– How to do on-demand, elastic, measured

networking provisioning ?– How to program the network ?

Page 7: CloudStack and SDN

A very extensive API

• CloudStack orchestrates your network:– Provisioning– Configuration– Updates

• For multi-tenants isolation• Using hardware and

software devices• At scale: O(10^4) Hyp,

O(10^5) VMs…

Page 8: CloudStack and SDN

Software Defined Networking

• Enable innovation, experimentation, optimization and customization of networks

• Move control of the network to software. i.e Programmable network

• Virtualize the network• Vendor-agnostic, standard protocol for

control: OpenFlow

Page 9: CloudStack and SDN

OpenFlow

• Leading SDN protocol• Decouples control and

data plane by giving a controller the ability to install flow rules on switches.

• Hardware or software switches can use OpenFlow

• Spec driven by ONF

• Google achieved 95% utilization of WAN backbone by using SDN

Page 10: CloudStack and SDN

OpenFlow

• OpenFlow rules can drop, rewrite, forward packets

April 10, 2023 10

SwitchPort

MACsrc

MACdst

Ethtype

VLANID

IPSrc

IPDst

IPProt

TCPsport

TCPdport

Rule Action Stats

1. Forward packet to port(s)2. Encapsulate and forward to controller3. Drop packet4. Send to normal processing pipeline

Packet + byte counters

Diagram Src: http://www.openflow.org/wp/documents/

Page 11: CloudStack and SDN

OF Controllers• Several controllers out

there (NOX, POX,Trema…)

• Floodlight from Big Switch. Apache license

Page 12: CloudStack and SDN

OpenVSwitch

• “Open vSwitch is a production quality, multilayer virtual switch licensed under the open source Apache 2.0 license. It is designed to enable the massive network automation through programmatic extension…”

Page 13: CloudStack and SDN

OpenVSwitch• Default bridge in XenServer

and XCP• Supported in Xen but not

integrated in toolstack• Enables:

– VLAN tagging– Rate limiting– GRE tunnels– OpenFlow controller– …

• High Performance ( http://networkheresy.com/category/open-

vswitch )

Page 14: CloudStack and SDN

e.g OVS rate limiting

• Can enforce QoS with rate limiting controls• ovs-vsctl set Interface tap0

ingress_policing_rate=1000• ovs-vsctl set Interface tap0

ingress_policing_burst=100

Page 15: CloudStack and SDN

e.g OVS VLAN tagging

• ovs-vsctl add-br br0• ovs-vsctl add-port br0 eth0• ovs-vsctl add-port br0 tap0 tag=1• ovs-vsctl add-port br0 tap1 tag=2

• Complement on host2…

Page 16: CloudStack and SDN

e.g OVS and GRE tunnels

• No Cookbook on OVS page• ovs-vsctl add-port br1 gre1 -- set interface gre1

type=gre options:remote_ip=192.168.1.152

Page 17: CloudStack and SDN

OVS and Openflow

• Point OVS switches to an OF controller:$ovs_vsctl set-controller br0 tcp 192.168.1.33:6633

• Install rules on switch–Proactively (before any packet flows)–Reactively (unknown packets forwarded to controller, who pushes flow mod on switch, then operates at line rate)

• Can do SDN with OpenFLOW but also with straight up OVS and managing mappings/rules in CloudStack db.

Page 18: CloudStack and SDN

OpenNebula• Supports VLAN tagging

and rate limiting through “hooks” that call ovs_vsctl

• Scripts executed on an hypervisor before a VM is launched

• Potentially also executed after VM shutdown for cleanup

• Also supports OpenFlow

Page 19: CloudStack and SDN

CloudStack Nicira Support

• https://cwiki.apache.org/confluence/display/CLOUDSTACK/Feature+Nicira+NVP+integration

• By Hugo Trippaers, Schuberg Philis

Page 20: CloudStack and SDN

API key to customization of the network

• You dream it, CloudStack orchestrates it

Page 21: CloudStack and SDN

TerminologyZone: Availability zone, aka Regions. Could be worldwide. Different data centersPods: Racks or aisles in a data centerClusters: Group of machines with a common type of HypervisorHost: A Single serverPrimary Storage: Shared storage across a clusterSecondary Storage: Shared storage in a single Zone

Page 22: CloudStack and SDN

Router

L3 Core Switch

Access Layer

Switches

………… …

Availability Zone

Servers

CloudStack Mgmt Server Cluster

Secondary Storage

Pod 1 Pod 2 Pod 3 Pod N

MySQL

Load Balancer

Operations Admin and Cloud API

Users

Physical Network

Slide from Chiradeep Vittal, http://www.slideshare.net/cloudstack/cloudstack-networking

Page 23: CloudStack and SDN

Layer-2 Guest Virtual Network1 VLAN per guest network

Public Network/Internet

Guest Virtual Network 10.1.1.1/8VLAN 100

Gateway address 10.1.1.1

DHCP, DNSNATLoad BalancingVPN

Public IP 65.37.141.11

10.1.1.1Guest VM 1Guest VM 1

10.1.1.3Guest VM 2Guest VM 2

10.1.1.4Guest VM 3Guest VM 3

10.1.1.5Guest VM 4Guest VM 4

CSVirtual Router

CSVirtual Router

Public Network/Internet

Guest Virtual Network 10.1.1.1/8VLAN 100

Private IP10.1.1.112

DHCP, DNS

Public IP 65.37.141.112

10.1.1.1Guest VM 1Guest VM 1

10.1.1.3Guest VM 2Guest VM 2

10.1.1.4Guest VM 3Guest VM 3

10.1.1.5Guest VM 4Guest VM 4

NetScalerLoad

Blancer

NetScalerLoad

Blancer

Private IP10.1.1.111

Public IP 65.37.141.111

Juniper SRX

Firewall

Juniper SRX

Firewall

CS Virtual Router provides Network Services External Devices provide Network ServicesNetwork Hardware exposing API can be controlled

CSVirtual Router

CSVirtual Router

Slide from Chiradeep Vittal, http://www.slideshare.net/cloudstack/cloudstack-networking

Page 24: CloudStack and SDN

Opportunity for Xen

• Opportunity to create highly specialized networking services appliances using– OpenMirage VMs– HalVM

• See talks in Monday’s session

Page 25: CloudStack and SDN

Networking challenges in a private Cloud

• Multi-tenants on hypervisors => isolation between guest networks

• VLANs in the datacenter is hard and limit at 4096 VLANs.

• Hardware switches may not do it very well or have a lower limit

Page 26: CloudStack and SDN

Networking trend• Move to software switches• Move to L3 isolation• Use tunnels between OVS (GRE tech preview)• Program the network through API• Encapsulation virtualizes the network, between overlays

on overlays on overlays..• L3 on L2 on GRE on L3 on L2…• Then you bring the WAN and you have:• L3 on L2 on GRE on L3 on L2 on GRE on L3 on L2

….Euhhhh !!!

Page 27: CloudStack and SDN

Back of the enveloppe

• ~10,000 hypervisors in your data center• ~100,000 VMs

– x10 or x100 if you use HalVM or Openmirage.org

• (10,000*9,999)/2 tunnels for a full mesh– 50x10^6 tunnels to keep track of ?

Page 28: CloudStack and SDN

DB Security Group

WebSecurity Group

Layer 3 cloud networking

… …

Web Web VMVM

Web Web VMVM

Web Web VMVM

Web Web VMVM

Web Web VMVM

Web Web VMVM

Web Web VMVM

Web Web VMVM

DB VMDB VM

Web Web VMVM

Web Web VMVM

DB VMDB VM

Web Web VMVM

Web Web VMVM

Ingress Rule: Allow VMs in Web Security Group access to VMs in DB Security Group on Port 3306

Slide from Chiradeep Vittal

Page 29: CloudStack and SDN

L3 isolation with distributed firewallsTenant 1 VM 1

10.1.0.2

Tenant 2 VM 1

10.1.0.3

Tenant 1 VM 2

10.1.0.4

Public Internet

10.1.0.1

Public IP address 65.37.141.1165.37.141.2465.37.141.3665.37.141.80

Load Balancer

L3 Core

Pod 1 L2 Switch

Pod 3 L2 Switch

10.1.16.1

…10.1.8.1Pod 2 L2 Switch

Slide from Chiradeep Vittal

Page 30: CloudStack and SDN

L3 isolation with distributed firewallsTenant 1 VM 1

10.1.0.2

Tenant 2 VM 1

10.1.0.3

Tenant 1 VM 2

10.1.0.4

Tenant 1 VM 3 10.1.16.47

Tenant 1 VM 4 10.1.16.85

Public Internet

10.1.0.1

Public IP address 65.37.141.1165.37.141.2465.37.141.3665.37.141.80

Load Balancer

L3 Core

Pod 1 L2 Switch

Pod 3 L2 Switch

10.1.16.1

…10.1.8.1Pod 2 L2 Switch

Slide from Chiradeep Vittal

Page 31: CloudStack and SDN

L3 isolation with distributed firewallsTenant 1 VM 1

10.1.0.2

Tenant 2 VM 1

10.1.0.3

Tenant 1 VM 2

10.1.0.4

Tenant 2 VM 2

10.1.16.12

Tenant 2 VM 3 10.1.16.21

Tenant 1 VM 3 10.1.16.47

Tenant 1 VM 4 10.1.16.85

Public Internet

10.1.0.1

Public IP address 65.37.141.1165.37.141.2465.37.141.3665.37.141.80

Load Balancer

L3 Core

Pod 1 L2 Switch

Pod 3 L2 Switch

10.1.16.1

…10.1.8.1Pod 2 L2 Switch

Slide from Chiradeep Vittal

Page 32: CloudStack and SDN

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

…VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

VMVMVMVMVMVMVMVM

VMVMVMVM…

A Million Firewalls?

Slide from Chiradeep Vittal

Page 33: CloudStack and SDN

Problem:Manage the state of 100s of thousands of firewalls

Solution:Well-known software scaling techniques•Message queues•Consistency tradeoffs•Idempotent configuration & retries

CloudStack uses •special purpose queues•optimized for large security groups•eventual consistency for rule updates

Slide from Chiradeep Vittal

Page 34: CloudStack and SDN

Problem:Firewall (iptables) rules explosion on the host firewall

ipset –N web_sg iptreemapipset –A web_sg 10.1.16.31 ipset –A web_sg 10.1.16.112 ipset –A web_sg 10.1.189.5

ipset –A web_sg 10.21.9.77

-A FORWARD –p tcp –m tcp –dport 3060 –m set –match-set web_sg src -j ACCEPT

Solution:Use ipsets:

Slide from Chiradeep Vittal

Page 35: CloudStack and SDN

Conclusions• Programmable networking is here• Software switches are key enabler to network

virtualization• Opens the door for scalable, on-demand,

ephemeral networks• OVS is the default switch in Xen, and supported

in XenServer and XenCP.• CloudStack implements highly scalable network

structures and leverages OVS capabilities

Page 36: CloudStack and SDN

Participating in CloudStack

• Apache incubator project• http://www.cloudstack.org• #cloudstack on irc.freenode.net• @CloudStack on Twitter• http://cloudstack.org/discuss/mailing-lists.html

Welcoming contributions and feedback, Join the fun !