Chap 1 - Forwarding Flashcards
What is Unknown Unicast Flooding?
A destination MAC address is not in the MAC table so the switch floods the packet out all ports.
What separates broadcast domains?
A router.
What do VLANs do?
They create multiple broadcast domains on a single switch.
What 4 fields did IEEE 802.1q add to the VLAN packet structure?
- Tag Protocol Identifier (TID)
- Priority Code Point (PCP)
- Drop Eligible Indicator (DEI)
- VLAN Identifier (VLAN ID)
How many bits in the TID field, what is its hex value, and what does it identify?
- 16 bits
- set to 0x8100 identifying the packet as an 802.1q packet
What does the Priority Code Point field do?
- 3 bits
- indicates Class of Service for QOS between switches
How many bits in the Drop Eligible Indicator and what does it do?
- 1 bit
- indicates whether the packet can be dropped due to congestion
How many bits in the VLAN ID field and what does it do?
- 12 bits
- specifies the VLAN associated with the packet
What is VLAN 0 reserved for?
802.1P traffic
What is different about VLAN 1?
- default VLAN
- It can’t be deleted.
What is the range of normal VLANs?
2 - 1001
What VLANs above 1000 are reserved?
1002 - 1005
What is the range of extended VLANs?
1006 - 4094
After being in VLAN configuration mode and creating a VLAN at what point does the VLAN actually get created?
- when you leave VLAN config mode
- when you move to a different VLAN configuration
What VLAN are ports put in by default?
VLAN 1
What is the default Native VLAN?
VLAN 1
What is the CAM?
- Content addressable memory
- MAC address table resides here
What is the fallback for CEF?
Process switching
What is process switching?
Switching in software
What are the 3 types of packets that need to be process switched?
- Packets sourced by or destined for the router itself
- Packets too complex for hardware (packets with IP options)
- Packets that need extra information that isn’t already known (like ARP)
What 5 things happen when a packet is punted by CEF to be process switched?
- ip_input process checks the routing table and ARP for next hop routers IP address, outgoing interface and MAC
- Overwrites source MAC with its own MAC, and destination MAC with next hop router’s MAC
- Decrements TTL
- Recomputes checksum of IP header
- Delivers packet to next hop router
What is another name for the routing table?
Routing Information Base (RIB)
What 3 sources build the RIB?
- info from dynamic routing protocols
- static routes
- connected routes
How is the ARP table built?
From info from the ARP protocol
Where is CEF used?
- Default switching mechanism used on Cisco routers that do packet switching on general purpose CPU
- Default switching machinism on platforms with ASICs and hardware-based routers
Why do most switches contain multiple TCAM partitions?
So that inbound/outbound security, QOS, L2/L3 forwarding decisions occur all at once