Linux | Cloud | DevOps | Scripting

Breaking

Monday, 1 July 2019

Private Hosted Zone


Hosted Zones:

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.
    Learn Public Hosted Zone...
  2. Private Hosted Zones: As we are creating this locally, this could be any name.

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 run our Database Server, which is in Private Network, generally we use its IP. But, if we want to run this Database Server with a name, for an example we can take 'db.google.com', we need to follow the steps:
  1. Create a Windows Jump Server
  2. Create a Windows instance in private subnet
  3. Enable DNS Hostname and DNS Support
  4. Host private zone named 'google.com'
  5. Create A-record for google.com
  6. Try to login to the Database Server using name 'db.google.com'

Step 1: Create a Windows Jump Server:

AWS âž” Services âž” EC2 âž” Instances âž” Launch Instance âž” [*] Free Tier only âž” Select 'Amazon Windows' AMI âž” Instance Type: t2.micro âž” Next âž” Number of instances: 1 âž” Network: select default VPC or own created VPC âž” Subnet: select the public subnet âž” Auto-assign Public IP: Enabled (already enabled as I have enabled it at the time of creation of public subnet) âž” Next âž” Next: tags âž” Name: Win-Jump-Server âž” Next: SG âž” [*] Create a new Security Group or select an existing one which enables port number 3389 for RDP âž” Review and Launch âž” Launch âž” Create a new key-pair OR select any existing one âž” Launch Instances âž” View Instances.

Get Password:

Select Public Instance âž” Actions âž” Get Windows Password âž” Browse âž” Provide Private Key with '.pem' extension âž” Open âž” Decrypt Password âž” Copy password in notepad âž” Close.

Step 2: Create a Windows instance in private subnet

AWS âž” Services âž” EC2 âž” Instances âž” Launch Instance âž” [*] Free Tier only âž” Select 'Amazon Windows' AMI âž” Instance Type: t2.micro âž” Next âž” Number of instances: 1 âž” Network: select default VPC or own created VPC âž” Subnet: Private Subnet âž” Next âž” Next: tags âž” Name: Win-pvt-instance âž” Next: SG âž” [*] Create a new Security Group or select an existing one which enables port number 3389 for RDP âž” Review and Launch âž” Launch âž” Create a new key-pair OR select any existing one âž” Launch Instances âž” View Instances.

Get Password:

Select Private Instance âž” Actions âž” Get Windows Password âž” Browse âž” Provide Private Key with '.pem' extension âž” Open âž” Decrypt Password âž” Copy password in notepad âž” Close.

Step 3: Enable DNS Hostname and DNS Support: 

AWS ➔ Services ➔ VPC ➔ Your VPCs ➔ Select your VPC you chose ➔ Actions ➔Edir DNS Resolutions ➔ [*] enable ➔ Save.

AWS ➔ Services ➔ VPC ➔ Your VPCs ➔ Select your VPC you chose ➔ Actions ➔Edir DNS Hostnames ➔ [*] enable ➔ Save.

Step 4: Host private zone named 'google.com':

AWS âž” Services âž” Route 53 âž” DNS Management: Get started now âž” Create Hosted Zone âž” Create Hosted Zone âž” Domain Name: google.com âž” Comment: for testing purpose âž” Type: Private Hosted Zone for Amazon VPC âž” VPC ID: (select your VPC, as I am selecting 'webshack-vpc' âž” Create.

As a result, this will provide one SOA and four Nameservers. We got nameservers for google.com, it doesn't mean we are going to do the resolution of main google.com, which is available on the Internet. We just use this for our private Database Server, which we names as google.com.

Step 5: Create A-record set for google.com:

AWS âž” Services âž” Route 53 âž” Hosted Zones âž” Select hosted zone, named 'google.com' âž” Go to Record Sets âž” Create Record Set âž” Name: db (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 private IP of Database Server âž” Routing policy: Simple âž” Create.

Record-set
Fig: Record-set
As a result, this will provide us A-record for our Database server, named 'google.com'.

Step 6: Try to login to the Database Server using name 'db.google.com':

To login to the Database server, first, we need to login to the Jump Server:

Run âž” type 'mstsc' âž” provide public IP of 'Win-Jump-Server' âž” Connect âž” Username: admin âž” Password âž” (copy password from notepad, where you copied) âž” Connect.

Now, login Database server from Jump Server:

Click on Run in Jump Server âž” type 'mstsc' âž” computer: 'db.google.com' âž” Connect âž” Username: admin âž” Password âž” (copy password from notepad, where you copied) âž” Connect.

db.google.com
Fig: db.google.com
This is asking for username, means we are able to reach Database Server. Provide username and password and access.




No comments:

Post a Comment

Pages