Shopping cart

Subtotal:

$0.00

220-1101 Networking

Networking

Detailed list of 220-1101 knowledge points

Networking Detailed Explanation

Basic Networking Concepts

Network Types

  1. Local Area Network (LAN):

    • A LAN is a network confined to a small area, such as a home, school, or office.
    • It connects devices like computers, printers, and servers to share resources.
    • Typically uses Ethernet cables or Wi-Fi for communication.
  2. Wide Area Network (WAN):

    • A WAN spans a large geographical area, such as a city, country, or even globally.
    • The Internet is the largest example of a WAN.
    • Often connects multiple LANs using routers and public communication links (e.g., fiber optics).
  3. Wireless LAN (WLAN):

    • A WLAN is a wireless version of a LAN, allowing devices to connect via Wi-Fi.
    • Commonly used in homes, cafes, and offices.
    • Provides mobility but may have a shorter range compared to wired LANs.
  4. Peer-to-Peer (P2P) Networks:

    • In a P2P network, devices communicate directly with each other without a central server.
    • Common in small networks, such as file-sharing or gaming setups.
    • Simple to set up but less secure and harder to scale.
  5. Client-Server Networks:

    • In this model, a central server manages resources, security, and data sharing.
    • Clients (e.g., PCs) request services from the server.
    • Common in businesses due to improved security and scalability.

Network Protocols

  1. TCP/IP:

    • Transmission Control Protocol/Internet Protocol is the backbone of Internet communication.
    • TCP ensures data packets are delivered reliably and in order.
    • IP handles addressing and routing the packets to their destination.
  2. Common Protocols and Applications:

    • HTTP/HTTPS: Used for accessing websites; HTTPS encrypts data for secure communication.
    • FTP (File Transfer Protocol): Used to transfer files between devices.
    • SMTP (Simple Mail Transfer Protocol): Sends emails.
    • POP3 (Post Office Protocol 3): Retrieves emails from a server to a local device.

Network Addressing

  1. IPv4:

    • Format: Four sets of numbers (e.g., 192.168.1.1), each ranging from 0-255.
    • Subnetting divides networks into smaller segments, improving management and security.
    • IPv4 supports ~4.3 billion addresses, which are running out.
  2. IPv6:

    • Format: Eight groups of hexadecimal numbers (e.g., 2001:0db8:85a3:0000:0000:8a2e:0370:7334).
    • Provides an almost unlimited number of addresses.
    • Offers built-in security features and better efficiency for modern networks.

Networking Devices

Routers and Switches

  1. Routers:

    • Connects multiple networks and directs data between them.
    • Can also provide features like firewalls, NAT (Network Address Translation), and DHCP.
    • Configuration involves setting up the WAN interface (e.g., ISP connection) and LAN settings.
  2. Switches:

    • Operates within a LAN to connect devices like PCs and printers.
    • Uses MAC addresses to forward data directly to the destination device.
    • Typically doesn’t manage traffic between networks (that’s a router’s job).
  3. Routing Tables:

    • Stores information about routes to different networks.
    • Used by routers to decide the best path for forwarding packets.
  4. Switching Tables:

    • Maintains a list of MAC addresses and the corresponding ports.
    • Ensures data is sent only to the intended device, improving efficiency.

Wireless Access Points (APs)

  1. Frequency Selection:

    • 2.4GHz:
      • Longer range but slower speeds.
      • More prone to interference from other devices like microwaves.
    • 5GHz:
      • Shorter range but higher speeds.
      • Ideal for high-bandwidth activities like streaming or gaming.
  2. SSID (Service Set Identifier):

    • The name of a Wi-Fi network.
    • Can be broadcasted for visibility or hidden for additional security.

Network Connections

Wired Connections

  1. Ethernet (RJ45):

    • Standard for wired LAN connections.
    • Speeds:
      • 10 Mbps: Older standard.
      • 100 Mbps: Fast Ethernet.
      • 1000 Mbps (1 Gbps): Gigabit Ethernet, common today.
  2. Fiber Optics:

    • Transmits data as light pulses through glass or plastic fibers.
    • Advantages:
      • Extremely fast (up to terabits per second).
      • Immune to electromagnetic interference.
    • Disadvantages:
      • More expensive than Ethernet.
      • Fragile and requires specialized installation.

