Network Fundamentals

398 soru

Soru 101Soru

Match each server virtualization component or architecture on the left to its corresponding functional description on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Virtual Network Interface Card (vNIC)
Virtual Switch (vSwitch)
Type 1 Hypervisor
Type 2 Hypervisor

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Virtual Network Interface Card (vNIC) pairs with the virtualized endpoint abstraction maintaining a distinct MAC address. Virtual Switch (vSwitch) pairs with the software forwarding module routing frames between VMs and physical NICs. Type 1 Hypervisor pairs with the bare-metal virtualization layer installed directly on server hardware. Type 2 Hypervisor pairs with the hosted program running on top of an existing host operating system.
The pairings accurately reflect the core architecture of network virtualization: vNIC provides guest virtual MAC addresses and network interface emulation; vSwitch handles software-based Ethernet switching inside the hypervisor host; Type 1 hypervisors execute bare-metal on hardware for enterprise server virtualization; and Type 2 hypervisors run hosted inside an existing general-purpose host OS for desktop/testing applications.

Adım Adım Çözüm

1
Differentiate hypervisor deployment models based on where the software runs relative to host hardware.
Identify Type 1 as bare-metal software operating directly on physical hardware, and Type 2 as hosted software running on top of a primary host OS.
Type 1 hypervisors interact directly with hardware hardware resources, while Type 2 hypervisors rely on host OS system calls for resource scheduling.
2
Analyze virtual networking abstractions presented to guest operating systems versus those performing intra-host traffic management.
Identify vNIC as the per-VM adapter assigned a MAC address, and vSwitch as the internal software bridge linking vNICs to each other and to host pNICs.
The vNIC presents an Ethernet interface to the guest OS, whereas the vSwitch maintains local Layer 2 MAC address tables for switching frames internally.
3
Associate each term on the left with its precise functional description on the right.
Complete all four correct pair mappings.
Ensures complete alignment between virtualization concepts and their operational definitions in enterprise network environments.

Anahtar Kavram

Virtualization components (vNIC, vSwitch) and hypervisor architecture classification (Type 1 bare-metal vs Type 2 hosted).
Tahmini Süre:2m 0s
Soru 102Soru

An administrator enables IPv6 on a router interface using the prefix 2001:db8:feed:1::/642001:\text{db8}:\text{feed}:1::/64 with EUI-64 automatic interface identifier generation. If the interface MAC address is `1C1D.86AB.CDEF`, which IPv6 address is dynamically assigned to the interface?

Cevabı ve açıklamayı göster

Cevap: 2001:db8:feed:1:1e1d:86ff:feab:cdef

Cevap

2001:db8:feed:1:1e1d:86ff:feab:cdef
Generating an IPv6 EUI-64 interface identifier from a 48-bit MAC address requires splitting the MAC address into two 24-bit halves, inserting the hexadecimal sequence FFFE in the center, and flipping the 7th bit (Universal/Local bit) of the first byte. For MAC address 1C1D.86AB.CDEF, the first byte 0x1C (binary 00011100) becomes 0x1E (binary 00011110) after flipping the 7th bit. Inserting FFFE into the center yields the 64-bit interface ID 1e1d:86ff:feab:cdef, which combines with prefix 2001:db8:feed:1::/64 to form 2001:db8:feed:1:1e1d:86ff:feab:cdef.

Adım Adım Çözüm

1
Split MAC address into two 24-bit halves
First half: 1C-1D-86, Second half: AB-CD-EF
EUI-64 insertion requires placing a 16-bit payload into the middle of the 48-bit MAC address.
2
Insert the 16-bit value FFFE into the center
1C-1D-86-FF-FE-AB-CD-EF
Standard EUI-64 processing expands 48-bit MAC addresses to 64-bit interface identifiers.
3
Invert the 7th bit (Universal/Local bit) of the first octet
0x1C (0001 1100) becomes 0x1E (0001 1110), yielding 1E-1D-86-FF-FE-AB-CD-EF
RFC 4291 requires flipping the 7th bit of the IEEE MAC address when converting to EUI-64 format.
4
Combine with IPv6 prefix
2001:db8:feed:1:1e1d:86ff:feab:cdef
Appending the 64-bit interface identifier to the /64 prefix constructs the complete IPv6 address.

Anahtar Kavram

EUI-64 Interface Identifier Generation
Soru 103Soru

An application developer is optimizing a custom telemetry protocol for bandwidth-constrained satellite links. To minimize transport layer encapsulation overhead, the network architecture replaces TCP with UDP. Assuming standard baseline headers with no TCP options, how many bytes of fixed header overhead are saved per packet by selecting UDP over TCP?

Cevabı ve açıklamayı göster

Cevap: 12 bytes

Cevap

12 bytes of Layer 4 header overhead are saved per datagram by using UDP instead of TCP.
The correct answer is 12 bytes. A standard TCP header without optional fields requires 20 bytes to accommodate features such as sequencing, acknowledgments, dynamic windowing, and flags. Conversely, UDP utilizes a simplified 8-byte header composed of only four fields: Source Port, Destination Port, Length, and Checksum. Subtracting the 8-byte UDP header from the 20-byte baseline TCP header yields a savings of 12 bytes per packet.

