A Click Happens
Lesson 29 of 32 in Coddy's The OSI Model course.
Final chapter: follow one browser click through everything you have learned.
You type coddy.tech and press Enter. Before a single byte of the page can move, three things must happen in strict order:
- DNS: the name becomes an IP address, because packets travel to numbers, not names.
- TCP: the three-way handshake opens a connection to that IP on port 443.
- HTTP: only now does the actual request for the page go out.
Each step lives at a different layer, and each can fail independently, which is exactly how engineers narrow problems down.
Challenge
BeginnerPrint the three protocols in the order they act when you click, one per line, uppercase.
Expected output:
DNS
TCP
HTTPTry it yourself
Terminal
All lessons in The OSI Model
Practice on your own: Terminal playground