SlideShare a Scribd company logo
NETWORK VIRTUALIZATION
SEMINAR REPORT
CHAPTER 1
INTRODUCTION
1.1 WHAT IS VIRTUALIZATION?
Virtualization is the basic act of decoupling an infrastructure service
from the physical assets on which that service operates.
The infrastructure service exists entirely in a software abstraction layer:
• Lifecycle – started/stopped anytime
• Identity – being independent to physical world
• Location – could deployed anywhere
• Configuration – being simpler to manage
1.2 TYPES OF VIRTUALIZATION
FIG 1
FIG 2
FIG 3
FIG 4
FIG 5
1.3 NETWORK VIRTUALIZATION
In computing, network virtualization or network virtualisation is the
process of combining hardware and software network resources
and network functionality into a single, software-based administrative
entity, a virtual network.
Currently, there are two types of network virtualization:
• Internal Virtualization. Internal virtualization is designed to use
software containers to replicate the functionality of a single network.
• External Virtualization. External virtualization combines multiple local
networks into a single “virtual” network to improve the network efficiency
FIG 6
FIG 7
CHAPTER 2
NETWORK PROTOCOL AND MODEL
2.1 NETWORK PROTOCOL
• Rules and procedures governing transmission between computers
• Used to identify communicating devices, secure attention of intended
recipient, check for errors and re-transmissions
• All computers using a protocol have to agree on how to code/decode
the message, how to identify errors, and steps to take when there are
errors or missed communications Computer System Protocol
Packaging Protocol Delivery Protocol
2.2 NETWORK TOPOLOGIES
• Topology refers to the physical or logical layout of the computers
in a particular network
• Commonly used topologies are star, bus and ring.
FIG 8
2.3 NETWORK TYPES LANS AND WANS
• Local area network Network of computers and other devices
within a limited distance Uses star, bus or ring topologies Network
interface cards in each device specifies transmission rate, message
structure, and topology Network operating system routes and
manages communications and coordinates network resources
• Wide area network Network of computers spanning broad
geographical distances Switched or dedicated lines Firms use
commercial WANs for communication
FIG 9
CHAPTER 3
NETWORK ARCHITECTURE
3.1 PACKET SWITCHING
• Message/Data is divided into fixed or variable length packets
• Each packet is numbered and sent along different paths to the
destination
• Packets are assembled at the destination
• Useful for continued message transmission even when part of the
network path is broken
FIG 10
3.2 CONNECT TWO NETWORKS
FIG 11
3.3 CONNECT MULTIPLE NETWORKS
FIG 12
FIG 13
FIG 14
3.4 THE SIMPLE VIEW OF INTERNET
FIG 15
3.5 NETWORK DESIGN RULES
Hierarchical approach
• Traffic is aggregated hierarchically from an access layer into a
layer of distribution switches and finally onto the network core
• . A hierarchical approach to network design has proven to deliver
the best results in terms of optimizing scalability, improving
manageability, and maximizing network availability.
FIG 16
CHAPTER 4
EXTERNAL NETWORK VIRTUALIZATION
4.1 External network virtualization in different layers :
• Layer 1 Seldom virtualization implement in this physical data
transmission layer.
• Layer 2 Use some tags in MAC address packet to provide
virtualization. Example, VLAN.
• Layer 3 Use some tunnel techniques to form a virtual network.
Example, VPN.
• Layer 4 or higher Build up some overlay network for some
application. Example, P2P.
4.2 Two virtualization components :
• Device virtualization
• Virtualize physical devices in the network
• Data path virtualization
• Virtualize communication path between network access
points Router Switch Data Path
Device virtualization
▪ Layer 2 solution
• Divide physical switch into multiple logical switches.
▪ Layer 3 solution 3
• VRF technique ( Virtual Routing and Forwarding )
• Emulate isolated routing tables within one physical router.
Data path virtualization
▪ Hop-to-hop case
• Consider the virtualization applied on a single hop data- path.
▪ Hop-to-cloud case
• Consider the virtualization tunnels allow multi-hop data- path. 24
4.3 Protocol approach
• Protocols usually used to approach data-path virtualization
• Three implementations
o 802.1Q – implement hop to hop data-path virtualization
MPLS ( Multiprotocol Label Switch ) – implement router and
switch layer virtualization
o GRE (Generic Routing Encapsulation ) – implement
virtualization among wide variety of networks with tunneling
technique. 25
802.1Q
• Standard by IEEE 802.1
• Not encapsulate the original frame
• Add a 32-bit field between MAC address and EtherTypes field
o ETYPE(2B): Protocol identifier
o Dot1Q Tag(2B): VLAN number, Priority code
MPLS ( Multiprotocol Label Switch )
• Also classified as layer 2.5 virtualization
• Add one or more labels into package
• Need Label Switch Router(LSR) to read MPLS header 28
FIG 17
GRE ( Generic Routing Encapsulation )
• GRE is a tunnel protocol developed by CISCO
• Encapsulate a wide variety of network layer protocol
• Stateless property
o This means end-point doesn't keep information about the
state
CHAPTER 5
INTERNAL NETWORK VIRTUALIZATION
• A single system is configured with containers, such as the Xen
domain, combined with hypervisor control programs or pseudo-
interfaces such as the VNIC, to create a “network in a box”.
• This solution improves overall efficiency of a single system by
isolating applications to separate containers and/or pseudo
interfaces.
• Virtual machine and virtual switch :
o The VMs are connected logically to each other so that they
can send data to and receive data from each other.
o Each virtual network is serviced by a single virtual switch.
o A virtual network can be connected to a physical network by
associating one or more network adapters (uplink adapters)
with the virtual switch.
5.1 Internal network virtualization in different layers :
• Layer 1 Hypervisor usually do not need to emulate the physical
layer.
• Layer 2 Implement virtual L2 network devices, such as switch, in
hypervisor. Example, Linux TAP driver + Linux bridge.
• Layer 3 Implement virtual L3 network devices, such as router, in
hypervisor. Example, Linux TUN driver + Linux bridge + iptables
• Layer 4 or higher Layer 4 or higher layers virtualization is usually
implemented in guest OS. Applications should make their own
choice.
5.2 Properties of virtual switch
• A virtual switch works much like a physical Ethernet switch.
• It detects which VMs are logically connected to each of its virtual
ports and uses that information to forward traffic to the correct
virtual machines.
5.3 Typical virtual network configuration
• Communication network
o Connect VMs on different hosts
• Storage network
o Connect VMs to remote storage system
• Management network
o Individual links for system administration
FIG 18
5.4 Network virtualization example form VMware
FIG 19
CHAPTER 6
TRADITIONAL APPROACH AND NEW TECHNIQUES
6.1 TRADITIONAL APPROACH
In KVM system
▪ KVM focus on CPU and memory virtualization, so IO virtualization
framework is completed by QEMU project.
▪ In QEMU, network interface of virtual machines connect to host by
TUN/TAP driver and Linux bridge.
▪ Work with TUN/TAP and Linux Bridge :
o Virtual machines connect to host by a virtual network adapter,
which is implemented by TUN/TAP driver
o Virtual adapters will connect to Linux bridges, which play the
role of virtual switch.
TUN/TAP driver
▪ TUN and TAP are virtual network kernel drivers
o TAP (as in network tap) simulates an Ethernet device and it
operates with layer 2 packets such as Ethernet frames. TUN (as
in network TUNnel) simulates a network layer device and it
operates with layer 3 packets such as IP
• Data flow of TUN/TAP driver
o Packets sent by an operating system via a TUN/TAP device are
delivered to a user-space program that attaches itself to the
device.
o A user-space program may pass packets into a TUN/TAP
device. TUN/TAP device delivers (or "injects") these packets to
the operating system network stack thus emulating their
reception from an external source.
FIG 20
Linux bridge
• Bridging is a forwarding technique used in packet-switched computer
networks
• Unlike routing, bridging makes no assumptions about where in a
network a particular address is located.
• Bridging depends on flooding and examination of source addresses in
received packet headers to locate unknown devices
• Bridging connects multiple network segments at the data link layer
(Layer 2) of the OSI model.
FIG 21
TAP/TUN driver + Linux Bridge
FIG 22
6.2 NEW TECHNIQUES
In Xen system
• Since implemented with para-virtualization type, guest OS load
modified network interface drivers
• Modified network interface drivers communicate with virtual
switches in Dom0, which act as TAP in traditional approach.
• Virtual switch in Xen can be implemented by Linux bridge or
work with other optimization.
FIG 23
Detail in Xen System
FIG 24
Some performance issues :
• Page remapping
o Hypervisor remap memory page for MMIO.
• Context switching
o Whenever packets send, induce one context switch from guest
to Domain 0 to drive real NIC
• Software bridge management
o Linux bridge is a pure software implementation
• Interrupt handling
o When interrupt occur, induce one context switch again.
FIG 25
Improve Xen performance by software
▪ Large effective MTU
▪ Fewer packets
▪ Lower per-byte cost
FIG 26
Improve Xen performance by hardware
• CDNA (Concurrent Direct Network Access) hardware adapter
• Remove driver domain from data and interrupts
• Hypervisor only responsible for virtual interrupts and assigning
context to guest OS
FIG 27
6.3 Case Study
• VMware offer a hybrid solution of network virtualization in Cloud
• .Use redundant links to provide high availability.
• Virtual switch in host OS will automatically detect link failure and
redirect packets to back-up links.
FIG 28
CHAPTER 7
SUMMARY AND CONCLUSION
7.1 Network Virtualization Summary
Virtualization in layers
• Usually in Layer 2 and Layer 3
External network virtualization
• Layer 2
o 802.1q
• Layer 3
o MPLS, GRE
Internal network virtualization
• Traditional approach
o TAP/TUN + Linux bridge
• New technique
o Virtual switch, CDNA
FIG 29
IaaS Case Study
IaaS open source project – Eucalyptus
• Elastic Utility Computing Architecture for Linking Your Programs to
Useful Systems IaaS Architecture of Eucalyptus
FIG 30
IaaS Case Study Server Virtualization
FIG 31
IaaS Case Study System Component
• Cloud Controller (CLC)
o Dispatch user request to some clusters.
• Cluster Controller (CC)
o Determine enough resource for virtual machine deployment
• Node Controller (NC)
o Run user’s virtual machines.
IaaS Case Study Storage Virtualization
FIG 32
IaaS Case Study Two kinds of storage systems
• Walrus ( S3 compatible )
o Mainly store the images, which provided by users or
administrator, for VMs booting.
• Storage Controller
o Mainly store user created logical volumes which can be
attached to specified VMs in run-time.
o Each storage controller in a cluster is controlled by the
corresponding cluster controller, and each VM can utilize
these logical volumes through networks.
Network Virtualization
FIG 33
Network architecture :
• Bridge ( Virtual Switch )
o Make virtual machines on one node share physical NICs
• DHCP
o Map virtual MAC addresses of VMs to private IPs in the
LAN.
• NAT
o Forward the packages to public network (WAN).
• IP/MAC mapping table
o IP addresses are assigned by Eucalyptus
o . MAC addresses are assigned by hypervisor
o . This mapping table is maintained by Eucalyptus system.
7.2 NETWORK VIRTUALIZATION ADVANTAGES
• It is cheaper
• It keeps costs predictable.
• It reduces the workload.
• It offers a better uptime.
• It allows for faster deployment of resources.
• It promotes digital entrepreneurship.
• It provides energy savings.
7.3 NETWORK VIRTUALIZATION DISADVANTAGES
• It can have a high cost of implementation. ...
• It still has limitations. ...
• It creates a security risk. ...
• It creates an availability issue. ...
• It creates a scalability issue. ...
• It requires several links in a chain that must work together cohesively.
...
• It takes time.
7.4 CONCLUSION
Mainly Virtualization means, running multiple operating systems on a
single machine but sharing all the hardware resources. And it helps us to
provide the pool of IT resources so that we can share these IT resources
in order get benefits in the business.
7.5 REFERENCE:
➢ https://www.javatpoint.com/virtualization-in-cloud-computing
➢ https://en.wikipedia.org/wiki/Network_virtualization

