Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
IT Security ToolsTBP-NETWORK(24.09.2026 um 20:28 Uhr)
•
Malware / Trojaner / VirenIT Security News Hourly Summary 2026-09-24 21h : 10 posts(24.09.2026 um 21:00 Uhr)
•
IT Security NachrichtenAI Helps Uncover MikroTrick Attack Chain in MikroTik RouterOS(24.09.2026 um 20:16 Uhr)
•••••
IT Security NachrichtenHow I made my Android home screen look and feel more like iOS(24.09.2026 um 21:08 Uhr)
••
IT Security DownloadsGitHub Release: anthropics/claude-code v2.1.282 (24.09.2026)(24.09.2026 um 20:38 Uhr)
•
IT Security ToolsTBP-NETWORK(24.09.2026 um 20:28 Uhr)
•
Malware / Trojaner / VirenIT Security News Hourly Summary 2026-09-24 21h : 10 posts(24.09.2026 um 21:00 Uhr)
•
IT Security NachrichtenAI Helps Uncover MikroTrick Attack Chain in MikroTik RouterOS(24.09.2026 um 20:16 Uhr)
•••••
IT Security NachrichtenHow I made my Android home screen look and feel more like iOS(24.09.2026 um 21:08 Uhr)
••
IT Security DownloadsGitHub Release: anthropics/claude-code v2.1.282 (24.09.2026)(24.09.2026 um 20:38 Uhr)
•
Intelligence View
⚡ tsecurity.de Intelligence

Understanding Basic Networking Fundamentals as a Devops Engineer

Networking is one of the most important foundations for anyone learning DevOps. Whether you’re working with servers, containers, cloud platforms, or automation tools, everything relies on systems communicating with each other c…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

Networking is one of the most important foundations for anyone learning DevOps. Whether you’re working with servers, containers, cloud platforms, or automation tools, everything relies on systems communicating with each other correctly.



This post is a simple, beginner-friendly guide covering the essential networking concepts I learned early in my DevOps journey. By the end, you’ll understand IP addressing, subnets, DNS, ports, routing, SSH, and common Linux networking tools.









1. What Is Networking?



Networking is the practice of connecting devices so they can share information. Every time you browse a website, access a server, or deploy an application, networking is involved.



Different types of networks serve different purposes:




























Type Description Example
LAN Covers a small area Home Wi-Fi, office network
MAN Covers a city-sized area City-wide fiber or Wi-Fi
WAN Connects networks across long distances The Internet


Even large cloud providers like Azure, AWS and Google Cloud are built on top of massive WAN infrastructures.









2. IP Addressing



Every device on a network has an IP address. It acts like a home address: without it, data wouldn’t know where to go.






IPv4 Format



IPv4 addresses are written in four sections:




192.168.1.10






Each IP contains:





  • Network ID – identifies the network


  • Host ID – identifies the device inside that network



Although older systems used fixed “classes” (Class A, B, C), modern networks rely on CIDR notation for flexibility.









3. CIDR and Subnetting



Subnetting is the process of dividing a network into smaller parts. DevOps engineers work with subnets all the time in cloud environments like AWS VPCs or when designing Docker/Kubernetes networks.






CIDR Basics



CIDR notation looks like this:




10.0.0.0/24






The number after the slash tells you how many bits belong to the network. The rest are for hosts.



Example:





  • /24 → 24 bits for network, 8 bits for hosts

  • Host capacity → 2^8 = 256 total IPs (254 usable)






Subnetting Example



If you divide a /24 network into four equal networks:




  • You borrow 2 bits

  • New CIDR becomes /26

  • Each subnet has 64 IP addresses






Another Example: Divide 10.0.0.0/24 Into 8 Subnets



Borrow 3 bits:




2^3 = 8 subnets






Each subnet becomes /27.



This level of subnetting is common when organizing infrastructure into dev, staging, and production networks.



If you want to check your work, the ipcalc tool helps:




ipcalc 192.168.10.0/26












4. DNS: Turning Names Into IPs



Computers communicate using IP addresses, but humans remember names. DNS (Domain Name System) converts readable names like:




google.com






into machine-friendly IP addresses.






How DNS Resolution Works




  1. You enter a domain in your browser.

  2. Your computer checks its local DNS cache.

  3. If it’s not found, it asks a DNS resolver (like 8.8.8.8).

  4. The resolver contacts DNS servers to find the IP.

  5. The IP is returned to your system.

  6. Your computer connects to the website.



Useful commands:




dig google.com
nslookup google.com






In DevOps, DNS issues often cause “site not reachable” or “service can’t connect” errors.