Wireless Connections

  1. Wi-Fi Standards:

    • 802.11a/b/g/n/ac/ax:
      • 802.11b/g: Slower but uses the widely compatible 2.4GHz band.
      • 802.11ac: Operates on 5GHz with faster speeds.
      • 802.11ax (Wi-Fi 6): Improves speed, range, and the ability to handle multiple devices.
  2. Security Protocols:

    • WPA2:
      • Industry standard for Wi-Fi encryption.
      • Uses AES (Advanced Encryption Standard) for secure communication.
    • WPA3:
      • Enhanced version of WPA2 with stronger encryption and better protection against brute-force attacks.

Network Troubleshooting

Using Command-Line Tools

  1. ping:

    • Tests connectivity between two devices.
    • Example: ping google.com sends packets to Google and measures the time taken to receive a response.
  2. tracert (Trace Route):

    • Shows the path data takes from your device to its destination.
    • Useful for diagnosing where connectivity issues occur in the route.
  3. nslookup:

    • Queries DNS servers to resolve domain names into IP addresses.
    • Example: nslookup google.com provides Google’s IP address.

Common Issues

  1. IP Conflicts:

    • Occur when two devices are assigned the same IP address.
    • Resolve by setting devices to obtain IPs automatically via DHCP or manually assigning unique addresses.
  2. Network Disconnection or Weak Signals:

    • Causes:
      • Interference (e.g., other wireless networks, physical obstacles).
      • Faulty cables or connectors for wired networks.
    • Solutions:
      • For wireless:
        • Move closer to the router.
        • Change the channel on the router to reduce interference.
      • For wired:
        • Replace cables and verify connector integrity.

Conclusion

This detailed guide to Networking covers foundational concepts, practical applications, and troubleshooting strategies. Start by understanding basic concepts like LANs and TCP/IP before moving on to hands-on practices such as configuring routers or resolving common network issues.

Networking (Additional Content)

1. Additional Protocols and Their Troubleshooting Relevance

DHCP (Dynamic Host Configuration Protocol)

Purpose and Function

  • Automatically assigns network settings to devices:

    • IP address

    • Subnet mask

    • Default gateway

    • DNS server (optional)

Common Use Case in Exams

  • Appears frequently in troubleshooting questions such as:

    • “The user reports the computer has an IP address starting with 169.254.x.x.”
      → This suggests a DHCP failure and the system has assigned itself an APIPA address.

Key Points to Remember

  • DHCP uses a client-server model.

  • A device sends a DHCPDISCOVER broadcast to locate a DHCP server.

  • The server responds with a DHCPOFFER, and the device accepts a lease.

DNS (Domain Name System)

Purpose and Function

  • Translates domain names (like google.com) into IP addresses (142.250.64.78).

  • Allows users to connect to websites using human-readable names rather than IP addresses.

Common Use Case in Exams

  • “User can ping IP addresses but cannot load websites.”
    → This indicates a DNS configuration issue.

Diagnostic Tools

  • nslookup: Tests DNS resolution

  • Changing DNS server to 8.8.8.8 (Google DNS) is a common fix in troubleshooting.

2. Port Numbers (Must-Know for Exam)

Many A+ questions will ask you to identify protocols by their port numbers or vice versa. Here's a reference summary:

Common Ports to Memorize

Protocol Port Number Description
HTTP 80 Unencrypted web traffic
HTTPS 443 Secure web traffic (SSL/TLS)
FTP 21 File Transfer Protocol
SMTP 25 Sends email
POP3 110 Retrieves email from mail server
DNS 53 Domain name resolution
DHCP 67 (server), 68 (client) IP configuration via broadcast

Exam Tip

  • Know both the service and its default port number.

  • Some questions may test with “Which port is used by DNS?” or “Which protocol uses port 110?”

3. Network Cable Types and Distance Standards

Ethernet Cable Categories

Cable Type Max Speed Max Distance Shielding Common Use Cases
Cat 5e Up to 1 Gbps 100 meters UTP Standard office/home LAN
Cat 6 Up to 10 Gbps 55–100 meters UTP/STP Gigabit networks with EMI
Cat 6a Up to 10 Gbps 100 meters STP Data centers or high EMI areas
Cat 7 Up to 10+ Gbps 100 meters STP Industrial and enterprise use

UTP vs STP

  • UTP (Unshielded Twisted Pair): Standard and cost-effective

  • STP (Shielded Twisted Pair): Prevents signal interference in noisy environments

