Draw This - beginner
Draw a flowchart showing how DNS translates a website name (like www.example.com) into an IP address.
10 minutes
Hint 1
Hint 2
Hint 3
Hint 4
Draw a flowchart showing how DNS translates a website name (like www.example.com) into an IP address.
+-------------------+
| Start: User types |
| website name |
+---------+---------+
|
v
+---------+---------+
| Send request to |
| DNS server |
+---------+---------+
|
v
+---------+---------+
| DNS server looks |
| up IP address |
+---------+---------+
|
v
+---------+---------+
| IP address found? |
+----+-------+-----+
| |
Yes No
| |
v v
+----+-------+-----+
| Return IP address |
| to user |
+----+-------+-----+
|
v
+----+-------+-----+
| End: User gets |
| IP address |
+------------------+This flowchart starts when the user types a website name like www.example.com.
Next, the request is sent to a DNS server, which is like a phone book for the internet.
The DNS server looks up the IP address that matches the website name.
If the IP address is found, it is sent back to the user.
If not found, the DNS server may ask other servers or return an error (not shown here for simplicity).
Finally, the user receives the IP address and can connect to the website.