- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
How to create Zone Files in BIND DNS Demo | Domain Name System | Mastering BIND DNS Server
How to create zone files in DNS demo.
To create zone files in DNS, follow these steps:
Determine the domain name for which you want to create a zone file. For example, if you want to create a zone file for the domain example.com, then the domain name is "example.com".
Choose a name for the zone file. The name of the zone file should be the same as the domain name, but with a ".zone" extension. For example, if the domain name is "example.com", then the zone file name should be "example.com.zone".
Open a text editor such as Notepad or Vim and create a new file. Save the file with the name you have chosen for the zone file, with the ".zone" extension. For example, if the domain name is "example.com", then the zone file name should be "example.com.zone".
In the zone file, start with the "SOA" (Start of Authority) record. This record identifies the primary DNS server for the domain, as well as the email address of the person responsible for managing the domain. Here's an example of a SOA record:
example.com. IN SOA ns1.example.com. admin.example.com. (
2022043001 ; serial number
86400 ; refresh period (1 day)
7200 ; retry period (2 hours)
3600000 ; expire time (1000 hours)
86400 ; minimum TTL (1 day)
)
In this example, "example.com." is the domain name, "IN" indicates the Internet class of the record, "SOA" indicates the record type, "ns1.example.com." is the primary DNS server for the domain, "admin.example.com." is the email address of the person responsible for managing the domain, and the numbers in parentheses represent various time values in seconds.
Next, add the "NS" (Name Server) record. This record identifies the DNS servers that are authoritative for the domain. Here's an example of an NS record:
example.com. IN NS ns1.example.com.
In this example, "example.com." is the domain name, "IN" indicates the Internet class of the record, "NS" indicates the record type, and "ns1.example.com." is the DNS server that is authoritative for the domain.
Finally, add any additional records that are necessary for the domain, such as "A" (Address) records, "MX" (Mail Exchange) records, or "CNAME" (Canonical Name) records. Here's an example of an A record:
www.example.com. IN A 192.168.1.1
In this example, "www.example.com." is a subdomain of "example.com", "IN" indicates the Internet class of the record, "A" indicates the record type, and "192.168.1.1" is the IP address of the server that hosts the website for the subdomain.
Save the zone file and exit the text editor.
Finally, add the zone file to the DNS server configuration by including a reference to the zone file in the named.conf file. The exact procedure for doing this depends on the DNS server software you are using.
Courses Available in English at
Docker Hands-On
https://www.udemy.com/course/docker-hands-on-course/?referralCode=53B41C9528C090A2632B
Practice Tests | Test Your Kubernetes Skills
https://www.udemy.com/course/test-your-kubernetes-skills/?referralCode=C13593D57F396EB7238E
6 Practice Exams | AWS Certified Cloud Practitioner CLF-C02
https://www.udemy.com/course/practice-exams-aws-certified-cloud-practitioner-clfc02/?referralCode=99BAB3EE182793C7438D
Kubernetes for Absolute Beginners - Hands-on
https://www.udemy.com/course/kubernetes-for-absolute-beginners-hands-on/?referralCode=3B70FE990B066BDCEB97
Amazon Web Services (AWS) - Hands On
https://www.udemy.com/course/hands-on-aws/?referralCode=27AC02AAF6927C8E16EA
Mastering BIND DNS Course
https://www.udemy.com/course/mastering-bind-dns/?referralCode=B3EAD168133315531446
Mastering Iptables Firewall Course
https://www.udemy.com/course/mastering-iptables-firewall/?referralCode=4C477A430BFE7B4B51BE
IP Addressing and Subnetting: Practical Approach Course
https://www.udemy.com/course/ip-address-subnetting/?referralCode=FDAA34989626DEF990F0
Apache Web Server Course
https://www.udemy.com/course/apache-web/?referralCode=E3EA2AC6EB0DEEE259AF
Kubernetes For Beginners Course
https://www.udemy.com/course/k8s-for-beginners/?referralCode=BF80146927F2E986CA50
Software Defined Networking (SDN) Made Simple Course
https://www.udemy.com/course/sdn-made-simple/?referralCode=8B0C5399C7CEB79539B6
Mastering Docker Course
https://www.udemy.com/course/docker-made-simple/?referralCode=1743EBB17092519E41D1
Linux Command Line For Beginners Course
https://www.udemy.com/course/linux-essentials/?referralCode=9B548D586ADC970E3FCF
Kubernetes Hands On Course
https://www.udemy.com/course/kubernetes-hands-on/?referralCode=07B7DEDEEA46F830743F
https://www.udemy.com/course/aws-certified-cloud-practitioner-hands-on/?referralCode=E7279BCF076939C81F3F
Linux Networking For Beginners
https://www.udemy.com/course/linux-networking/?referralCode=685FC0241BA25E44C54E
Squid Proxy Server
https://www.udemy.com/course/squid-proxy/?referralCode=E732163F675B76B29BC2
#dnsserver #dns #domain #domainnamesystem #domainname #domainnameserver #domainnames #resolver #resolution #iterative #recursive #host #dig
Видео How to create Zone Files in BIND DNS Demo | Domain Name System | Mastering BIND DNS Server канала TechTrends with Vipin Gupta
To create zone files in DNS, follow these steps:
Determine the domain name for which you want to create a zone file. For example, if you want to create a zone file for the domain example.com, then the domain name is "example.com".
Choose a name for the zone file. The name of the zone file should be the same as the domain name, but with a ".zone" extension. For example, if the domain name is "example.com", then the zone file name should be "example.com.zone".
Open a text editor such as Notepad or Vim and create a new file. Save the file with the name you have chosen for the zone file, with the ".zone" extension. For example, if the domain name is "example.com", then the zone file name should be "example.com.zone".
In the zone file, start with the "SOA" (Start of Authority) record. This record identifies the primary DNS server for the domain, as well as the email address of the person responsible for managing the domain. Here's an example of a SOA record:
example.com. IN SOA ns1.example.com. admin.example.com. (
2022043001 ; serial number
86400 ; refresh period (1 day)
7200 ; retry period (2 hours)
3600000 ; expire time (1000 hours)
86400 ; minimum TTL (1 day)
)
In this example, "example.com." is the domain name, "IN" indicates the Internet class of the record, "SOA" indicates the record type, "ns1.example.com." is the primary DNS server for the domain, "admin.example.com." is the email address of the person responsible for managing the domain, and the numbers in parentheses represent various time values in seconds.
Next, add the "NS" (Name Server) record. This record identifies the DNS servers that are authoritative for the domain. Here's an example of an NS record:
example.com. IN NS ns1.example.com.
In this example, "example.com." is the domain name, "IN" indicates the Internet class of the record, "NS" indicates the record type, and "ns1.example.com." is the DNS server that is authoritative for the domain.
Finally, add any additional records that are necessary for the domain, such as "A" (Address) records, "MX" (Mail Exchange) records, or "CNAME" (Canonical Name) records. Here's an example of an A record:
www.example.com. IN A 192.168.1.1
In this example, "www.example.com." is a subdomain of "example.com", "IN" indicates the Internet class of the record, "A" indicates the record type, and "192.168.1.1" is the IP address of the server that hosts the website for the subdomain.
Save the zone file and exit the text editor.
Finally, add the zone file to the DNS server configuration by including a reference to the zone file in the named.conf file. The exact procedure for doing this depends on the DNS server software you are using.
Courses Available in English at
Docker Hands-On
https://www.udemy.com/course/docker-hands-on-course/?referralCode=53B41C9528C090A2632B
Practice Tests | Test Your Kubernetes Skills
https://www.udemy.com/course/test-your-kubernetes-skills/?referralCode=C13593D57F396EB7238E
6 Practice Exams | AWS Certified Cloud Practitioner CLF-C02
https://www.udemy.com/course/practice-exams-aws-certified-cloud-practitioner-clfc02/?referralCode=99BAB3EE182793C7438D
Kubernetes for Absolute Beginners - Hands-on
https://www.udemy.com/course/kubernetes-for-absolute-beginners-hands-on/?referralCode=3B70FE990B066BDCEB97
Amazon Web Services (AWS) - Hands On
https://www.udemy.com/course/hands-on-aws/?referralCode=27AC02AAF6927C8E16EA
Mastering BIND DNS Course
https://www.udemy.com/course/mastering-bind-dns/?referralCode=B3EAD168133315531446
Mastering Iptables Firewall Course
https://www.udemy.com/course/mastering-iptables-firewall/?referralCode=4C477A430BFE7B4B51BE
IP Addressing and Subnetting: Practical Approach Course
https://www.udemy.com/course/ip-address-subnetting/?referralCode=FDAA34989626DEF990F0
Apache Web Server Course
https://www.udemy.com/course/apache-web/?referralCode=E3EA2AC6EB0DEEE259AF
Kubernetes For Beginners Course
https://www.udemy.com/course/k8s-for-beginners/?referralCode=BF80146927F2E986CA50
Software Defined Networking (SDN) Made Simple Course
https://www.udemy.com/course/sdn-made-simple/?referralCode=8B0C5399C7CEB79539B6
Mastering Docker Course
https://www.udemy.com/course/docker-made-simple/?referralCode=1743EBB17092519E41D1
Linux Command Line For Beginners Course
https://www.udemy.com/course/linux-essentials/?referralCode=9B548D586ADC970E3FCF
Kubernetes Hands On Course
https://www.udemy.com/course/kubernetes-hands-on/?referralCode=07B7DEDEEA46F830743F
https://www.udemy.com/course/aws-certified-cloud-practitioner-hands-on/?referralCode=E7279BCF076939C81F3F
Linux Networking For Beginners
https://www.udemy.com/course/linux-networking/?referralCode=685FC0241BA25E44C54E
Squid Proxy Server
https://www.udemy.com/course/squid-proxy/?referralCode=E732163F675B76B29BC2
#dnsserver #dns #domain #domainnamesystem #domainname #domainnameserver #domainnames #resolver #resolution #iterative #recursive #host #dig
Видео How to create Zone Files in BIND DNS Demo | Domain Name System | Mastering BIND DNS Server канала TechTrends with Vipin Gupta
DNS Domain Name Server BIND DNS DNS server master DNS slave DNS nameserver nslookup dig DNS query PTR NS forward zone reverse zone iteratve query resourse records DNS Introduction What is DNS master server zone files zone transfer primary DNS server DNS lookups domain registrar monitoring configuration files named.conf BIND options local zones resolv.conf log files syslog Vipin Gupta edit named.conf acl How to create zone files in DNS
Комментарии отсутствуют
Информация о видео
2 мая 2023 г. 10:30:03
00:01:37
Другие видео канала




















