Top Banner
Issue Date: Revision: DNS Security bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh
42

DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Jun 19, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Issue Date:

Revision:

DNS Security bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh

Page 2: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Overview

•  How DNS Works

•  DNS Vulnerabilities

•  Securing the Nameservers

•  Transaction Signature (TSIG)

•  DNS Security Extensions (DNSSEC)

2

Page 3: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Overview: How DNS Works

Resolver

Question: www.apnic.net A

www.apnic.net A ? Caching forwarder (recursive)

www.apnic.net A ?

“go ask net server @ X.gtld-servers.net” (+ glue)

gtld-server www.apnic.net A ?

“go ask apnic server @ ns.apnic.net” (+ glue)

apnic-server

www.apnic.net A ?

“192.168.5.10”

192.168.5.10

1 2

3

4

5

6

7

Add to cache 9

8

10 TTL

root-server

3

Page 4: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

DNS Vulnerabilities

master Caching forwarder

Zone administrator

Zone file

Dynamic updates

1

2

slaves

3

4

5

resolver

4

Page 5: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

DNS Vulnerabilities

master Caching forwarder

Zone administrator

Zone file

Dynamic updates

1

2

slaves

3

4

5

resolver

Server protection Data protection

Corrupting data Impersonating master

Unauthorized updates

Cache impersonation

Cache pollution byData spoofing

5

Page 6: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

DNS Cache Poisoning

(pretending to be the authoritative

zone)

ns.example.com Webserver

(192.168.1.1)

DNS Caching Server

Client

I want to access www.example.com

1

QID=64571 2

QID=64569

QID=64570

QID=64571

www.example.com 192.168.1.1

match!

www.example.com 192.168.1.99 3

3

Root/GTLD

QID=64571

6

Page 7: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

DNS Amplification Queries for

www.example.com

Attacker

ns.example.com

Victim Machine

DNS Recursive server

Compromised Machines

(spoofed IP)

Root/GTLD

www.example.com 192.168.1.1

7

Page 8: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Securing the Nameserver

•  Run the most recent version of the DNS software or apply the latest patch

•  Restrict queries

•  Prevent unauthorized zone transfers

•  Run BIND with the least privilege (use chroot)

•  Randomize source ports

•  Secure the box

•  Implement TSIG and DNSSEC

8

Page 9: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

What is Transaction Signature?

•  A mechanism for protecting a message from primary to secondary (and vice versa)

•  Provides secure communication of queries and responses –  Also protects zone transfers and dynamic updates

•  How? –  A keyed-hash is applied so recipient can verify the message source

•  Based on a shared secret - both sender and receiver are configured with it

9

Page 10: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

TSIG Protected Vulnerabilities

master Caching forwarder

Zone administrator

Zone file

Dynamic updates

slaves resolver

Impersonating master

Unauthorized updates

Cache impersonation

Cache pollution byData spoofing

10

Page 11: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

TSIG Example

11

SOA …SOA

Sig ...

Master

AXFR

SlaveKEY: %sgs!f23fv

KEY: %sgs!f23fv

AXFR

Sig ...Sig ...

SOA …SOA

Sig ...

SlaveKEY: %sgs!f23fv

verification

verification

Query: AXFR

Response: Zone

Page 12: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

TSIG Steps

•  Generate secret –  dnssec-keygen -a <algorithm> -b <bits> -n host <name of the key>

•  Communicate secret –  Transfer the key securely (ex. SSH/SCP)

•  Configure the servers –  Edit configuration file for primary and secondary

•  Test –  dig @<server> <zone> AXFR -k <TSIG keyfile>

12

Page 13: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Configuration Example – named.conf Primary server 10.33.40.46

key ns1-ns2.pcx. net {algorithm hmac-md5;secret "APlaceToBe";

};server 10.33.50.35 {

keys {ns1-ns2.pcx.net;};};zone "my.zone.test." {

type master;file “db.myzone”;allow-transfer {key ns1-ns2.pcx.net ;};

};

Secondary server 10.33.50.35

key ns1-ns2.pcx.net {algorithm hmac-md5;secret "APlaceToBe";

};server 10.33.40.46 { keys {ns1-ns2.pcx.net;};};zone "my.zone.test." {

type slave;file “myzone.backup”;masters {10.33.40.46;};

};

You can save this in a file and refer to it in the named.conf using ‘include’ statement: include “/var/named/master/tsig-key-ns1-ns2”;

13

Page 14: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

TSIG Testing - dig

•  You can use dig to check TSIG configuration

dig @<server> <zone> AXFR -k <TSIG keyfile>

$ dig @127.0.0.1 example.net AXFR \

-k Kns1-ns2.pcx.net.+157+15921.key

•  A wrong key will give “Transfer failed” and on the server the security-category will log this.

•  Note: TSIG is time-sensitive

14

Page 15: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

RFC 4035

RFC 4034

What is DNSSEC?

•  DNS Security Extensions

•  Protects the integrity of data in DNS by establishing a chain of trust

•  A form of digitally signing the data to attest its validity

