Przejdลบ do treล›ci

๐ŸŒ Advanced Networking

Deep-dive into Linux networking for DevOps and SRE.


๐Ÿ”ง Routing

1
2
ip r
ip route add 10.0.0.0/24 via 192.168.1.1

๐Ÿงฑ DNS Debugging

1
2
3
dig example.com
nslookup example.com
systemd-resolve --status

๐Ÿ”ง Packet Capture

1
sudo tcpdump -i eth0 port 80

๐Ÿงฉ Network Namespaces

1
2
ip netns add test
ip netns exec test bash

๐Ÿ”ฅ Firewall Debugging

1
2
sudo iptables -L -v
sudo nft list ruleset

๐Ÿšจ Common Issues

  • DNS misconfiguration
  • Wrong gateway
  • Firewall blocking traffic
  • Docker network conflicts