2025-09-18
Introduction Netplan is a utility for declarative network configuration in Linux (Ubuntu, Debian, and derivatives). It is usually used for simple cases like Ethernet or Wi-Fi, but it can do much more:
tunnel interfaces …
Read more2025-09-17
Introduction Imagine: ping works, DNS responds, ports are open, mtr shows no loss, but curl returns errors like connection reset by peer or SSL handshake failed. There’s clearly a problem, but standard tools are …
Read more2025-09-16
Introduction Up to this point, we’ve used simple utilities for specific tasks:
ping checked connectivity, traceroute showed the path, ipconfig and arp helped with the local network, telnet and nc tested ports. That’s …
Read more2025-09-15
Introduction A server’s IP address is like the postal address of an apartment building. But to reach the right apartment, you need the door number. In networking, these doors are ports.
HTTP runs on port 80. HTTPS — on …
Read more2025-09-14
Introduction You’ve gone through all the checks from the previous articles:
The computer has the correct IP address (ipconfig). The router responds (ping 192.168.1.1). Ping to a public address (ping 8.8.8.8) works. Looks …
Read more2025-09-13
Introduction In the previous article, we learned how to reach out to remote servers using ping and trace the path of packets with traceroute. But what if ping google.com doesn’t work, and traceroute stops right at the …
Read more2025-09-12
Introduction Modern users expect web applications to work as fast and responsive as native software. Chats, stock quotes, collaborative document editing — all these scenarios require instant data exchange. In this …
Read more2025-09-06
Introduction Choosing a web server and reverse proxy today depends on tasks and infrastructure. Caddy, Traefik, HAProxy, Nginx, and Apache are five popular solutions, each with its strengths and weaknesses.
In this …
Read more2025-09-05
Introduction Unlike Caddy, which focuses on simplicity, Traefik (pronounced Traffic) was built to solve one specific task: routing traffic in dynamic environments.
It is a reverse proxy and load balancer designed …
Read more2025-09-05
Introduction Logrotate is a powerful tool for log management in Linux, but its interaction with Docker has its own specifics. This guide explains how to properly use logrotate with Docker containers and when it’s better …
Read more