Adım Adım Çözüm

1
Determine the baseline size of a standard TCP header.
A standard TCP header without optional fields consists of 20 bytes (containing Source/Destination Ports, Sequence Number, Acknowledgment Number, Header Length, Flags, Window Size, Checksum, and Urgent Pointer).
Establishing the default minimum size of a connection-oriented Layer 4 protocol header.
2
Determine the fixed size of a UDP header.
A UDP header is strictly fixed at 8 bytes (consisting of 4 two-byte fields: Source Port, Destination Port, Length, and Checksum).
UDP provides connectionless delivery with minimal control overhead.
3
Calculate the difference in overhead between the two protocols.
20 bytes (TCP baseline header) - 8 bytes (UDP fixed header) = 12 bytes saved.
Subtracting UDP header size from baseline TCP header size identifies the exact per-packet byte savings.

Anahtar Kavram

Layer 4 Header Overhead and Structure (TCP 20-byte vs. UDP 8-byte)
Soru 104Soru

Match each host virtualization component on the left with its corresponding operational characteristic or role on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Type 1 Hypervisor
Type 2 Hypervisor
Virtual NIC (vNIC)
Virtual Switch (vSwitch)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Type 1 Hypervisor maps to installing directly on physical server hardware without requiring an underlying host operating system. Type 2 Hypervisor maps to running as a software application on top of a conventional host operating system. Virtual NIC maps to connecting a virtual machine's operating system to the virtual network and assigning a software-based MAC address. Virtual Switch maps to providing Layer 2 packet forwarding and VLAN segmentation between virtual machines on the same physical host.
Each component serves a specific layer in host virtualization: Type 1 hypervisors run directly on server hardware; Type 2 hypervisors run on top of an existing host OS; Virtual NICs provide network interface presentation and software MAC addresses to guest VMs; and Virtual Switches perform software-based Layer 2 forwarding and VLAN tagging within the host.

Adım Adım Çözüm

1
Differentiate hypervisor architecture layers.
Type 1 hypervisors execute directly on hardware (bare-metal), whereas Type 2 hypervisors execute as an application dependent on an underlying host OS.
Classification depends on whether a primary operating system sits between the physical hardware and the hypervisor execution engine.
2
Identify the virtual network interface abstraction.
The Virtual NIC (vNIC) presents a virtualized Ethernet adapter to the guest OS, maintaining its own software-assigned MAC address.
The guest OS requires a network adapter object to generate layer 2 frames and request network resources.
3
Determine the role of host-internal switching infrastructure.
The Virtual Switch (vSwitch) handles local Layer 2 frame forwarding, MAC learning, and VLAN tagging across virtual ports on the hypervisor host.
Intra-host virtual machine switching is performed in software by the vSwitch without sending local inter-VM traffic out to physical switches unless required.

Anahtar Kavram

Host-level server virtualization components and hypervisor architecture models.
Soru 105Soru

A network administrator is designing a Variable Length Subnet Mask (VLSM) scheme starting from the 172.16.128.0/18172.16.128.0/18 network block. Department A requires a subnet that supports at least 500500 usable host addresses. If the administrator allocates the first available subnet of the minimum required size to Department A, which TWO statements regarding this allocation are true?

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: The subnet mask required for Department A is 255.255.254.0255.255.254.0.; The broadcast address for Department A's allocated subnet is 172.16.129.255172.16.129.255.

Cevap

The correct statements are that the subnet mask required for Department A is 255.255.254.0255.255.254.0 and the broadcast address for Department A's allocated subnet is 172.16.129.255172.16.129.255.
To support 500 usable host addresses, 9 host bits are necessary because 292=5102^9 - 2 = 510 usable addresses. This yields a /2323 prefix, which translates to a subnet mask of 255.255.254.0255.255.254.0. Allocating the first available /2323 block from 172.16.128.0/18172.16.128.0/18 results in the network address 172.16.128.0172.16.128.0 and broadcast address 172.16.129.255172.16.129.255.

Adım Adım Çözüm

1
Determine the required host bits and prefix length for Department A.
Department A requires 500\ge 500 usable hosts. Using the formula 2h25002^h - 2 \ge 500, h=9h = 9 host bits (292=5102^9 - 2 = 510 usable host addresses). The prefix length is 329=/2332 - 9 = /23.
Host bits must satisfy the required host capacity while preserving network bits.
2
Convert prefix length /2323 to dotted-decimal subnet mask format.
A /2323 prefix corresponds to mask 255.255.254.0255.255.254.0.
The first 23 bits are set to 1 (11111111.11111111.11111110.0000000011111111.11111111.11111110.00000000).
3
Calculate the subnet boundaries for the first /2323 block within 172.16.128.0/18172.16.128.0/18.
Network address: 172.16.128.0/23172.16.128.0/23. Usable range: 172.16.128.1172.16.128.1172.16.129.254172.16.129.254. Broadcast address: 172.16.129.255172.16.129.255.
The block size in the 3rd octet is 256254=2256 - 254 = 2, covering 3rd octet values 128 and 129.
4
Verify RFC 1918 private address classification.
The range 172.16.128.0172.16.128.0172.16.129.255172.16.129.255 is inside the 172.16.0.0/12172.16.0.0/12 private block.
RFC 1918 designates 172.16.0.0172.16.0.0 to 172.31.255.255172.31.255.255 as private IPv4 space.

