Learning networking basics
Brief adventure in unknown networking land
I have been coding for a couple of years now, and even managed to get paid for it. However, I have to confess that I have no idea how the internet works.
Yes, really. I don’t know how machines communicate with each other through the World Wide Web. It has been bugging me that I don’t know this, and today is the day I decide to do something about it.
tl;dr
For a gentle introduction, check out this amazing, FREE zine Then proceed to read this book High Performance Browser Networking, available for free online here
Here is what I did:
- Tried to get information from other blog posts, but they are either too technical or not technical enough, or concepts are explained poorly
- Googled “best networking book”, and this book Computer Networking: A Top-down Approach by James Kurose et al showed up. I remembered seeing people using it in college.
- Skimmed it, realized that there are so much academic information about every little detail of networking, got discouraged.
- Found this amazing, FREE zine by Julia Evans explaining networking concepts at the right level of abstraction and right amount of detail. Also the illustrations are so witty! You can check out their other zines here
You will learn in this zine the answer to the question What happens when your computer connect to a website? and they explains each step in detail:
Below are the steps and the concepts that you will learn. I’m listing them here for you to do quick Ctrl + F
to find answer to these concepts.
- Making DNS requests to go from domain name (like
www.example.com
) to IP address (like 104.28.6.94) : Domain name, IP address, CIDR notation, types of DNS servers (recursive/authoritative), DNS server caching, whatcurl
does under the hood,dig
shell command - Using the OS to open a socket: socket types (TCP, raw, UDP or Unix), your
python
script is writing data to the socket, and the socket is splitting this data up into packets to send - Establish a TCP connection to the IP address: TCP handshake, what’s in the TCP header, SYN, ACK
- Sending HTTP protocol request: HTTP header, HTTP2 (binary protocol, multiple concurrent requests, have to use TLS encryption)
Then you will learn these extra concepts:
- What a port actually is
- How a packet is put together
- How SSL/TLS works
- Different networking layers
- How packets get sent in a local network (MAC address)
Next step
I plan to read this book High Performance Browser Networking, available for free online here. I found this book while googling networking jargons that I had no clue. I find the following Amazon Review for this book pretty accurate:
If you ever took a networking class or read a networking book (e.g. Computer Networking: A Top-down Approach) then you know that networking is a broad subject that covers many topics. As a software engineer developing web applications, many of these topics might not be relevant to your day-to-day work (but nonetheless interesting). Browser networking takes the networking parts that are relevant to software engineers day-to-day and lays them out in a clear and concise manner.