From 8969daa3d70a9316e4951f4373bc166b107c0c6e Mon Sep 17 00:00:00 2001 From: Daniel Beruben Date: Wed, 27 Jul 2016 10:26:46 -0400 Subject: [PATCH 1/3] add draft --- docs/creating_subdomain.md | 54 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 docs/creating_subdomain.md diff --git a/docs/creating_subdomain.md b/docs/creating_subdomain.md new file mode 100644 index 0000000000..ff6fa69606 --- /dev/null +++ b/docs/creating_subdomain.md @@ -0,0 +1,54 @@ +##Creating a Subdomain That Uses Amazon Route 53 as the DNS Service without Migrating the Parent Domain +
+ +You can create a subdomain that uses Amazon Route 53 as the DNS service without migrating the parent domain from another DNS service. + +exemple : + +Your main domain is `exemple.com` but you want to create a subdomain NameServer. + +Stat of your domain. + +> dig ns exemple.com +> +> ;; QUESTION SECTION: +> ;exemple.com. IN NS +> +> ;; ANSWER SECTION: +> exemple.com. 3600 IN NS ns3.somensserver.com. + +## Create Subdomain +You want to keep those records, now lets create the subdomain. + +On your `route 53` create the subdomain : + +`Create Hosted zone` + +Fill up the box `Domain Name:` with your subdomain : k8s.exemple.com + +`Route 53` should generate your NS server like : + +``` +;; ANSWER SECTION: +ns-613.awsdns-13.net. +ns-75.awsdns-04.com. +ns-1022.awsdns-35.co.uk. +ns-1149.awsdns-27.org. +``` + +With your registrar add those NS server to your subdomain. + +The result should be. + +>dig ns k8s.exemple.com + +``` +;; ANSWER SECTION: +k8s.exemple.com. 172800 IN NS ns-613.awsdns-13.net. +k8s.exemple.com. 172800 IN NS ns-75.awsdns-04.org. +k8s.exemple.com. 172800 IN NS ns-1022.awsdns-35.com. +k8s.exemple.com. 172800 IN NS ns-1149.awsdns-27.co.uk. +``` + +Wait until the NS replication is ok + From 97b5a8d6c21b0784cb424eeabc0ab397e0835388 Mon Sep 17 00:00:00 2001 From: Daniel Beruben Date: Wed, 27 Jul 2016 10:43:48 -0400 Subject: [PATCH 2/3] typo exemple-french example-us --- docs/creating_subdomain.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/creating_subdomain.md b/docs/creating_subdomain.md index ff6fa69606..b209d0be18 100644 --- a/docs/creating_subdomain.md +++ b/docs/creating_subdomain.md @@ -3,19 +3,19 @@ You can create a subdomain that uses Amazon Route 53 as the DNS service without migrating the parent domain from another DNS service. -exemple : +example : -Your main domain is `exemple.com` but you want to create a subdomain NameServer. +Your main domain is `example.com` but you want to create a subdomain NameServer. Stat of your domain. -> dig ns exemple.com +> dig ns example.com > > ;; QUESTION SECTION: -> ;exemple.com. IN NS +> ;example.com. IN NS > > ;; ANSWER SECTION: -> exemple.com. 3600 IN NS ns3.somensserver.com. +> example.com. 3600 IN NS ns3.somensserver.com. ## Create Subdomain You want to keep those records, now lets create the subdomain. @@ -24,7 +24,7 @@ On your `route 53` create the subdomain : `Create Hosted zone` -Fill up the box `Domain Name:` with your subdomain : k8s.exemple.com +Fill up the box `Domain Name:` with your subdomain : k8s.example.com `Route 53` should generate your NS server like : @@ -40,14 +40,14 @@ With your registrar add those NS server to your subdomain. The result should be. ->dig ns k8s.exemple.com +>dig ns k8s.example.com ``` ;; ANSWER SECTION: -k8s.exemple.com. 172800 IN NS ns-613.awsdns-13.net. -k8s.exemple.com. 172800 IN NS ns-75.awsdns-04.org. -k8s.exemple.com. 172800 IN NS ns-1022.awsdns-35.com. -k8s.exemple.com. 172800 IN NS ns-1149.awsdns-27.co.uk. +k8s.example.com. 172800 IN NS ns-613.awsdns-13.net. +k8s.example.com. 172800 IN NS ns-75.awsdns-04.org. +k8s.example.com. 172800 IN NS ns-1022.awsdns-35.com. +k8s.example.com. 172800 IN NS ns-1149.awsdns-27.co.uk. ``` Wait until the NS replication is ok From 508f8878f11135db24a99a2b6f169bb8d4d0fe58 Mon Sep 17 00:00:00 2001 From: Daniel Beruben Date: Wed, 27 Jul 2016 11:06:25 -0400 Subject: [PATCH 3/3] little update --- docs/creating_subdomain.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/docs/creating_subdomain.md b/docs/creating_subdomain.md index b209d0be18..23260e3f90 100644 --- a/docs/creating_subdomain.md +++ b/docs/creating_subdomain.md @@ -10,12 +10,14 @@ Your main domain is `example.com` but you want to create a subdomain NameServer. Stat of your domain. > dig ns example.com -> -> ;; QUESTION SECTION: -> ;example.com. IN NS -> -> ;; ANSWER SECTION: -> example.com. 3600 IN NS ns3.somensserver.com. + +``` +;; QUESTION SECTION: +;example.com. IN NS + +;; ANSWER SECTION: +example.com. 3600 IN NS ns3.somensserver.com. +``` ## Create Subdomain You want to keep those records, now lets create the subdomain.