Anahtar Kavram

VLSM Subnet Sizing and Boundary Calculation
Tahmini Süre:2m 0s
Soru 106Soru

An enterprise host generates an IPv6 Link-Local address on an Ethernet interface using SLAAC and the standard EUI-64 process. Which two statements regarding the resulting IPv6 address structure and generation rules are correct?

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: The link-local prefix begins with FE80::/10FE80::/10, where the first 10 bits are fixed as binary 1111 1110 101111\ 1110\ 10.; The 7th bit of the first byte (Universal/Local bit) in the MAC address is inverted from 0 to 1.

Cevap

The correct statements are that IPv6 link-local addresses use the prefix FE80::/10 (first 10 bits fixed as 1111 1110 10) and that the EUI-64 process inverts the 7th bit (Universal/Local bit) of the first byte of the MAC address.
The IPv6 link-local address range is defined by RFC 4291 as starting with the prefix FE80::/10, which fixes the first 10 bits to 1111 1110 10. Additionally, when deriving a 64-bit interface identifier from a 48-bit MAC address using EUI-64, the 7th bit of the MAC address's first byte (the U/L bit) must be inverted from 0 to 1 for burned-in universal addresses.

Adım Adım Çözüm

1
Identify the IPv6 Link-Local prefix definition.
Link-Local addresses belong to the block FE80::/10 (binary 1111 1110 10xx xxxx).
Standard IPv6 addressing architecture reserves the first 10 bits for link-local unicast scope.
2
Analyze the IEEE 48-bit MAC to 64-bit EUI-64 conversion rules.
The 48-bit MAC is split into two 24-bit halves, FFFE is inserted in between, and the 7th bit of the first byte is inverted.
Inverting the U/L bit (bit 7) allows burned-in MAC addresses (which have U/L = 0) to produce an interface ID where 1 represents universal scope.

Anahtar Kavram

IPv6 Link-Local Address Architecture and EUI-64 Interface Identifier Derivation
Soru 107Soru

A network engineer is configuring an interface on a Cisco router for VLAN 270 using the assigned IPv6 block 2001:db8:abcd::/482001:\text{db8}:\text{abcd}::/48. Per organization policy, the 16-bit subnet ID field in the /64/64 prefix must be the exact hexadecimal equivalent of the decimal VLAN ID (27010270_{10}). The router interface has a hardware MAC address of `3C4A.9211.2233` and is configured with the command `ipv6 address 2001:db8:abcd:10e::/64 eui-64`. Which IPv6 global unicast address will be dynamically generated on this interface?

Cevabı ve açıklamayı göster

Cevap: 2001:db8:abcd:10e:3e4a:92ff:fe11:2233

Cevap

2001:db8:abcd:10e:3e4a:92ff:fe11:2233
The correct option correctly converts decimal VLAN 270 into hexadecimal 010E (`10e`), inserts `FFFE` into the MAC address `3C4A.9211.2233`, and flips the 7th bit of the first byte (`3C` = `0011 1100` -> `0011 1110` = `3E`), producing the full IPv6 address `2001:db8:abcd:10e:3e4a:92ff:fe11:2233`.

Adım Adım Çözüm

1
Calculate the 16-bit Subnet ID from the decimal VLAN ID
Decimal 27010=(1×162)+(0×161)+(14×160)=0x010E270_{10} = (1 \times 16^2) + (0 \times 16^1) + (14 \times 16^0) = 0x010E, which compresses to `10e` in the 4th hextet.
IPv6 hextets are written in hexadecimal format. Converting decimal 270 yields 010E.
2
Insert FFFE into the middle of the 48-bit MAC address
MAC `3C4A.9211.2233` becomes `3C4A:92FF:FE11:2233`.
EUI-64 generation splits the 6-byte MAC address into two 3-byte halves and inserts `FF-FE` (16 bits) in between.
3
Invert the 7th bit (Universal/Local bit) of the first MAC octet
First octet `3C` in binary is `0011 1100`. Inverting the 7th bit (bit 1 from the right in the first byte) changes it to `0011 1110`, which equals `3E` in hexadecimal.
IEEE EUI-64 standard dictates that the 7th bit of the interface ID must be inverted (0 for global scope, 1 for local scope).
4
Combine the /64 prefix with the EUI-64 interface identifier
`2001:db8:abcd:10e:3e4a:92ff:fe11:2233`.
Appending the 64-bit interface ID `3e4a:92ff:fe11:2233` to the /64 prefix `2001:db8:abcd:10e::/64` yields the final global unicast IPv6 address.

Anahtar Kavram

EUI-64 Interface Identifier Generation & IPv6 Hexadecimal Subnetting
Soru 108Soru

A network administrator needs to assign a single usable IPv4 host address to a server connected to the 192.168.1.16/28 subnet. Which of the following IPv4 addresses is a valid usable host address for this subnet?