•  Uses public key cryptography – each link in the chain has a public/private key pair

•  Guarantees –  Authenticity –  Integrity –  Non-existence of a domain

RFC 4033

15

Page 16: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

How DNSSEC Works

•  Records are signed with private key to prove its authenticity and integrity

•  The signatures are published in DNS

•  Public key is also published so record signatures can be verified

•  Child zones also sign their records with their private key

•  Parent signs the hash of child zone’s public key to prove authenticity

16

Page 17: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Vulnerabilities protected by DNSSEC

master Caching forwarder

Zone administrator

Zone file

Dynamic updates

slaves resolver

Cache impersonation

Cache pollution byData spoofing

17

Page 18: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

New Resource Records

Resource Record

Function

RRSIG Resource Record Signature Signature over RRset made using private key

DNSKEY DNS Key Public key needed for verifying a RRSIG

DS Delegation Signer Pointer for building chains of authentication

NSEC / NSEC3

Next Secure indicates which name is the next one in the zone and which type codes are available for the current name

18

RFC 4034

Page 19: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

New Resource Records

•  RRsets are signed with private key to prove its authenticity and integrity

•  The signatures are published in DNS as RRSIG •  Public DNSKEY is also published so RRSIG can be verified

•  Child zones also sign their records with their private key

•  Parent signs the child zone’s DS record to prove authenticity

19

Page 20: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

DNSKEY

•  Contains the zone’s public key

•  Uses public key cryptography to sign and authenticate DNS resource record sets (RRsets).

•  Example:

apnic.net. 5379 IN DNSKEY 256 3 8 (AwEAAYxad2GqDt0mP+OOUQq8KI0XVBV4SvUYu2bk50qj

CJQCp4DgnpBdNlt8Qg3tcEi/6vzCRqPn4DFDv0kNUxhp

YL2h2lTPoHeRzu4FMUIx/OhZ7AQDuqBvR7elENTbv82r

DDv4K2EYMYDpTjWHfvUak20HXa7zJOVOJR9+tkj8hlfX

) ; ZSK; alg = RSASHA256; key id = 9765

16-bit field flag; 256 if ZSK, 257 if KSK

Protocol octet

DNSKEY algorithm number

Public key (base64)

20

Page 21: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

DNSKEY

•  Also contains some timing metadata – as a comment in the key file

; This is a key-signing key, keyid 19996, for myzone.net.

; Created: 20121102020008 (Fri Nov 2 12:00:08 2012)

; Publish: 20121102020008 (Fri Nov 2 12:00:08 2012)

; Activate: 20121102020008 (Fri Nov 2 12:00:08 2012)

21

Page 22: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

RRSIG

•  The private part of the key-pair is used to sign the resource record set (Rrset)

•  The digital signature per RRset is saved in an RRSIG record

apnic.net. 7163 IN RRSIG NS 8 2 7200 (

20160502141502 20160402131502 9765 apnic.net.

fFWqKfoNdp5LvWjR718iXB5TBxH4uJ+VjEHLDctpC2lO

+bEn6sAF6rD4iqjUSW8FTN1H95CvEssRvsi002KCAlSD

OzdUCPjttqoCDrQ98UnrfVfgsWtagf4KCPZVoNKDteHS

aepbinE+WN8iubQ9kNsLAZECz1tYx4emnbWXx1c= )

RR type signed Digital signature algorithm

Number of labels in the signed name

Signature expiry Date signed

22

Page 23: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

NSEC Record

•  Next Secure

•  Forms a chain of authoritative owner names in the zone

•  Lists two separate things: –  Next owner name (canonical ordering) –  Set of RR types present at the NSEC RR’s owner name

•  Also proves the non-existence of a domain

•  Each NSEC record also has a corresponding RRSIG myzone.net. NSEC blog.myzone.net. A NS SOA MX RRSIG NSEC DNSKEY

23

Page 24: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

NSEC Record – Example $ORIGIN example.net.

@ SOA …

NS NS.example.net.

DNSKEY …

NSEC mailbox.example.net. SOA NS NSEC DNSKEY RRSIG

mailbox A 192.168.10.2

NSEC www.example.net. A NSEC RRSIG

WWW A 192.168.10.3

TXT Public webserver

NSEC example.net. A NSEC RRSIG TXT

24

Page 25: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

DS Record •  Delegation Signer •  Establishes authentication chains between DNS zones •  Must be added in the parent’s zonefile •  In this example, irrashai.net has been delegated from .net. This

record is added in the.net zone file irrashai.net. IN NS ns1.irrashai.net.

NS ns2.irrashai.net.IN DS 19996 5 1 (

CF96B018A496CD1A68EE7C80A37EDFC6ABBF8175 )

IN DS 19996 5 2 (6927A531B0D89A7A4F13E110314C722EC156FF926D2052C7D8D70C50 14598CE9 )

Key ID DNSKEY algorithm (RSASHA1)

Digest type: 1 = SHA1 2 = SHA256

25

Page 26: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Chain of Trust

