Kolam Ayer MakersLinux Foundations

IP Addressing Basics

Core Idea

An IP address names a network interface location. DNS names such as lf2607.kolamayermakers.org are human-readable labels that resolve to addresses. Ports identify a service on an address.

Commands To Try

host lf2607.kolamayermakers.org
curl -I https://lf2607.kolamayermakers.org/~username/

host gives a compact DNS answer. dig gives a fuller DNS answer. curl tests whether an HTTP service responds after DNS and connection setup.

Address, Port, Protocol

https://lf2607.kolamayermakers.org/~username/
|     |                                             |
scheme host name                                     path

https implies TCP port 443 unless another port is written explicitly. Your user-managed service uses a local high port behind the public reverse proxy.

IPv4 And IPv6

Common Confusions

Proof Check

Use host, then curl -I, and explain which command tested name resolution and which tested HTTP.

Docs Pointers