Cevabı ve açıklamayı göster

Cevap: 192.168.1.25

Cevap

The address 192.168.1.25 is a valid usable host address.
For the network block 192.168.1.16/28, the subnet range begins at the network address 192.168.1.16 and ends at the broadcast address 192.168.1.31. Consequently, the assignable usable host address range spans from 192.168.1.17 through 192.168.1.30. The address 192.168.1.25 falls directly within this valid range.

Adım Adım Çözüm

1
Determine the block size from the prefix length.
A /28 prefix uses a subnet mask of 255.255.255.240. The block size is 256 - 240 = 16.
Calculating the block size identifies the increments between adjacent subnets.
2
Identify the network address and broadcast address for the subnet.
Network address is 192.168.1.16. Broadcast address is 192.168.1.31 (16 + 16 - 1).
The network address is the start of the subnet block, and the broadcast address is the last address in the block.
3
Determine the range of usable host addresses.
Usable host addresses range from 192.168.1.17 to 192.168.1.30.
Usable host IPs exclude both the network address and the broadcast address.

Anahtar Kavram

IPv4 Subnet Boundaries and Usable Host Identification
Soru 109Soru

A network administrator configures a Cisco router interface using the command `ipv6 address 2001:db8:4444:5555::/64 eui-64`. If the MAC address of the interface is 0800.2765.43210800.2765.4321, which full IPv6 global unicast address is generated for this interface?

Cevabı ve açıklamayı göster

Cevap: 2001:db8:4444:5555:a00:27ff:fe65:4321

Cevap

2001:db8:4444:5555:a00:27ff:fe65:4321
The correct IPv6 address is constructed by taking the MAC address 0800.2765.4321, inserting FFFE between the third and fourth bytes to form 0800:27FF:FE65:4321, and flipping the 7th bit of the first byte (changing 08 to 0A). Compressing the leading zero of 0A00 produces a00:27ff:fe65:4321, which appends to the prefix 2001:db8:4444:5555::/64.

Adım Adım Çözüm

1
Split the 48-bit MAC address into two 24-bit halves and insert FFFE in the middle.
MAC address 0800.2765.4321 becomes 0800:27FF:FE65:4321.
EUI-64 generation requires expanding a 48-bit MAC address into a 64-bit interface ID by inserting FFFE into the center.
2
Invert the 7th bit (universal/local bit) of the first octet.
First octet 08 in hex is 0000 1000 in binary. Flipping the 7th bit yields 0000 1010 in binary, which is 0A in hex. The identifier becomes 0A00:27FF:FE65:4321.
IEEE EUI-64 rules mandate flipping the 7th bit of the MAC address to indicate universal scope.
3
Combine the /64 IPv6 prefix with the EUI-64 interface ID and apply RFC 4291/5952 zero compression rules.
Prefix 2001:db8:4444:5555::/64 + Interface ID 0a00:27ff:fe65:4321 = 2001:db8:4444:5555:a00:27ff:fe65:4321.
Leading zeros in any 16-bit hexadecimal field are omitted (0a00 becomes a00).

Anahtar Kavram

EUI-64 Interface Identifier Generation
Tahmini Süre:1m 30s
Soru 110Soru

An engineer is comparing the operational characteristics of virtual switches (vSwitches) operating inside a Type 1 hypervisor architecture with standard physical Layer 2 switches. Which two operational statements regarding internal vSwitch behavior are correct?

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: A vSwitch maintains a MAC address table to forward Ethernet frames between virtual machines on the same host.; A vSwitch can apply 802.1Q VLAN tags to frames before transmitting them onto physical uplink adapters.

Cevap

Virtual switches build dynamic MAC address tables to forward intra-host frame traffic between virtual machines and can tag outgoing traffic with 802.1Q VLAN headers for physical switch connectivity.
Virtual switches emulate physical Layer 2 switch functions by creating dynamic MAC address tables for frame switching between virtual machines. Additionally, vSwitches can act as 802.1Q VLAN-aware devices, tagging traffic (Virtual Switch Tagging) across physical network interfaces connected to upstream switches.

Adım Adım Çözüm

1
Analyze local Layer 2 forwarding capabilities of a virtual switch
The vSwitch learns vNIC MAC addresses and creates an internal lookup table to switch frames locally.
This allows virtual machines connected to the same vSwitch and VLAN to communicate without sending traffic to external physical hardware.
2
Examine VLAN tagging capabilities on uplink interfaces
The vSwitch can perform 802.1Q encapsulation on frames prior to transmission via physical network interface cards (pNICs).
This allows multiple virtual networks (VLANs) to multiplex over shared physical server uplinks.

Anahtar Kavram

Virtual Switch (vSwitch) Layer 2 Operations and Uplink VLAN Tagging
Soru 111Soru

A network administrator is evaluating IPv6 addressing structures for a router interface configuration. Which two statements correctly describe IPv6 prefix properties or address compression rules?

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: The address 2001:db8:0000:0000:0000:0000:0000:00012001:\text{db8}:0000:0000:0000:0000:0000:0001 can be validly compressed to 2001:db8::12001:\text{db8}::1.; The prefix fe80::/10\text{fe80}::/10 is designated for link-local addresses, which are automatically generated and non-routable beyond the local link.

