mirror of
https://gitlab.nic.cz/knot/knot-dns.git
synced 2026-02-18 01:58:25 -05:00
46 lines
959 B
Python
46 lines
959 B
Python
#!/usr/bin/env python3
|
|
|
|
'''Test for NOTIFY suppression after IXFR from a specified master'''
|
|
|
|
from dnstest.test import Test
|
|
|
|
t = Test()
|
|
|
|
master = t.server("knot")
|
|
tested = t.server("knot")
|
|
slave = t.server("knot")
|
|
|
|
zone = t.zone("example.com.")
|
|
|
|
t.link(zone, master, tested)
|
|
t.link(zone, tested, slave)
|
|
|
|
t.start()
|
|
|
|
serials_init = master.zones_wait(zone)
|
|
slave.zones_wait(zone)
|
|
|
|
up = master.update(zone)
|
|
up.add("suppnot1", 3600, "A", "1.2.3.4")
|
|
up.send()
|
|
|
|
slave.zones_wait(zone, serials_init)
|
|
|
|
req = slave.dig("suppnot1.example.com.", "A")
|
|
req.check(rcode="NOERROR")
|
|
|
|
confsock = tested.ctl_sock_rnd()
|
|
tested.ctl("conf-begin", custom_parm=confsock)
|
|
tested.ctl("conf-set remote[knot1].block-notify-after-transfer on", custom_parm=confsock)
|
|
tested.ctl("conf-commit", custom_parm=confsock)
|
|
|
|
up = master.update(zone)
|
|
up.add("suppnot2", 3600, "A", "1.2.3.4")
|
|
up.send()
|
|
|
|
t.sleep(10)
|
|
|
|
req = slave.dig("suppnot2.example.com.", "A")
|
|
req.check(rcode="NXDOMAIN")
|
|
|
|
t.end()
|