More Related Content

PPSX
Virtualization basics
PPTX
1.Introduction to virtualization
PPTX
Virtualization
PPTX
Virtualization
PPTX
Virtualization and its Types
PPTX
Network virtualization
PPTX
Server virtualization
PPTX
Server virtualization
Virtualization basics
1.Introduction to virtualization
Virtualization
Virtualization
Virtualization and its Types
Network virtualization
Server virtualization
Server virtualization

What's hot (20)

PDF
Virtualization presentation
PPTX
Network Virtualization
PPTX
CS8791 Unit 2 Cloud Enabling Technologies
PPTX
Introduction to microservices
PDF
Hypervisors and Virtualization - VMware, Hyper-V, XenServer, and KVM
PPTX
Vm migration techniques
PPTX
Virtual machine
PPTX
Unit 2 Virtualization Part I.pptx
PPTX
Introduction To Microservices
PPT
Network Virtualization
PPTX
What is Virtualization and its types & Techniques.What is hypervisor and its ...
PDF
Lecture5 virtualization
PPTX
VIRTUAL CLUSTERS AND RESOURCE MANAGEMENT
PPTX
Virtual Machine
PPTX
Cloud Computing: Virtualization
PPTX
Threats to information security
PDF
Why Microservice
PPT
Cloud computing architectures
PPT
Virtualization
PPTX
Unified process model
Virtualization presentation
Network Virtualization
CS8791 Unit 2 Cloud Enabling Technologies
Introduction to microservices
Hypervisors and Virtualization - VMware, Hyper-V, XenServer, and KVM
Vm migration techniques
Virtual machine
Unit 2 Virtualization Part I.pptx
Introduction To Microservices
Network Virtualization
What is Virtualization and its types & Techniques.What is hypervisor and its ...
Lecture5 virtualization
VIRTUAL CLUSTERS AND RESOURCE MANAGEMENT
Virtual Machine
Cloud Computing: Virtualization
Threats to information security
Why Microservice
Cloud computing architectures
Virtualization
Unified process model
Ad