Cevap

The correct statements are that 2001:db8:0000:0000:0000:0000:0000:0001 can be compressed to 2001:db8::1, and that fe80::/10 is designated for link-local non-routable addresses.
Compressing consecutive zero fields into a single double colon once per address is valid according to RFC 4291 rules. Furthermore, fe80::/10 is officially designated for link-local communication and is restricted to the local layer 2 segment.

Adım Adım Çözüm

1
Analyze IPv6 zero compression rules according to RFC 4291.
Consecutive blocks of zeros can be replaced by double colons (::), but only ONCE per address representation to prevent ambiguity.
Compressing 2001:db8:0000:0000:0000:0000:0000:0001 into 2001:db8::1 uses the double colon once legally, while 2001:db8::100::1 violates this rule.
2
Evaluate reserved IPv6 prefix scopes.
The fe80::/10 block is reserved for link-local unicast addresses.
Link-local addresses are required on all IPv6-enabled interfaces, automatically configured, and never forwarded by routers outside the local link boundary.
3
Evaluate subnet capacity logic in IPv6 vs IPv4.
IPv6 eliminates broadcast addressing in favor of multicast, so subtracting 2 addresses for network and broadcast is unnecessary in IPv6 subnets.
All 2642^{64} host combinations in a standard /64 subnet interface ID space are available as unique host identifiers.

Anahtar Kavram

IPv6 Address Representation and Scopes
Soru 112Soru

Match each physical cabling or transceiver type to its corresponding physical characteristic.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Single-Mode Fiber (SMF)
Multimode Fiber (MMF)
Unshielded Twisted-Pair (UTP)
SFP+ Transceiver

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Single-Mode Fiber (SMF) matches with narrow core (~9 microns) for long distances; Multimode Fiber (MMF) matches with wider core (50/62.5 microns) for shorter distances; Unshielded Twisted-Pair (UTP) matches with twisted copper wire pairs up to 100 meters; SFP+ Transceiver matches with hot-swappable module supporting 10 Gbps.
Each physical interface and cabling type directly corresponds to its fundamental engineering characteristic: Single-mode fiber has a ~9-micron core for laser transmission over long distances; Multimode fiber has a 50/62.5-micron core for transmission over shorter distances; UTP relies on twisted copper pairs up to 100 meters; SFP+ is the standard modular transceiver form factor for 10 Gbps interfaces.

Adım Adım Çözüm

1
Identify the optical core specifications for fiber media.
Single-mode fiber has a small 9-micron core for single light paths, whereas multimode fiber has a larger core (50 or 62.5 microns) allowing multiple light paths.
Core size directly determines the light propagation modes and distance capabilities of optical fiber.
2
Identify the characteristics of copper media standards.
Unshielded Twisted-Pair uses balanced twisted copper conductors to resist crosstalk up to the 100-meter limit.
Twisting wire pairs creates balanced differential signals that cancel external electrical interference.
3
Identify the transceiver form factor and speed standard.
SFP+ is an enhanced version of SFP designed specifically for 10 Gigabit Ethernet data rates.
Different modular transceiver form factors correspond to specific maximum throughput capabilities.

Anahtar Kavram

Physical interface types, fiber optics core sizes, UTP cabling specifications, and transceiver form factors.
Soru 113Soru

A network administrator is troubleshooting a physical connectivity issue between two Cisco Catalyst switches. A legacy patch cable constructed using only two twisted pairs (wired to pins 1, 2, 3, and 6) was used to connect the two GigabitEthernet interfaces. Both interfaces have been manually configured for speed 1000 and duplex full. A wire map tester confirms end-to-end continuity on pins 1, 2, 3, and 6, while pins 4, 5, 7, and 8 are open/unwired. Despite the ports being enabled, the link status remains down/down. Which statement accurately explains why the 1000BASE-T link fails to establish?

Cevabı ve açıklamayı göster

Cevap: 1000BASE-T requires all four wire pairs (eight conductors) to transmit and receive simultaneously using 5-level PAM signaling.

Cevap

1000BASE-T requires all four wire pairs (eight conductors) to transmit and receive simultaneously using 5-level PAM signaling.
The 1000BASE-T standard (IEEE 802.3ab) requires Category 5e or Category 6 UTP cabling wired with all four pairs (eight conductors). Each pair carries a bi-directional data rate of 250 Mbps using 5-level Pulse Amplitude Modulation (PAM-5) and complex digital signal processing (DSP) to cancel echo and crosstalk. Because pins 4, 5, 7, and 8 are disconnected in a 2-pair cable, the 1000BASE-T physical layer cannot negotiate or establish a link.

Adım Adım Çözüm

