Modul 2 von 16 · 📖 4 min Lesezeit · ⏱ 45 min gesamt

FUTO 02 Netzwerk-Grundlagen (EN)

Inhaltsverzeichnis (6 Abschnitte)
  1. Concepts and Background
  2. Architecture Diagram
  3. Practical Steps
  4. Common Pitfalls
  5. Additional Resources
  6. Knowledge Check

FUTO 02 Network Fundamentals

In this module, you will learn the fundamental concepts of network management that are essential for building and operating a self-managed IT infrastructure. You will understand how devices communicate with each other, how network areas can be logically separated, and how data flow is structured in your infrastructure.

You will acquire practical skills in subnetting, configuration of network components, and network troubleshooting. This knowledge forms the foundation for secure and efficient network architectures in your organization.

Concepts and Background

IP Addresses
Unique identifiers for devices in a network that are used for communication according to the TCP/IP protocol. IPv4 consists of 32 bits, IPv6 of 128 bits.
Subnetting
The division of a larger network into smaller, logical subnets to improve performance, security, and management.
NAT (Network Address Translation)
A method that allows multiple devices in a private network to access the internet through a single public IP address.
DHCP (Dynamic Host Configuration Protocol)
A protocol that enables the automatic assignment of IP addresses and other network parameters to devices in a network.
Routing
The process of forwarding data packets between different networks by specialized devices such as routers.

Architecture Diagram

flowchart LR
  A[Internet] --> B(pfSense)
  B --> C[LAN]
  B --> D[DMZ]
  C --> E[Server]
  C --> F[Workstations]
  D --> G[Webserver]
  D --> H[Mailserver]

Practical Steps

  1. Plan your network layout with public and private address ranges. This prevents conflicts with existing networks.
  2. Configure the static IP address for your router/gateway in the LAN area. This ensures that your network components are always reachable.
  3. Create subnets for different departments or functional areas. This improves security and network performance.
  4. ip addr add 192.168.1.1/24 dev eth0
    Configure the subnet mask for your network to correctly define the network and host portions.
  5. Enable DHCP on your router to assign IP addresses automatically. This significantly simplifies the management of client devices.
  6. Configure NAT on your gateway to enable internet access for all clients in the network. This is essential for most private networks.
  7. Set up VLANs on your switch to logically separate network segments. This increases security and reduces broadcast domains.
  8. Test network connectivity between different subnets using the command
    ping 192.168.2.1
    . This ensures that your routing is working correctly.

Common Pitfalls

Additional Resources

Knowledge Check

Four questions for self-assessment. Click on each question to see the correct answer and explanation.

What is the main purpose of subnetting in a network?
  • A) To increase the speed of the network connection
  • B) To divide a larger network into smaller, logical subnets to improve performance, security, and management
  • C) To maximize the number of available IP addresses
  • D) To change the physical structure of the network

Correct Answer: B. Subnetting serves to logically divide a network, not to physically change it or maximize IP addresses.

What is the main function of DHCP in a network?
  • A) To increase network security by authenticating devices
  • B) To forward data packets between different networks
  • C) To enable the automatic assignment of IP addresses and other network parameters to devices
  • D) To monitor and optimize network performance

Correct Answer: C. DHCP is specifically responsible for the automatic configuration of network parameters such as IP addresses, not for routing or security.

Which protocol allows multiple devices in a private network to access the internet through a single public IP address?
  • A) DHCP
  • B) Subnetting
  • C) NAT
  • D) Routing

Correct Answer: C. NAT (Network Address Translation) is the specific method that enables this address translation, while DHCP is responsible for IP assignment and routing for packet forwarding.

Which command would configure a static IP address with subnet mask /24 for a network interface eth0?
  • A) ip addr add 192.168.1.1/24 dev eth0
  • B) ifconfig eth0 192.168.1.1 netmask 255.255.255.0
  • C) set ip address 192.168.1.1/24 interface eth0
  • D) configure eth0 ip 192.168.1.1/24

Correct Answer: A. The command with 'ip addr add' is the modern syntax for IP configuration in Linux, while the other options are syntactically incorrect or use outdated commands.