Similar to Network virtualization seminar report (20)

PPTX
Network Virtualization in computer networks.pptx
PPTX
01-235182-105-9455967283-18042022-125731pm.pptx
PDF
10 sdn-vir-6up
PPTX
Network and Service Virtualization tutorial at ONUG Spring 2015
PPTX
Network Virtualization Architectural & Technological aspects
PDF
Understanding network and service virtualization
PDF
Network Monitoring in the age of the Cloud
PPTX
Dave Chandler Presents SDN at World Wide Technology's TECday - St. Louis
PDF
Openstack v4 0
PPTX
Simulation of network through virtualization technique
PDF
Deployment driven security
PDF
DEPLOYMENT-DRIVEN SECURITY CONFIGURATION FOR VIRTUAL NETWORKS
PPTX
Raga_SDN_NSX_1
PDF
Network Virtualization - A Survey
PPT
PDF
Ocpeu14
PDF
Module_2_Slides.pdf
PDF
Net1674 final emea
PDF
Server And Hardware Virtualization_Aakash1.1
PDF
Network Virtualization with quantum
Network Virtualization in computer networks.pptx
01-235182-105-9455967283-18042022-125731pm.pptx
10 sdn-vir-6up
Network and Service Virtualization tutorial at ONUG Spring 2015
Network Virtualization Architectural & Technological aspects
Understanding network and service virtualization
Network Monitoring in the age of the Cloud
Dave Chandler Presents SDN at World Wide Technology's TECday - St. Louis
Openstack v4 0
Simulation of network through virtualization technique
Deployment driven security
DEPLOYMENT-DRIVEN SECURITY CONFIGURATION FOR VIRTUAL NETWORKS
Raga_SDN_NSX_1
Network Virtualization - A Survey
Ocpeu14
Module_2_Slides.pdf
Net1674 final emea
Server And Hardware Virtualization_Aakash1.1
Network Virtualization with quantum
Ad