5. Ports and Protocols



An IP address can host many services. Ports help differentiate them.



Examples:




  • 22 → SSH

  • 80 → HTTP

  • 443 → HTTPS

  • 53 → DNS

  • 3306 → MySQL






TCP vs UDP





  • TCP is reliable and connection-oriented (used for SSH, HTTPS, APIs).


  • UDP is faster but connectionless (used for DNS, streaming, VoIP).



Check open ports:




ss -tuln






Or test a web server:




curl -I https://example.com












6. Routing and Gateways



A gateway is the device that forwards your traffic to other networks. On home networks, your router serves that role.



View your routing table:




ip route show






You will usually see a line like:




default via 192.168.1.1






This means anything not on your local network goes through the router.



To see how your packet travels to a website:




traceroute google.com






This helps diagnose slow or failing network paths.









7. Essential Linux Networking Tools



These commands are used daily by DevOps engineers to diagnose issues.




































Command Purpose
ping Test basic connectivity
traceroute See the path traffic takes
curl Make HTTP requests
ss / netstat Check open ports and connections
dig / nslookup Inspect DNS
telnet or nc Test if a port is open


Examples:




ping google.com
curl -I https://google.com
telnet google.com 443






Understanding these tools makes network debugging much easier.









8. SSH: Secure Remote Access



SSH (Secure Shell) is how DevOps engineers connect to remote Linux servers.



Basic usage:




ssh user@server_ip






SSH encrypts all traffic and is far safer than older remote-login methods.






SSH Keys



SSH keys allow password-less authentication.



Generate keys:




ssh-keygen






Upload the public key:




ssh-copy-id user@server_ip






Most cloud platforms (AWS, DigitalOcean, Azure) depend heavily on SSH keys for secure access.









9. A Small Practice Lab (Optional)



Try these on your system:




  1. Find your IP and default gateway

  2. Use ping, curl, and traceroute on any website

  3. Use dig to look up the IP of a domain

  4. SSH into a local VM or server

  5. Subnet 10.0.0.0/24 into 8 subnets

  6. Describe what happens when you run:




ping google.com






Hands-on practice will cement your understanding.









Final Thoughts



Networking isn’t just “another topic” in DevOps—it’s the foundation everything else sits on. You’ll need it when working with Docker, Kubernetes, cloud networking (AWS VPCs), load balancers, service discovery, firewalls, and CI/CD pipelines.



You now understand the essentials:




  • What networks are and how devices communicate

  • How IP addresses and subnets work

  • Why DNS is critical

  • How ports enable multiple services

  • How routing moves traffic

  • How to test and troubleshoot connectivity

  • How to access servers using SSH



Master these fundamentals and you’ll be ready to tackle more advanced DevOps networking topics like load balancing, NAT, container networking, and Kubernetes networking.

IoC Intelligence (1 Indikatoren)
8[.]8[.]8[.]8
CTI Threat Relationship Graph4 Knoten / 3 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
SOC Incident Playbook: Vulnerability Remediation & Verification
title: Detect Exploitation - Understanding Basic Networking Fundamentals as a Devops Engineer
id: f366df70-e075-4633-b518-cb7a82877c92
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      DestinationIp:
        - '8.8.8.8'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "Understanding Basic Networking" ascii wide
    condition:
        any of them
}
index=security sourcetype IN ("cisco:asa", "pan:traffic", "zeek_conn", "suricata", "WinEventLog:Security")
(dest_ip="8.8.8.8")
| stats count earliest(_time) as first_seen latest(_time) as last_seen by src_ip, dest_ip, dest_host, signature
| eval first_seen=strftime(first_seen, "%Y-%m-%d %H:%M:%S"), last_seen=strftime(last_seen, "%Y-%m-%d %H:%M:%S")
| sort - count
destination.ip: ("8.8.8.8") and event.category: "network"
CommonSecurityLog
| where DestinationIP in ("8.8.8.8")
| summarize EventCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated) by SourceIP, DestinationIP, DestinationPort, Activity
| extend DetectionRule = "iShareStuff-CTI-Compiled"
| sort by EventCount desc
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich Understanding Basic Networking Fundament.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

⚡ Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Understanding Basic Networking Fundamentals as a Devops Engineer

Thematisch verwandte Begriffe: Understanding, Basic, Networking, Fundamentals · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-57175 | Python Social Auth is a social authentication/registration mechanism. Pr…
Advisory →
tsecurity.de Icon
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel • Rechts: nächster Artikel • unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...
↗ Original-Quelle