- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
How to create Reverse Zone File Demo | Domain Name System | Mastering BIND DNS Server
Create reverse zone file in DNS demo.
In Domain Name System (DNS), a reverse zone file is a file that maps IP addresses to domain names. It is used to translate IP addresses (such as 172.24.0.1) into the corresponding domain names (such as example.com) that can be used to identify a specific host on the Internet.
The reverse zone file is organized differently from the forward zone file. Instead of using the domain name as the left-hand side of the record, it uses the reversed IP address in the in-addr.arpa domain. The reversed IP address is the IP address with the octets in reverse order, followed by the ".in-addr.arpa" domain name.
For example, if the IP address is 172.24.0.1, the reversed IP address is 1.0.24.172. Therefore, the reverse zone file for this IP address would be located in the "0.24.172.in-addr.arpa" domain.
The reverse zone file typically contains resource records (RRs) that specify the following information:
The reversed IP address being resolved (the left-hand side of the record)
The type of the record (e.g., PTR)
The domain name associated with the IP address (the right-hand side of the record)
For example, the following record in a reverse zone file maps the IP address 172.24.0.1 to the domain name example.com:
1 IN PTR master.example.com.
In this example:
1.0.24.172.in-addr.arpa. is the reversed IP address being resolved.
IN is the class of the record (usually IN for Internet).
PTR is the type of the record (a pointer record).
master.example.com. is the fully qualified domain name associated with the IP address.
Overall, the reverse zone file is used in DNS to map IP addresses to domain names, and it plays a crucial role in identifying specific hosts on the Internet.
$TTL 1D: this time to live directive specifies for how much time zone data will be kept in cache by the resolvers. It can be specified at the top of zone files.
“;” represents comments
the syntax of resource records(RR) is
domain ttl class type rdata
domain: current domain or some specific domain. “@” represents originating domain. in this case “example.com”.
ttl: for how long the record will be cached. if nothing is specified, it will take the value from “$TTL” directive specified in the beginning.
class: record classification mostly “IN”. if left empty, “IN” is assumed.
type: type of record such as “SOA”, “A”, “PTR”, “CNAME”, “NS”, “MX” etc.
rdata: particular record data
Mastering BIND DNS in Hindi
https://vipingupta.gumroad.com/l/dns
Mastering IPTables Firewall: Learn, Secure, and Protect Your Network in Hindi
https://vipingupta.gumroad.com/l/firewall
Courses Available in English at
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
#dnsserver #dns #domain #domainnamesystem #domainname #domainnameserver #domainnames #resolver #resolution #iterative #recursive #host #dig #nameserver #linux #linuxcommands #centos7 #centos #linuxadministration #linux_tutorial #vipingupta #techtrendswithvipingupta #opensource #opensourcesoftware #linuxoperatingsystem #linuxos #operatingsystem #linuxinhindi #commandstutorial #linuxadmin #linuxadministration
Видео How to create Reverse Zone File Demo | Domain Name System | Mastering BIND DNS Server канала TechTrends with Vipin Gupta
In Domain Name System (DNS), a reverse zone file is a file that maps IP addresses to domain names. It is used to translate IP addresses (such as 172.24.0.1) into the corresponding domain names (such as example.com) that can be used to identify a specific host on the Internet.
The reverse zone file is organized differently from the forward zone file. Instead of using the domain name as the left-hand side of the record, it uses the reversed IP address in the in-addr.arpa domain. The reversed IP address is the IP address with the octets in reverse order, followed by the ".in-addr.arpa" domain name.
For example, if the IP address is 172.24.0.1, the reversed IP address is 1.0.24.172. Therefore, the reverse zone file for this IP address would be located in the "0.24.172.in-addr.arpa" domain.
The reverse zone file typically contains resource records (RRs) that specify the following information:
The reversed IP address being resolved (the left-hand side of the record)
The type of the record (e.g., PTR)
The domain name associated with the IP address (the right-hand side of the record)
For example, the following record in a reverse zone file maps the IP address 172.24.0.1 to the domain name example.com:
1 IN PTR master.example.com.
In this example:
1.0.24.172.in-addr.arpa. is the reversed IP address being resolved.
IN is the class of the record (usually IN for Internet).
PTR is the type of the record (a pointer record).
master.example.com. is the fully qualified domain name associated with the IP address.
Overall, the reverse zone file is used in DNS to map IP addresses to domain names, and it plays a crucial role in identifying specific hosts on the Internet.
$TTL 1D: this time to live directive specifies for how much time zone data will be kept in cache by the resolvers. It can be specified at the top of zone files.
“;” represents comments
the syntax of resource records(RR) is
domain ttl class type rdata
domain: current domain or some specific domain. “@” represents originating domain. in this case “example.com”.
ttl: for how long the record will be cached. if nothing is specified, it will take the value from “$TTL” directive specified in the beginning.
class: record classification mostly “IN”. if left empty, “IN” is assumed.
type: type of record such as “SOA”, “A”, “PTR”, “CNAME”, “NS”, “MX” etc.
rdata: particular record data
Mastering BIND DNS in Hindi
https://vipingupta.gumroad.com/l/dns
Mastering IPTables Firewall: Learn, Secure, and Protect Your Network in Hindi
https://vipingupta.gumroad.com/l/firewall
Courses Available in English at
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
#dnsserver #dns #domain #domainnamesystem #domainname #domainnameserver #domainnames #resolver #resolution #iterative #recursive #host #dig #nameserver #linux #linuxcommands #centos7 #centos #linuxadministration #linux_tutorial #vipingupta #techtrendswithvipingupta #opensource #opensourcesoftware #linuxoperatingsystem #linuxos #operatingsystem #linuxinhindi #commandstutorial #linuxadmin #linuxadministration
Видео How to create Reverse Zone File 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 PTR NS forward zone reverse zone DNS Introduction What is DNS master server zone files zone transfer primary DNS server named.conf BIND resolv.conf Vipin Gupta What are the types of DNS resource records What are type A (address) PTR (pointer record) NS (name server) MX (mail exchange) CNAME (canonical name) DNS resource records Create reverse zone file in DNS demo
Комментарии отсутствуют
Информация о видео
6 мая 2023 г. 14:30:06
00:02:07
Другие видео канала




