More from SKS (20)

PDF
Cloud computing in iot seminar report
PPTX
Uses of ethical theories in professional ethics
PDF
Deep learning seminar report
PDF
Security in IoT
PDF
Reinforcement learning
PPTX
Variety of moral issues
PPTX
Research ethics
PPTX
Industrial standards
PPTX
Engineers are responsible experimenters
PPTX
Engineering as experimentation
PPTX
Controversy and consensus
PPTX
Codes of ethics
PPTX
Codes of ethics
PPTX
A balanced outlook on the law
PPTX
Theories about the right decision
PPTX
Safety and risk
PPTX
Risk-benefit analysis
PPTX
Reducing risk
PPTX
Chernobyl case study
PPT
Assessment of safety and risk
Cloud computing in iot seminar report
Uses of ethical theories in professional ethics
Deep learning seminar report
Security in IoT
Reinforcement learning
Variety of moral issues
Research ethics
Industrial standards
Engineers are responsible experimenters
Engineering as experimentation
Controversy and consensus
Codes of ethics
Codes of ethics
A balanced outlook on the law
Theories about the right decision
Safety and risk
Risk-benefit analysis
Reducing risk
Chernobyl case study
Assessment of safety and risk

Recently uploaded (20)

PDF
Insiders guide to clinical Medicine.pdf
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PPTX
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
PPTX
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
PPTX
Cell Structure & Organelles in detailed.
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPTX
Cell Types and Its function , kingdom of life
PDF
01-Introduction-to-Information-Management.pdf
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PDF
RMMM.pdf make it easy to upload and study
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
TR - Agricultural Crops Production NC III.pdf
Insiders guide to clinical Medicine.pdf
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Abdominal Access Techniques with Prof. Dr. R K Mishra
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
STATICS OF THE RIGID BODIES Hibbelers.pdf
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
Cell Structure & Organelles in detailed.
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Cell Types and Its function , kingdom of life
01-Introduction-to-Information-Management.pdf
Module 4: Burden of Disease Tutorial Slides S2 2025
2.FourierTransform-ShortQuestionswithAnswers.pdf
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
RMMM.pdf make it easy to upload and study
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
TR - Agricultural Crops Production NC III.pdf