Exam Relevance

  • Expect scenario questions such as:
    “Which cable would BEST reduce electromagnetic interference in a high-interference environment?”
    → Answer: Cat 6a STP or Cat 7

4. MAC Address vs IP Address

MAC Address (Media Access Control)

Definition

  • A physical address embedded in the network interface card (NIC) at manufacturing.

  • Format: 00:1A:2B:3C:4D:5E (hexadecimal, 48 bits)

  • Unique to each device; cannot be routed across networks.

Usage

  • Used within LANs for device identification.

  • Switches use MAC addresses to forward traffic via their MAC address table.

IP Address (Internet Protocol)

Definition

  • A logical address assigned to devices by DHCP or manually configured.

  • IPv4 example: 192.168.1.10

  • Can change depending on network configuration.

Usage

  • Used by routers to forward data between different networks (LAN to WAN).

  • Enables internet and wide-area communication.

Exam Comparison Example

Feature MAC Address IP Address
Type Physical (burned-in) Logical (assignable)
Layer OSI Layer 2 OSI Layer 3
Forwarded by Switches Routers
Format Hexadecimal (48-bit) Decimal (IPv4 or IPv6)

Common Exam Question
“Which address does a switch use to forward frames?”
MAC address (Layer 2 switching)

Summary

These supplemental topics reinforce key networking concepts that are highly testable:

  • DHCP and DNS play a major role in IP assignment and name resolution.

  • Port numbers are essential for identifying services and protocols.

  • Ethernet cable types must be understood in terms of speed, shielding, and length limits.

  • MAC vs IP is foundational for distinguishing switching from routing behavior.

Understanding and applying these concepts in troubleshooting scenarios is critical for A+ certification success.

Frequently Asked Questions

Why does a device receive an APIPA address instead of a normal network IP address?

Answer:

The device could not reach a DHCP server to obtain an IP address.

Explanation:

APIPA (Automatic Private IP Addressing) assigns an address in the 169.254.x.x range when a device cannot contact a DHCP server. This typically occurs when the DHCP server is unavailable, the device is connected to the wrong network segment, or network communication with the DHCP server fails. APIPA allows limited communication with other devices on the same subnet but prevents access to external networks. Technicians should check DHCP service status, switch connectivity, and network configuration when troubleshooting.

Demand Score: 86

Exam Relevance Score: 88

Which wireless frequency band typically provides the longest coverage range in Wi-Fi networks?

Answer:

The 2.4 GHz band provides the longest coverage range.

Explanation:

Lower frequency signals such as 2.4 GHz travel farther and penetrate walls more effectively than higher frequencies. While 5 GHz offers higher data throughput and reduced interference due to additional channels, its signal attenuates more quickly through obstacles. Because of this, 2.4 GHz is often used to extend coverage across larger areas, while 5 GHz is used for faster connections at shorter distances.

Demand Score: 80

Exam Relevance Score: 85

What is the primary role of a default gateway in a network?

Answer:

The default gateway routes traffic from the local network to external networks.

Explanation:

When a device sends traffic to an IP address outside its local subnet, the packet is forwarded to the default gateway. The gateway—usually a router—then determines the correct path to the destination network. Without a configured default gateway, devices can communicate only with systems within the same local network. Misconfigured gateways commonly result in internet connectivity failures.

Demand Score: 72

Exam Relevance Score: 84

Which device typically assigns IP addresses automatically in a small network?

Answer:

A DHCP server assigns IP addresses automatically.

Explanation:

Dynamic Host Configuration Protocol (DHCP) automates IP address allocation for network devices. When a client joins the network, it broadcasts a DHCP request. The DHCP server responds with an available IP address, subnet mask, default gateway, and DNS server information. This process eliminates the need for manual IP configuration and reduces addressing errors.

Demand Score: 76

Exam Relevance Score: 83

Why might a user experience interference on the 2.4 GHz wireless band?

Answer:

Because many household devices operate on the 2.4 GHz frequency range.

Explanation:

The 2.4 GHz band is widely used by devices such as microwave ovens, Bluetooth equipment, cordless phones, and wireless cameras. Since fewer non-overlapping channels exist in this band, interference between devices is more likely. This congestion can reduce network speed and reliability. Using the 5 GHz band or selecting less congested channels can mitigate interference issues.

Demand Score: 70

Exam Relevance Score: 82

220-1101 Training Course