🔮Domain Name System

Server0 : 192.168.1.1/24 Server1 : 192.168.1.2/24 PC0 : 192.168.1.3/24 | DNS 192.168.1.2


Introduction

A DNS server is a server that is used to translate IP addresses into host names so that they are more efficient and easy to remember. Apart from that, DNS is used to identify computers, services, and other resources that can be reached via the Internet or other Internet Protocol (IP) networks.

A simple example of implementing DNS, for example, is when you want to access a website like Google. By configuring the DNS server, you only need to type the address google.com, and not the IP 216.239.38.120, but you can still access the IP above to display pages from google.com.

Activated HTTP Service (Server0)

<!DOCTYPE html>
<html lang="id">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Website Rizwan</title>
</head>
<body>
    <h1>Welcome To My Website</h1>
    <p>Hi! Iam <b>Rizwan Fairuz Mamduh</b>, I like movie, music, and snack..</p>
</body>
</html>

Activated DNS Service (Server1)

domain: rizwanfairuz.com address: 192.168.1.1

Browser from PC to Domain

Last updated