Network virtualization seminar report

  • 2. CHAPTER 1 INTRODUCTION 1.1 WHAT IS VIRTUALIZATION? Virtualization is the basic act of decoupling an infrastructure service from the physical assets on which that service operates. The infrastructure service exists entirely in a software abstraction layer: • Lifecycle – started/stopped anytime • Identity – being independent to physical world • Location – could deployed anywhere • Configuration – being simpler to manage 1.2 TYPES OF VIRTUALIZATION FIG 1
  • 5. 1.3 NETWORK VIRTUALIZATION In computing, network virtualization or network virtualisation is the process of combining hardware and software network resources and network functionality into a single, software-based administrative entity, a virtual network. Currently, there are two types of network virtualization: • Internal Virtualization. Internal virtualization is designed to use software containers to replicate the functionality of a single network. • External Virtualization. External virtualization combines multiple local networks into a single “virtual” network to improve the network efficiency FIG 6
  • 7. CHAPTER 2 NETWORK PROTOCOL AND MODEL 2.1 NETWORK PROTOCOL • Rules and procedures governing transmission between computers • Used to identify communicating devices, secure attention of intended recipient, check for errors and re-transmissions • All computers using a protocol have to agree on how to code/decode the message, how to identify errors, and steps to take when there are errors or missed communications Computer System Protocol Packaging Protocol Delivery Protocol 2.2 NETWORK TOPOLOGIES • Topology refers to the physical or logical layout of the computers in a particular network • Commonly used topologies are star, bus and ring.
  • 8. FIG 8 2.3 NETWORK TYPES LANS AND WANS • Local area network Network of computers and other devices within a limited distance Uses star, bus or ring topologies Network interface cards in each device specifies transmission rate, message structure, and topology Network operating system routes and manages communications and coordinates network resources • Wide area network Network of computers spanning broad geographical distances Switched or dedicated lines Firms use commercial WANs for communication
  • 10. CHAPTER 3 NETWORK ARCHITECTURE 3.1 PACKET SWITCHING • Message/Data is divided into fixed or variable length packets • Each packet is numbered and sent along different paths to the destination • Packets are assembled at the destination • Useful for continued message transmission even when part of the network path is broken FIG 10
  • 11. 3.2 CONNECT TWO NETWORKS FIG 11 3.3 CONNECT MULTIPLE NETWORKS
  • 13. FIG 14 3.4 THE SIMPLE VIEW OF INTERNET
  • 15. 3.5 NETWORK DESIGN RULES Hierarchical approach • Traffic is aggregated hierarchically from an access layer into a layer of distribution switches and finally onto the network core • . A hierarchical approach to network design has proven to deliver the best results in terms of optimizing scalability, improving manageability, and maximizing network availability. FIG 16
  • 16. CHAPTER 4 EXTERNAL NETWORK VIRTUALIZATION 4.1 External network virtualization in different layers : • Layer 1 Seldom virtualization implement in this physical data transmission layer. • Layer 2 Use some tags in MAC address packet to provide virtualization. Example, VLAN. • Layer 3 Use some tunnel techniques to form a virtual network. Example, VPN. • Layer 4 or higher Build up some overlay network for some application. Example, P2P. 4.2 Two virtualization components : • Device virtualization • Virtualize physical devices in the network • Data path virtualization • Virtualize communication path between network access points Router Switch Data Path Device virtualization ▪ Layer 2 solution • Divide physical switch into multiple logical switches.
  • 17. ▪ Layer 3 solution 3 • VRF technique ( Virtual Routing and Forwarding ) • Emulate isolated routing tables within one physical router. Data path virtualization ▪ Hop-to-hop case • Consider the virtualization applied on a single hop data- path. ▪ Hop-to-cloud case • Consider the virtualization tunnels allow multi-hop data- path. 24 4.3 Protocol approach • Protocols usually used to approach data-path virtualization • Three implementations o 802.1Q – implement hop to hop data-path virtualization MPLS ( Multiprotocol Label Switch ) – implement router and switch layer virtualization o GRE (Generic Routing Encapsulation ) – implement virtualization among wide variety of networks with tunneling technique. 25 802.1Q • Standard by IEEE 802.1 • Not encapsulate the original frame • Add a 32-bit field between MAC address and EtherTypes field o ETYPE(2B): Protocol identifier
  • 18. o Dot1Q Tag(2B): VLAN number, Priority code MPLS ( Multiprotocol Label Switch ) • Also classified as layer 2.5 virtualization • Add one or more labels into package • Need Label Switch Router(LSR) to read MPLS header 28 FIG 17 GRE ( Generic Routing Encapsulation ) • GRE is a tunnel protocol developed by CISCO • Encapsulate a wide variety of network layer protocol • Stateless property
  • 19. o This means end-point doesn't keep information about the state
  • 20. CHAPTER 5 INTERNAL NETWORK VIRTUALIZATION • A single system is configured with containers, such as the Xen domain, combined with hypervisor control programs or pseudo- interfaces such as the VNIC, to create a “network in a box”. • This solution improves overall efficiency of a single system by isolating applications to separate containers and/or pseudo interfaces. • Virtual machine and virtual switch : o The VMs are connected logically to each other so that they can send data to and receive data from each other. o Each virtual network is serviced by a single virtual switch. o A virtual network can be connected to a physical network by associating one or more network adapters (uplink adapters) with the virtual switch. 5.1 Internal network virtualization in different layers : • Layer 1 Hypervisor usually do not need to emulate the physical layer. • Layer 2 Implement virtual L2 network devices, such as switch, in hypervisor. Example, Linux TAP driver + Linux bridge. • Layer 3 Implement virtual L3 network devices, such as router, in hypervisor. Example, Linux TUN driver + Linux bridge + iptables • Layer 4 or higher Layer 4 or higher layers virtualization is usually implemented in guest OS. Applications should make their own choice.
  • 21. 5.2 Properties of virtual switch • A virtual switch works much like a physical Ethernet switch. • It detects which VMs are logically connected to each of its virtual ports and uses that information to forward traffic to the correct virtual machines. 5.3 Typical virtual network configuration • Communication network o Connect VMs on different hosts • Storage network o Connect VMs to remote storage system • Management network o Individual links for system administration FIG 18
  • 22. 5.4 Network virtualization example form VMware FIG 19
  • 23. CHAPTER 6 TRADITIONAL APPROACH AND NEW TECHNIQUES 6.1 TRADITIONAL APPROACH In KVM system ▪ KVM focus on CPU and memory virtualization, so IO virtualization framework is completed by QEMU project. ▪ In QEMU, network interface of virtual machines connect to host by TUN/TAP driver and Linux bridge. ▪ Work with TUN/TAP and Linux Bridge : o Virtual machines connect to host by a virtual network adapter, which is implemented by TUN/TAP driver o Virtual adapters will connect to Linux bridges, which play the role of virtual switch. TUN/TAP driver ▪ TUN and TAP are virtual network kernel drivers o TAP (as in network tap) simulates an Ethernet device and it operates with layer 2 packets such as Ethernet frames. TUN (as in network TUNnel) simulates a network layer device and it operates with layer 3 packets such as IP • Data flow of TUN/TAP driver o Packets sent by an operating system via a TUN/TAP device are delivered to a user-space program that attaches itself to the device.
  • 24. o A user-space program may pass packets into a TUN/TAP device. TUN/TAP device delivers (or "injects") these packets to the operating system network stack thus emulating their reception from an external source. FIG 20 Linux bridge • Bridging is a forwarding technique used in packet-switched computer networks • Unlike routing, bridging makes no assumptions about where in a network a particular address is located. • Bridging depends on flooding and examination of source addresses in received packet headers to locate unknown devices • Bridging connects multiple network segments at the data link layer (Layer 2) of the OSI model.
  • 25. FIG 21 TAP/TUN driver + Linux Bridge FIG 22
  • 26. 6.2 NEW TECHNIQUES In Xen system • Since implemented with para-virtualization type, guest OS load modified network interface drivers • Modified network interface drivers communicate with virtual switches in Dom0, which act as TAP in traditional approach. • Virtual switch in Xen can be implemented by Linux bridge or work with other optimization. FIG 23 Detail in Xen System
  • 27. FIG 24 Some performance issues : • Page remapping o Hypervisor remap memory page for MMIO. • Context switching o Whenever packets send, induce one context switch from guest to Domain 0 to drive real NIC • Software bridge management o Linux bridge is a pure software implementation • Interrupt handling o When interrupt occur, induce one context switch again. FIG 25 Improve Xen performance by software
  • 28. ▪ Large effective MTU ▪ Fewer packets ▪ Lower per-byte cost FIG 26 Improve Xen performance by hardware • CDNA (Concurrent Direct Network Access) hardware adapter • Remove driver domain from data and interrupts • Hypervisor only responsible for virtual interrupts and assigning context to guest OS
  • 29. FIG 27 6.3 Case Study • VMware offer a hybrid solution of network virtualization in Cloud • .Use redundant links to provide high availability. • Virtual switch in host OS will automatically detect link failure and redirect packets to back-up links. FIG 28
  • 30. CHAPTER 7 SUMMARY AND CONCLUSION 7.1 Network Virtualization Summary Virtualization in layers • Usually in Layer 2 and Layer 3 External network virtualization • Layer 2 o 802.1q • Layer 3 o MPLS, GRE Internal network virtualization • Traditional approach o TAP/TUN + Linux bridge • New technique o Virtual switch, CDNA
  • 31. FIG 29 IaaS Case Study IaaS open source project – Eucalyptus • Elastic Utility Computing Architecture for Linking Your Programs to Useful Systems IaaS Architecture of Eucalyptus FIG 30
  • 32. IaaS Case Study Server Virtualization FIG 31 IaaS Case Study System Component • Cloud Controller (CLC) o Dispatch user request to some clusters. • Cluster Controller (CC) o Determine enough resource for virtual machine deployment • Node Controller (NC) o Run user’s virtual machines.
  • 33. IaaS Case Study Storage Virtualization FIG 32 IaaS Case Study Two kinds of storage systems • Walrus ( S3 compatible ) o Mainly store the images, which provided by users or administrator, for VMs booting. • Storage Controller o Mainly store user created logical volumes which can be attached to specified VMs in run-time. o Each storage controller in a cluster is controlled by the corresponding cluster controller, and each VM can utilize these logical volumes through networks.
  • 34. Network Virtualization FIG 33 Network architecture : • Bridge ( Virtual Switch ) o Make virtual machines on one node share physical NICs • DHCP
  • 35. o Map virtual MAC addresses of VMs to private IPs in the LAN. • NAT o Forward the packages to public network (WAN). • IP/MAC mapping table o IP addresses are assigned by Eucalyptus o . MAC addresses are assigned by hypervisor o . This mapping table is maintained by Eucalyptus system. 7.2 NETWORK VIRTUALIZATION ADVANTAGES • It is cheaper • It keeps costs predictable. • It reduces the workload. • It offers a better uptime. • It allows for faster deployment of resources. • It promotes digital entrepreneurship. • It provides energy savings. 7.3 NETWORK VIRTUALIZATION DISADVANTAGES • It can have a high cost of implementation. ... • It still has limitations. ... • It creates a security risk. ... • It creates an availability issue. ... • It creates a scalability issue. ... • It requires several links in a chain that must work together cohesively. ...
  • 36. • It takes time. 7.4 CONCLUSION Mainly Virtualization means, running multiple operating systems on a single machine but sharing all the hardware resources. And it helps us to provide the pool of IT resources so that we can share these IT resources in order get benefits in the business. 7.5 REFERENCE: ➢ https://www.javatpoint.com/virtualization-in-cloud-computing ➢ https://en.wikipedia.org/wiki/Network_virtualization