Describe
2.1 Describe device virtualization technologies
Aligned to Cisco's 350-401 ENCOR v1.2 exam topics.
On this page
What this section tests
Section 2.1 is a describe topic. The exam wants you to explain how one physical server runs many logical devices, and where the network path crosses into the server.
Learn one traffic path, not three isolated definitions:
- The hypervisor divides hardware into usable parts.
- The virtual machine uses those parts as CPU, memory, disk, and NICs.
- The virtual switch connects the virtual NICs to each other and to the physical network.
For each part, name the control point and the proof:
- Control point: the hypervisor and its port group policy decide what a VM can reach.
- Boundary: the virtual switch is where forwarding moves from software to hardware.
- Proof: the VM MAC address in the physical switch MAC table shows the full path works.
The traffic path
Think of a virtual router named R1 on a server.
R1 virtual NIC
-> virtual switch / port group
-> physical host NIC (uplink)
-> physical switchport
-> enterprise networkA packet from R1 passes through the virtual switch before it reaches the wire. The virtual switch can apply a VLAN tag, a security policy, or a teaming policy before the packet leaves the host.
If the path breaks, check each point in order:
- Is the VM NIC connected?
- Is the VM on the correct port group?
- Is the VLAN or trunk correct?
- Is the host uplink up?
- Does the physical switchport allow the VLAN?
- Is the gateway reachable?
Child articles
- 2.1.a Hypervisors Type 1 and Type 2: bare metal vs hosted, and how each model changes troubleshooting.
- 2.1.b Virtual Machines: guest OS, virtual NICs, and lab networking modes.
- 2.1.c Virtual Switching: port groups, VLAN tagging, trunks, and host uplinks.
High-yield comparison
| Component | Simple definition | Control point | Proof |
|---|---|---|---|
| Type 1 hypervisor | Runs directly on server hardware | Hypervisor owns the hardware | Production VMs reachable |
| Type 2 hypervisor | Runs on top of an existing OS | Hypervisor app plus host OS | VM network mode correct |
| Virtual machine | Guest OS on virtual hardware | Guest IP config plus vNIC attachment | Guest pings its gateway |
| Virtual NIC | NIC presented to the VM | vNIC to port group mapping | MAC learned upstream |
| Virtual switch | Software switch inside the host | Port group policy | Frames forwarded to uplink |
| Port group | Policy attachment point | VLAN and security settings | Tag matches physical trunk |
| Uplink | Physical NIC from host to network | Teaming policy | Physical switch learns VM MACs |
Why network engineers care
Virtualization moves part of the network inside the server. A network problem can exist where the physical switch cannot see it.
A VLAN can be correct on the physical switch but wrong on the port group. A VM can have the correct IP address and sit on the wrong virtual network. A trunk can allow VLAN 20 while the virtual switch presents VLAN 10 to the VM.
You do not need to administer every hypervisor. You need to know where a packet can be tagged, filtered, or dropped inside the host.
Lab: map a VM packet
Topology:
VM-A eth0 -> vSwitch / port group USERS-VLAN20 -> Host NIC vmnic0 -> SW1 Gi1/0/10 -> R1 gateway 10.20.20.1Physical switchport:
interface GigabitEthernet1/0/10
description Hypervisor-Host-01-Uplink
switchport mode trunk
switchport trunk allowed vlan 20,30
spanning-tree portfast trunkDo these steps:
- Name the control point for the VLAN that VM-A uses. (Answer: the port group USERS-VLAN20.)
- Name the boundary between software switching and hardware switching. (Answer: the host uplink vmnic0.)
- Name the command on SW1 that proves VM-A traffic arrives. (Answer:
show mac address-table interface gi1/0/10.) - Name the first thing to check inside VM-A. (Answer: its IP address and default gateway.)
Exam traps
- A virtual switch is still a switch. It forwards frames between vNICs and uplinks.
- Type 1 vs Type 2 describes where the hypervisor runs, not VM quality.
- A VM is not a container. A VM runs a guest OS on virtual hardware.
- Port group VLAN settings and physical trunk settings must agree.
- The physical switch sees traffic after the virtual switch already made decisions.
Pass check
You are ready for Section 2.1 when you can do these things:
- Draw the path from a VM vNIC to the physical network.
- Explain the difference between Type 1 and Type 2 hypervisors.
- Name the role of a port group in the traffic path.
- Say whether a failure is inside the VM, in the virtual switch, on the uplink, or in the physical network.