1
Analyze the physical media requirements for 100BASE-TX versus 1000BASE-T standards.
100BASE-TX operates using two pairs (pins 1, 2, 3, and 6). However, 1000BASE-T (Gigabit Ethernet over copper, IEEE 802.3ab) explicitly requires four pairs (all 8 pins).
Gigabit Ethernet achieves 1 Gbps by transmitting at 250 Mbps per pair across four pairs simultaneously using 5-level Pulse Amplitude Modulation (PAM-5) and hybrid cancellation circuits.
2
Evaluate the cable wiring described in the scenario against the 1000BASE-T requirements.
The legacy cable only has four conductors wired (pins 1, 2, 3, and 6), leaving pins 4, 5, 7, and 8 disconnected.
Without continuity across all eight pins (four pairs), physical Layer 1 signaling for 1000BASE-T cannot complete its multi-pair initialization, causing the link to remain in a down/down state.

Anahtar Kavram

1000BASE-T 4-Pair Cabling Requirement
Tahmini Süre:1m 30s
Soru 114Soru

A network administrator is evaluating the IPv4 configuration on a core router interface assigned the IP address 172.31.223.254/22172.31.223.254/22. Which of the following statements regarding this IPv4 addressing assignment are correct? (Select TWO.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: The configured interface IP address represents the last usable host IP address within the subnet.; The IP address falls within the RFC 1918 private IPv4 address space.

Cevap

The statements confirming that the configured interface IP address is the last usable host within the subnet and that the IP address belongs to the RFC 1918 private IPv4 space are correct.
The subnet mask 255.255.252.0 (/22) creates subnets in increments of 4 in the third octet. For 172.31.223.254, the network address is 172.31.220.0 and the broadcast address is 172.31.223.255. Therefore, 172.31.223.254 is the last assignable host address in the subnet. Furthermore, RFC 1918 specifies the Class B private range as 172.16.0.0 to 172.31.255.255, so this address is a valid private IPv4 address.

Adım Adım Çözüm

1
Determine host bits and total/usable address capacity for a /22 prefix.
A /22 prefix leaves 3222=1032 - 22 = 10 host bits. Total addresses = 210=1,0242^{10} = 1,024. Usable host capacity = 2102=1,0222^{10} - 2 = 1,022 host addresses.
Network ID and broadcast ID cannot be assigned to individual endpoints.
2
Calculate subnet network boundaries for 172.31.223.254/22172.31.223.254/22.
The subnet mask is 255.255.252.0255.255.252.0. The third octet block size is 256252=4256 - 252 = 4. Multiplying by 55 yields 55×4=22055 \times 4 = 220. The network ID is 172.31.220.0/22172.31.220.0/22, and the broadcast address is 172.31.223.255172.31.223.255.
Finding the block size in the interesting octet identifies the network boundary and broadcast address.
3
Determine the usable host IP address range.
The usable range is 172.31.220.1172.31.220.1 through 172.31.223.254172.31.223.254. Thus, 172.31.223.254172.31.223.254 is the last assignable host address.
Usable host addresses lie strictly between the network ID and the broadcast ID.
4
Verify RFC 1918 private address range compliance.
RFC 1918 designates 172.16.0.0/12172.16.0.0/12 (172.16.0.0172.31.255.255172.16.0.0 - 172.31.255.255) as private space. 172.31.223.254172.31.223.254 falls directly within this block.
Checking official RFC 1918 prefix allocations determines public versus private status.

Anahtar Kavram

IPv4 subnet boundary calculation, usable host calculation (2n22^n - 2), and RFC 1918 private IP address range boundaries.
Soru 115Soru

An engineer inspects the IPv6 neighbor discovery table on a Cisco router and observes the dynamically generated link-local address fe80::2e0:a3ff:fe14:5678 assigned to an auto-configured host interface. Based on the standard EUI-64 calculation process, what is the original burned-in MAC address of the host network interface card?

Cevabı ve açıklamayı göster

Cevap: 00e0.a314.5678

Cevap

The original burned-in MAC address of the host network interface card is 00e0.a314.5678.
To reverse the EUI-64 process for the interface ID 02e0:a3ff:fe14:5678, first remove the 16-bit 'FFFE' inserted into the middle, which leaves 02e0.a314.5678. Next, invert the 7th bit (Universal/Local bit) in the first byte. Hexadecimal 02 is binary 00000010; inverting the 7th bit produces binary 00000000 (hexadecimal 00). Therefore, the original MAC address is 00e0.a314.5678.

Adım Adım Çözüm

1
Isolate the 64-bit interface identifier from the link-local IPv6 address
The interface identifier portion of fe80::2e0:a3ff:fe14:5678 is 02e0:a3ff:fe14:5678.
Link-local addresses append a 64-bit interface identifier to the fe80::/64 prefix.
2
Remove the 16-bit FFFE value inserted into the middle of the EUI-64 interface identifier
Removing 'ff:fe' from 02e0:a3ff:fe14:5678 leaves 02e0:a314:5678.
The EUI-64 process creates a 64-bit interface ID from a 48-bit MAC by inserting FFFE (1111 1111 1111 1110) between the 3rd and 4th bytes of the MAC address.
3
Invert the 7th bit (Universal/Local bit) of the first octet to restore the original MAC address
First octet 02 (0000 0010 binary) inverted at the 7th bit yields 00 (0000 0000 binary), resulting in MAC 00e0.a314.5678.
EUI-64 generation flips the 7th bit of the first byte (changing 0 for universal to 1 for local); reversing the process requires flipping this bit back.

Anahtar Kavram

Reversing standard IPv6 EUI-64 interface identifier generation to recover the original 48-bit MAC address
Tahmini Süre:1m 30s
Soru 116Soru

An enterprise network relies on standard Syslog services over UDP port 514 to collect event logs from remote edge switches. When comparing transport protocol characteristics, which header feature directly accounts for UDP's lower processing overhead compared to TCP?

Cevabı ve açıklamayı göster

Cevap: UDP utilizes a fixed 8-byte header that omits fields for connection state tracking, flow control, and acknowledgments.

Cevap

UDP utilizes a fixed 8-byte header that omits fields for connection state tracking, flow control, and acknowledgments.
UDP is designed for low-overhead, best-effort transport. Its header contains only 4 fields totaling 8 bytes: Source Port (2 bytes), Destination Port (2 bytes), Length (2 bytes), and Checksum (2 bytes). By leaving reliability, sequencing, and flow control to application layers or accepting packet loss, UDP avoids the 20-byte minimum header and state maintenance required by TCP.

Adım Adım Çözüm

1
Analyze transport layer header structures
TCP headers require a minimum of 20 bytes to support sequence numbers, acknowledgment numbers, window sizes, flags, and control mechanisms. UDP headers consist of only 8 bytes (4 fields: Source Port, Destination Port, Length, and Checksum).
Lower header size directly reduces data overhead per packet.
2
Evaluate protocol feature set differences
UDP is connectionless and stateless. It does not establish sessions, manage flow control (windowing), perform segment sequencing, or require ACKs.
Omitting operational state management reduces router/host CPU and memory processing overhead.

Anahtar Kavram

TCP vs UDP Header Overhead and Protocol Mechanics
Soru 117Soru

A network administrator is verifying IPv6 autoconfiguration on a Cisco router interface. The interface has a burned-in MAC address of `7069.5a12.3456` and is configured with the command `ipv6 address 2001:db8:abc:10::/64 eui-64`. Based on standard EUI-64 interface identifier construction and IPv6 address formats, which TWO statements regarding the resulting IPv6 configuration on this interface are correct?

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: The derived 64-bit EUI-64 interface identifier for this interface is `7269:5aff:fe12:3456`.; The dynamically generated link-local IPv6 address for this interface begins with the `fe80::/10` prefix combined with the modified interface identifier.

Cevap

The two correct statements are: (1) The derived 64-bit EUI-64 interface identifier for this interface is `7269:5aff:fe12:3456`, and (2) The dynamically generated link-local IPv6 address for this interface begins with the `fe80::/10` prefix combined with the modified interface identifier.
Generating an IPv6 EUI-64 interface identifier from a 48-bit MAC address requires two transformations: toggling the 7th bit of the first byte (changing 0x70 to 0x72) and inserting FFFE into the midpoint, forming the 64-bit identifier `7269:5aff:fe12:3456`. Additionally, IPv6 automatically configures a link-local address on the interface using the designated prefix `fe80::/10` combined with this EUI-64 identifier.

Adım Adım Çözüm

1
Split the 48-bit MAC address into two 24-bit halves
Left half: `70-69-5A`, Right half: `12-34-56`
EUI-64 generation requires inserting a 16-bit delimiter into the middle of the MAC address.
2
Invert the 7th bit (Universal/Local bit) of the first byte
First byte `0x70` in binary is `0111 0000`. Inverting the 7th bit (2nd least significant bit of first byte) yields `0111 0010` in binary, which is `0x72`. The first half becomes `7269.5a`.
Inverting the U/L bit indicates that the address has been modified for global uniqueness scoping in IPv6 EUI-64.
3
Insert `FFFE` at the midpoint between the two halves
`7269:5A` + `FFFE` + `:123456` = `7269:5aff:fe12:3456`
This expands the 48-bit MAC address into a 64-bit interface identifier.
4
Verify the link-local prefix and global unicast address formation
Link-local address = `fe80::7269:5aff:fe12:3456`, Global unicast address = `2001:db8:abc:10:7269:5aff:fe12:3456`
Link-local addresses always use the `fe80::/10` prefix block (specifically formatted as `fe80::/64`).

Anahtar Kavram

IPv6 EUI-64 Interface Identifier Derivation and Link-Local Address Scoping
Tahmini Süre:2m 0s
Soru 118Soru

A network engineer inspects packet captures from a server connection and notes a transport layer header size of 20 bytes featuring Sequence Number and Window Size fields. Which statement correctly identifies the transport protocol in use and its operational trade-off relative to UDP?

Cevabı ve açıklamayı göster

Cevap: The packet uses TCP, which provides reliable connection-oriented delivery and flow control but incurs higher header overhead and processing delay than UDP.

Cevap

The packet uses TCP, which provides reliable connection-oriented delivery and flow control but incurs higher header overhead and processing delay than UDP.
The presence of a 20-byte header along with Sequence Number and Window Size fields indicates the Transmission Control Protocol (TCP). TCP is connection-oriented and stateful, providing retransmission, sequencing, and flow control. The trade-off for these features is higher header overhead (20 bytes minimum compared to UDP's fixed 8 bytes) and additional latency required for state tracking.

Adım Adım Çözüm

1
Analyze the header characteristics in the packet capture.
Identified a 20-byte transport header with Sequence Number and Window Size fields.
These fields and the 20-byte minimum size specifically belong to the TCP header; UDP headers are fixed at 8 bytes.
2
Evaluate protocol operational mechanics and trade-offs.
TCP provides stateful, reliable connection management and windowing-based flow control at the cost of higher overhead.
The extra header fields (20 bytes vs UDP's 8 bytes) and acknowledgment mechanisms guarantee in-order delivery but introduce latency and bandwidth overhead.

Anahtar Kavram

TCP vs UDP Header Overhead and Reliability Mechanics
Soru 119Soru

Match each IPv6 prefix or address block on the left with its correct architectural scope and function on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

2000::/3
fe80::/10
fc00::/7
ff02::2

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

2000::/3 matches Global Unicast Address range reserved for publicly routable Internet communication; fe80::/10 matches Link-Local unicast prefix mandatory for single-segment neighbor communication; fc00::/7 matches Unique Local Address prefix used for private internal site routing; ff02::2 matches All-routers link-local multicast address targeting all routers on the segment.
Each IPv6 address prefix maps precisely to its RFC-defined scope: 2000::/3 is Global Unicast, fe80::/10 is Link-Local, fc00::/7 is Unique Local, and ff02::2 is the all-routers multicast group address.

Adım Adım Çözüm

1
Identify the primary block for Global Unicast Addresses (GUA)
2000::/3 encompasses all addresses from 2000:: through 3fff:ffff:ffff:ffff:ffff:ffff:ffff:ffff, which are globally routable.
IANA allocates GUA prefix blocks starting within the 2000::/3 range.
2
Identify the designated Link-Local unicast prefix scope
fe80::/10 defines the range fe80:: through febf:ffff:ffff:ffff:ffff:ffff:ffff:ffff used for intra-link communication.
IPv6 devices use link-local addresses for neighbor discovery and router solicitations.
3
Identify the private/internal IPv6 address range
fc00::/7 covers the block fc00:: through fdff:ffff:ffff:ffff:ffff:ffff:ffff:ffff for Unique Local Addresses.
ULAs provide non-globally routable addressing within private organizational boundaries.
4
Identify specific well-known IPv6 multicast group addresses
ff02::2 is the link-local scope multicast address received by all active routers on a network segment.
Multicast prefix ff00::/8 uses the scope indicator 2 (link-local) and group ID 2 (all routers).

Anahtar Kavram

IPv6 Address Scopes and Reserved Prefixes
Soru 120Soru

Match each fully expanded IPv6 address on the left with its standard canonical compressed representation on the right according to RFC 5952 rules.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

2001:0db8:0000:0000:0042:0000:0000:0001
2001:0db8:0000:00ab:0000:0000:0000:0001
fe80:0000:0000:0000:0000:0000:0000:0001
2001:0db8:0000:0000:0000:00b0:0000:0000

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

The correct pairings match each expanded IPv6 address to its RFC 5952 canonical compressed form: 2001:0db8:0000:0000:0042:0000:0000:0001 pairs with 2001:db8::42:0:0:1; 2001:0db8:0000:00ab:0000:0000:0000:0001 pairs with 2001:db8:0:ab::1; fe80:0000:0000:0000:0000:0000:0000:0001 pairs with fe80::1; and 2001:0db8:0000:0000:0000:00b0:0000:0000 pairs with 2001:db8::b0:0:0.
The correct pairings strictly adhere to RFC 5952 canonical formatting rules: leading zeros within any 16-bit field are omitted, the single longest contiguous sequence of zero-value 16-bit fields is replaced with ::, and when sequences of zero fields are equal in length, the first sequence is compressed.

Adım Adım Çözüm

1
Remove leading zeros from each 16-bit hexadecimal field (hextet).
Fields such as '0db8' become 'db8', '0042' becomes '42', '0000' becomes '0', and '0001' becomes '1'.
RFC 5952 requires leading zeros to be suppressed in every hextet.
2
Identify contiguous zero hextets and apply the double colon (::) compression rule.
For 2001:0db8:0000:0000:0042:0000:0000:0001, there are two equal runs of 2 zero hextets. Compress the first run to yield 2001:db8::42:0:0:1.
When zero sequences are of equal length, RFC 5952 requires compressing the first sequence.
3
Evaluate remaining addresses for longest zero sequence compression.
Compress the sequence of 3 zero hextets in 2001:0db8:0000:00ab:0000:0000:0000:0001 to get 2001:db8:0:ab::1, and the 6 zero hextets in fe80:0000:0000:0000:0000:0000:0000:0001 to get fe80::1.
The double colon must represent the maximum possible consecutive zero hextets when lengths differ.

Anahtar Kavram

IPv6 Address Compression and Canonical Representation (RFC 5952)
ÖncekiSayfa 6 / 20Sonraki
Network Fundamentals Alıştırma Soruları — Cisco CCNA — Sayfa 6 | Examkin