•  Establishes a chain of trust from parent to child zone

•  How? –  Parent does not sign child zone –  Parent only signs a pointer to the child zone (key) – DS RECORD

•  The root is on top of the chain

26

Page 27: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Creation of keys

•  In practice, we use two keypairs –  one to sign the zones, another to sign the other key

•  Using a single key or both keys is an operational choice (RFC allows both methods)

•  If using a single key-pair: –  Zones are digitally signed using the private key –  Public key is published using DNSKEY RR –  When key is updated, DS record must again be sent to parent zone

•  To address this administrative load, two keypairs will be used

27

Page 28: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Types of Keys

•  Zone Signing Key (ZSK) –  Signs the RRsets within the zone –  Signed by the KSK –  Uses flag 256

•  Key Signing Key (KSK) –  Signs the ZSK –  Pointed to by the parent zone –  Acts as the secure entry point to the

28

Page 29: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Signature Expiration

•  Keys do not expire –  Still a good practice to generate new ones regularly for added

security

•  Signatures have validity period –  By default set to 30 days –  This info is added in the key metadata

•  Expired signatures will not validate –  Must re-sign the zones

29

Page 30: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

DNSSEC - Setting up a Secure Zone

•  Enable DNSSEC in the configuration file (named.conf) –  dnssec-enable yes; dnssec-validation yes;

•  Create key pairs (KSK and ZSK) –  dnssec-keygen -a rsasha1 -b 1024 -n zone myzone.net

•  Publish your public key

•  Signing the zone

•  Update the config file –  Modify the zone statement, replace with the signed zone file

•  Test with dig

30

Page 31: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

DNSSEC in the Resolver

•  Recursive servers that are dnssec-enabled can validate signed zones

•  Enable DNSSEC validation

dnssec-validation yes;

•  The AD bit in the message flag shows if validated

31

Page 32: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

DNSSEC Validation

•  Other options if you don’t have a validating resolver –  validator add-on for your web browser

•  ex: https://www.dnssec-validator.cz/

–  Online web tools •  http://dnsviz.net/ •  http://dnssec-debugger.verisignlabs.com/

•  Use an open DNSSEC-validating resolver –  DNS-OARC’s ODVR (link)

•  149.20.64.20 (BIND9), 149.20.64.21 (Unbound)

–  Google Public DNS •  8.8.8.8 or 8.8.4.4

32

Page 33: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

DNSSEC - Setting up a Secure Zone

•  Enable DNSSEC in the configuration file (named.conf) –  dnssec-enable yes; dnssec-validation yes;

•  Create key pairs (KSK and ZSK) dnssec-keygen -a rsasha1 -b 1024 -n zone myzone.net

•  Publish your public key

•  Signing the zone

•  Update the config file –  Modify the zone statement, replace with the signed zone file

•  Test with dig

33

Page 34: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Generating Key Pairs

•  To create ZSK

dnssec-keygen -a rsasha1 -b 1024 -n zone myzone.net

•  To create KSK

dnssec-keygen -a rsasha1 -b 2048 -f KSK -n zone myzone.net

34

Page 35: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Publishing the Public Key

•  Using $INCLUDE you can call the public key (DNSKEY RR) inside the zone file

$INCLUDE /path/Kmyzone.net.+005+33633.key ; ZSK

$INCLUDE /path/Kmyzone.net.+005+00478.key ; KSK

•  You can also manually enter the DNSKEY RR in the zone file

35

Page 36: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Signing the Zone

•  Sign the zone using the secret keys:

dnssec-signzone –o <zonename> -N INCREMENT -f <output-file> -k <KSKfile> <zonefile> <ZSKfile>

dnssec-signzone –o myzone.net -k Kmyzone.net.+005+11111 db.myzone.net Kmyzone.net.+005+33633

•  Once you sign the zone a file with a .signed extension will be created –  db.myzone.net.signed

36

Page 37: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Publishing the Zone

•  Reconfigure to load the signed zone. Edit named.conf and point to the signed zone.

zone “<myzone>” {

type master; # file “db.myzone.net”; file “db.myzone.net.signed”;

};

37

Page 38: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Testing the Server

•  Ask a dnssec-enabled server and see whether the answer is signed

dig @localhost www.apnic.net +dnssec +multiline

38

Page 39: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Testing with Dig dig @localhost www.apnic.net +dnssec +multiline

39

Page 40: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Pushing the DS record

•  The DS record must be published by the parent zone.

•  Contact the parent zone to communicate the KSK to them.

•  There are proposals in the IETF DNSOP WG to address this: –  Automating DNSSEC Delegation Trust Maintenance (link) –  Child to Parent Synchronization in DNS (link)

40

Page 41: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Pushing DS Records for Forward Zone

41

Example form for Godaddy

Page 42: DNS Security - wiki.bdnog.orgwiki.bdnog.org/lib/exe/fetch.php/bdnog5/dnssec-fundamentals.pdf · bdNOG5 & ION Conference 7-11 April, 2016, Dhaka, Bangladesh . Overview • How DNS

Question

42