Linux | Cloud | DevOps | Scripting

Breaking

Monday, 1 July 2019

Public Hosted Zone


Hosted Zone:

A Hosted Zone is a collection of resource record set for a specified domain. So, basically, we create a hosted zone for a particular domain and then we create resource record set to tell the domain name system how we want traffic to be routed for that domain.

There are two types of Hosted Zones available:
  1. Public Hosted Zones: Used to register a domain name globally.
  2. Private Hosted Zones: As we are creating this locally, this could be any name.
    Learn Private Hosted Zone...

In traditional data center there are two types of DNS servers:
  1. Local DNS: which is inside OS, named /etc/host file
  2. Global DNS: Used globally to convert the name to IP and IP to name.

To create a Public Hosted Zone, we need to follow the steps:
  1. Register a domain for Web Server
  2. Create a Web Server 
  3. Register and associate an Elastic IP to this web server
  4. Test web server using IP in the browser
  5. Create Record Set
  6. Copy nameservers to the company from where we registered the domain
  7. Test web server using domain name in the browser

Step 1: Register a domain for web server

AWS âž” Route 53 âž” Registered Domains âž” Register Domain âž” Enter the domain name that you want to register and choose Check to find out whether the domain name is available or not âž” If the domain is available, select Add to cart. The domain name appears in your shopping cart âž” In the shopping cart, choose the number of years that you want to register the domain for âž” Continue.

For more information go through web URL:


Apart from this, we can also use https://www.freenom.com, which provides some domains free of cost.

In this practical, I am registering 'webshack.cf' as my domain from freenom.com.

Step 2: Create a Web Server:

AWS âž” Services âž” EC2 âž” Instances âž” Launch Instance âž” [*] Free Tier Only âž” Select any Linux AMI âž” Select âž” Instance Type: 't2.micro' âž” Configure Instance: Number of Instances: 1 âž” Select VPC âž” Select Public Subnet âž” Auto-assign Public IP: Enable âž” Advanced Details âž” User Data: As text âž” provide a script:

          #!/bin/bash
          yum install -y httpd
          echo "*** This is my EC2 based Web Server ***" >> /var/www/html/index.html
          service httpd restart
          systemctl enable httpd

Next: Storage âž” Next Tags: 'Click to add a Name Tag' âž” Key: Name & Value: linux-web-server âž” Next: Security Group âž” Assign a security group: (*) Create a new security group OR ( ) Select an existing security group (but port for SSH and HTTP should be enabled âž” Review and Launch âž” Launch âž” Create or provide an existing key-pairâž” Launch Instances.

Step 3: Register and associate an Elastic IP to this web server:

AWS âž” Services âž” EC2 âž” Elastic IPs âž” Allocate new address âž” [*] Amazon Pool âž” Allocate âž” Close.

Now associate:

Select new allocated Elastic IP âž” Actions âž” Associate address âž” Resource type: instance âž” Instance: Select 'linux-web-server' instance âž” Private IP: select from drop-down list âž” Do not click on reassociation because we created a new one, which was not using before âž” Associate âž” Close.

Step 4: Test web server using IP in the browser:

Copy Elastic IP from Description, which we provided to the web server âž” Open browser âž” paste copied IP âž” hit Enter.

As a result, you will see the output, which we provided in index.html:
*** This is my EC2 based Web Server ***

Step 5: Create a hosted zone:

AWS âž” Services âž” Route 53 âž” DNS management âž” Create Hosted Zone âž” Create Hosted Zone âž” Domain name: webshack.cf âž” Comment: Testing purpose âž” Type: Public hosted zone âž” Create.

Create Hosted Zone
Fig: Create Hosted Zone 
As we click on create, it provides four NS recordsets and SOA recordset. 

Result - NS record and SOA record
FIg: Result - NS record and SOA record

Step 6: Create Record Set:

AWS âž” Services âž” Route 53 âž” DNS management âž” Select the domain âž” Go to record sets âž” Create Record Set âž” Name: www (do not provide dot, it will automatically appear as you type something in text box) âž” Type: A - IPv4 Address âž” Alias: [*] No âž” TTL (second): leave default (it means how much time query will live) âž” Value: provide elastic IP of your web server âž” Routing policy: Simple âž” Create.

As we click on Create, this will create an A-recordset.

Step 6: Copy nameservers to the company from where we registered the domain:

Open freenom.com and login âž” Services âž” My domains âž” click on 'Manage domain', in front of the domain which you registered âž” Management Tools âž” Nameservers âž” from AWS copy all 4 nameservers here, one by one (make sure do not copy the last dot) âž” Change Nameservers.

(This can take up to 24 hours. So, don't be panic. Give some time, then this will work)

Step 7: Test web server using domain name in the browser:

Open browser âž” provide domain 'webshack.cf' in address bar âž” hit enter.

As a result, you will see the output, which we provided in index.html:
*** This is my EC2 based Web Server ***

Enjoy!




No comments:

Post a Comment

Pages