9.4.0rc2 fixed order rrset's

Mark Andrews Mark_Andrews at isc.org
Tue Feb 6 06:06:32 UTC 2007


> Hi list,
> 
> I've tried to configure fixed order rrset's in the newest 9.4.0rc2, and I'm h
> aving
> a problem- they don't seem to work. No error is produced.
> 
> When I do a dig against my 'cluster' record, I'm still returned the A records
>  in a
> round-robin order.
> 
> Running BIND in debug mode, no errors that relate to the rrset-order configur
> ation
> statement are visible.
> 
> Below are my named.conf, zone file & debug output.
> 
> Has anyone ever got fixed-order rrset's to work with any version of 9.4 since
>  the
> functionality was introduced?
> 
> Regards,
>   - John
> 
> 
> named.conf
> ----
> options {
>         check-names master ignore;
>         check-names response ignore;
>         check-names slave ignore;
>         directory "/opt/local/etc/domain";
>         pid-file "/var/run/named.pid";
>         files 8192;
>         transfers-in 40;
>         version "";
>         rrset-order {
>                 type A name "foo.com" order fixed;

		type A name "*.foo.com" order fixed;

			or

		type A name "cluster.foo.com" order fixed;
>         };

lib/dns/order.c:
static inline isc_boolean_t
match(dns_name_t *name1, dns_name_t *name2) {

        if (dns_name_iswildcard(name2))
                return(dns_name_matcheswildcard(name1, name2));
        return (dns_name_equal(name1, name2));
}

>         query-source address * port 5353;
>         coresize 0;
> };
> 
> logging {
>         category lame-servers { null; };
> };
> 
> zone "foo.com" {
>         type master;
>         file "zone/foo.com";
>         allow-transfer { any; };
> };
> ----
> 
> zone/foo.com
> ----
> $TTL 3600                               ; Default TTL
> 
> @               IN      SOA     www.foo.com. hostmaster.foo.com. (
>                                 2006080700      ; yyyymmddnn serial
>                                 28800           ; Refresh     8 hours
>                                 7200            ; Retry       2 hours
>                                 604800          ; Expire      7 days
>                                 86400 )         ; Minimum TTL 1 day
> 
>                 IN      NS      ns0.foo.com.
>                 IN      NS      ns1.foo.com.
> 
> ns0             IN      A       10.0.0.1
> ns1             IN      A       10.0.0.2
> 
> cluster         IN      A       10.0.0.10
> cluster         IN      A       10.0.0.11
> 
> ----
> 
> debug
> ----
> bash-3.00# /opt/bind-9.4.0rc2/sbin/named -g -d 20 -c /opt/bind-9.4.0rc2/etc/n
> amed.conf
> 06-Feb-2007 14:52:35.225 starting BIND 9.4.0rc2 -g -d 20 -c /opt/bind-9.4.0rc
> 2/etc/named.conf
> 06-Feb-2007 14:52:35.228 found 1 CPU, using 1 worker thread
> 06-Feb-2007 14:52:35.262 loading configuration from '/opt/bind-9.4.0rc2/etc/n
> amed.conf'
> 06-Feb-2007 14:52:35.268 set maximum stack size to 2147483647: success
> 06-Feb-2007 14:52:35.270 set maximum data size to 2147483647: success
> 06-Feb-2007 14:52:35.272 set maximum core size to 0: success
> 06-Feb-2007 14:52:35.274 set maximum open files to 8192: success
> 06-Feb-2007 14:52:35.279 listening on IPv4 interface lo0, 127.0.0.1#53
> 06-Feb-2007 14:52:35.280 clientmgr @3bc6f0: create
> 06-Feb-2007 14:52:35.283 socket 3bd3d8: created
> 06-Feb-2007 14:52:35.283 clientmgr @3bc6f0: createclients
> 06-Feb-2007 14:52:35.283 clientmgr @3bc6f0: create new
> 06-Feb-2007 14:52:35.286 client @411f70: create
> 06-Feb-2007 14:52:35.287 socket 3c0518: created
> 06-Feb-2007 14:52:35.287 clientmgr @3bc6f0: createclients
> 06-Feb-2007 14:52:35.287 clientmgr @3bc6f0: create new
> 06-Feb-2007 14:52:35.290 client @459648: create
> 06-Feb-2007 14:52:35.291 listening on IPv4 interface eri0, 10.134.52.39#53
> 06-Feb-2007 14:52:35.291 clientmgr @3bc8c8: create
> 06-Feb-2007 14:52:35.291 socket 3c0658: created
> 06-Feb-2007 14:52:35.292 clientmgr @3bc8c8: createclients
> 06-Feb-2007 14:52:35.292 clientmgr @3bc8c8: create new
> 06-Feb-2007 14:52:35.294 client @4a0d20: create
> 06-Feb-2007 14:52:35.295 socket 3c0798: created
> 06-Feb-2007 14:52:35.295 clientmgr @3bc8c8: createclients
> 06-Feb-2007 14:52:35.295 clientmgr @3bc8c8: create new
> 06-Feb-2007 14:52:35.298 client @4e83f8: create
> 06-Feb-2007 14:52:35.305 socket 3c08d8: created
> 06-Feb-2007 14:52:35.306 socket 3c0a18: created
> 06-Feb-2007 14:52:35.306 res 3c3518: create
> 06-Feb-2007 14:52:35.322 cleaning interval for adb: 8 buckets every 30 second
> s, 1009 buckets in system, 3600 cl.interval
06-Feb-2007 14:52:35.322 dns_requestmgr_create
> 06-Feb-2007 14:52:35.323 dns_requestmgr_create: 3c5518
> 06-Feb-2007 14:52:35.323 dns_requestmgr_whenshutdown
> 06-Feb-2007 14:52:35.324 automatic empty zone: 127.IN-ADDR.ARPA
> 06-Feb-2007 14:52:35.324 automatic empty zone: 254.169.IN-ADDR.ARPA
> 06-Feb-2007 14:52:35.325 automatic empty zone: 2.0.192.IN-ADDR.ARPA
> 06-Feb-2007 14:52:35.325 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA
> 06-Feb-2007 14:52:35.326 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.
> 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA
> 06-Feb-2007 14:52:35.326 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.
> 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA
> 06-Feb-2007 14:52:35.327 automatic empty zone: D.F.IP6.ARPA
> 06-Feb-2007 14:52:35.327 automatic empty zone: 8.E.F.IP6.ARPA
> 06-Feb-2007 14:52:35.327 automatic empty zone: 9.E.F.IP6.ARPA
> 06-Feb-2007 14:52:35.328 automatic empty zone: A.E.F.IP6.ARPA
> 06-Feb-2007 14:52:35.328 automatic empty zone: B.E.F.IP6.ARPA
> 06-Feb-2007 14:52:35.335 res 3c35e8: create
06-Feb-2007 14:52:35.348 cleaning interval for adb: 8 buckets every 30 seconds,
>  1009 buckets in system, 3600 cl.interval
> 06-Feb-2007 14:52:35.348 dns_requestmgr_create
> 06-Feb-2007 14:52:35.348 dns_requestmgr_create: 3c5620
> 06-Feb-2007 14:52:35.348 dns_requestmgr_whenshutdown
> 06-Feb-2007 14:52:35.349 none:0: open: /opt/bind-9.4.0rc2//etc/rndc.key: file
>  not found
> 06-Feb-2007 14:52:35.350 couldn't add command channel 127.0.0.1#953: file not
>  found
> 06-Feb-2007 14:52:35.350 none:0: open: /opt/bind-9.4.0rc2//etc/rndc.key: file
>  not found
> 06-Feb-2007 14:52:35.351 couldn't add command channel ::1#953: file not found
> 06-Feb-2007 14:52:35.352 ignoring config file logging statement due to -g opt
> ion06-Feb-2007 14:52:35.354 load_configuration: success
> 06-Feb-2007 14:52:35.354 zone 127.IN-ADDR.ARPA/IN: starting load
> 06-Feb-2007 14:52:35.355 zone 127.IN-ADDR.ARPA/IN: number of nodes in databas
> e: 0
> 06-Feb-2007 14:52:35.355 zone 127.IN-ADDR.ARPA/IN: loaded
> 06-Feb-2007 14:52:35.356 zone 254.169.IN-ADDR.ARPA/IN: starting load
> 06-Feb-2007 14:52:35.357 zone 254.169.IN-ADDR.ARPA/IN: number of nodes in dat
> abase: 0
> 06-Feb-2007 14:52:35.357 zone 254.169.IN-ADDR.ARPA/IN: loaded
> 06-Feb-2007 14:52:35.358 zone 2.0.192.IN-ADDR.ARPA/IN: starting load
> 06-Feb-2007 14:52:35.358 zone 2.0.192.IN-ADDR.ARPA/IN: number of nodes in dat
> abase: 0
> 06-Feb-2007 14:52:35.358 zone 2.0.192.IN-ADDR.ARPA/IN: loaded
> 06-Feb-2007 14:52:35.359 zone 255.255.255.255.IN-ADDR.ARPA/IN: starting load
> 06-Feb-2007 14:52:35.359 zone 255.255.255.255.IN-ADDR.ARPA/IN: number of node
> s in database: 0
> 06-Feb-2007 14:52:35.360 zone 255.255.255.255.IN-ADDR.ARPA/IN: loaded
> 06-Feb-2007 14:52:35.361 zone 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0
> .0.0.0.0.0.0.0.0.IP6.ARPA/IN: starting load
> 06-Feb-2007 14:52:35.361 zone 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0
> .0.0.0.0.0.0.0.0.IP6.ARPA/IN: number of nodes in database: 0
> 06-Feb-2007 14:52:35.362 zone 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0
> .0.0.0.0.0.0.0.0.IP6.ARPA/IN: loaded
> 06-Feb-2007 14:52:35.362 zone 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0
> .0.0.0.0.0.0.0.0.IP6.ARPA/IN: starting load
> 06-Feb-2007 14:52:35.364 zone 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0
> .0.0.0.0.0.0.0.0.IP6.ARPA/IN: number of nodes in database: 0
> 06-Feb-2007 14:52:35.364 zone 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0
> .0.0.0.0.0.0.0.0.IP6.ARPA/IN: loaded
> 06-Feb-2007 14:52:35.365 zone D.F.IP6.ARPA/IN: starting load
> 06-Feb-2007 14:52:35.365 zone D.F.IP6.ARPA/IN: number of nodes in database: 0
> 06-Feb-2007 14:52:35.365 zone D.F.IP6.ARPA/IN: loaded
> 06-Feb-2007 14:52:35.366 zone 8.E.F.IP6.ARPA/IN: starting load
> 06-Feb-2007 14:52:35.367 zone 8.E.F.IP6.ARPA/IN: number of nodes in database:
>  0
> 06-Feb-2007 14:52:35.367 zone 8.E.F.IP6.ARPA/IN: loaded
> 06-Feb-2007 14:52:35.367 zone 9.E.F.IP6.ARPA/IN: starting load
> 06-Feb-2007 14:52:35.368 zone 9.E.F.IP6.ARPA/IN: number of nodes in database:
>  0
> 06-Feb-2007 14:52:35.368 zone 9.E.F.IP6.ARPA/IN: loaded
> 06-Feb-2007 14:52:35.368 zone A.E.F.IP6.ARPA/IN: starting load
> 06-Feb-2007 14:52:35.368 zone A.E.F.IP6.ARPA/IN: number of nodes in database:
>  0
> 06-Feb-2007 14:52:35.370 zone A.E.F.IP6.ARPA/IN: loaded
> 06-Feb-2007 14:52:35.371 zone B.E.F.IP6.ARPA/IN: starting load
> 06-Feb-2007 14:52:35.371 zone B.E.F.IP6.ARPA/IN: number of nodes in database:
>  0
> 06-Feb-2007 14:52:35.371 zone B.E.F.IP6.ARPA/IN: loaded
> 06-Feb-2007 14:52:35.372 zone foo.com/IN: starting load
> 06-Feb-2007 14:52:35.375 zone foo.com/IN: number of nodes in database: 4
> 06-Feb-2007 14:52:35.376 no journal file, but that's OK
> 06-Feb-2007 14:52:35.376 zone foo.com/IN: journal rollforward completed succe
> ssfully: no journal
> 06-Feb-2007 14:52:35.377 zone foo.com/IN: loaded
> 06-Feb-2007 14:52:35.378 zone foo.com/IN: loaded serial 2006080700
> 06-Feb-2007 14:52:35.378 zone authors.bind/CH: starting load
> 06-Feb-2007 14:52:35.378 zone authors.bind/CH: number of nodes in database: 0
> 06-Feb-2007 14:52:35.378 zone authors.bind/CH: loaded
> 06-Feb-2007 14:52:35.379 zone hostname.bind/CH: starting load
> 06-Feb-2007 14:52:35.379 zone hostname.bind/CH: number of nodes in database: 
> 0
> 06-Feb-2007 14:52:35.379 zone hostname.bind/CH: loaded
> 06-Feb-2007 14:52:35.382 zone version.bind/CH: starting load
> 06-Feb-2007 14:52:35.382 zone version.bind/CH: number of nodes in database: 0
> 06-Feb-2007 14:52:35.382 zone version.bind/CH: loaded
> 06-Feb-2007 14:52:35.383 zone id.server/CH: starting load
> 06-Feb-2007 14:52:35.383 zone id.server/CH: number of nodes in database: 0
> 06-Feb-2007 14:52:35.383 zone id.server/CH: loaded
> 06-Feb-2007 14:52:35.384 dns_zone_maintenance: zone foo.com/IN: enter
> 06-Feb-2007 14:52:35.384 dns_zone_maintenance: zone 127.IN-ADDR.ARPA/IN: ente
> r
> 06-Feb-2007 14:52:35.385 dns_zone_maintenance: zone 254.169.IN-ADDR.ARPA/IN: 
> enter
> 06-Feb-2007 14:52:35.386 dns_zone_maintenance: zone 2.0.192.IN-ADDR.ARPA/IN: 
> enter
> 06-Feb-2007 14:52:35.386 dns_zone_maintenance: zone 255.255.255.255.IN-ADDR.A
> RPA/IN: enter
> 06-Feb-2007 14:52:35.386 dns_zone_maintenance: zone 0.0.0.0.0.0.0.0.0.0.0.0.0
> .0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.386 dns_zone_maintenance: zone 1.0.0.0.0.0.0.0.0.0.0.0.0
> .0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.386 dns_zone_maintenance: zone D.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.387 dns_zone_maintenance: zone 8.E.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.388 dns_zone_maintenance: zone 9.E.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.388 dns_zone_maintenance: zone A.E.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.388 dns_zone_maintenance: zone B.E.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.388 dns_zone_maintenance: zone version.bind/CH: enter
> 06-Feb-2007 14:52:35.388 dns_zone_maintenance: zone hostname.bind/CH: enter
> 06-Feb-2007 14:52:35.388 dns_zone_maintenance: zone authors.bind/CH: enter
> 06-Feb-2007 14:52:35.389 dns_zone_maintenance: zone id.server/CH: enter
> 06-Feb-2007 14:52:35.390 running
> 06-Feb-2007 14:52:35.390 client @411f70: udprecv
> 06-Feb-2007 14:52:35.390 client @459648: accept
> 06-Feb-2007 14:52:35.391 client @4a0d20: udprecv
> 06-Feb-2007 14:52:35.391 client @4e83f8: accept
> 06-Feb-2007 14:52:35.391 zone_timer: zone 127.IN-ADDR.ARPA/IN: enter
> 06-Feb-2007 14:52:35.391 zone_maintenance: zone 127.IN-ADDR.ARPA/IN: enter
> 06-Feb-2007 14:52:35.391 zone_settimer: zone 127.IN-ADDR.ARPA/IN: settimer in
> active
> 06-Feb-2007 14:52:35.393 zone_timer: zone B.E.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.393 zone_maintenance: zone B.E.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.393 zone_settimer: zone B.E.F.IP6.ARPA/IN: settimer inac
> tive
> 06-Feb-2007 14:52:35.393 zone_timer: zone 254.169.IN-ADDR.ARPA/IN: enter
> 06-Feb-2007 14:52:35.393 zone_maintenance: zone 254.169.IN-ADDR.ARPA/IN: ente
> r
> 06-Feb-2007 14:52:35.393 zone_settimer: zone 254.169.IN-ADDR.ARPA/IN: settime
> r inactive
> 06-Feb-2007 14:52:35.393 zone_timer: zone foo.com/IN: enter
> 06-Feb-2007 14:52:35.394 zone_maintenance: zone foo.com/IN: enter
> 06-Feb-2007 14:52:35.395 zone foo.com/IN: sending notifies (serial 2006080700
> )
> 06-Feb-2007 14:52:35.396 expire_v4 set to MIN(2147483647,1170737555) import_r
> dataset
> 06-Feb-2007 14:52:35.396 dns_adb_createfind: found A for name 644ae0 in db
> 06-Feb-2007 14:52:35.396 adb name 644ae0: Caching auth negative entry for AAA
> A
> 06-Feb-2007 14:52:35.396 dns_adb_destroyfind on find 643888
> 06-Feb-2007 14:52:35.397 expire_v4 set to MIN(2147483647,1170737555) import_r
> dataset
> 06-Feb-2007 14:52:35.398 dns_adb_createfind: found A for name 644a30 in db
> 06-Feb-2007 14:52:35.398 adb name 644a30: Caching auth negative entry for AAA
> A
> 06-Feb-2007 14:52:35.399 dns_adb_destroyfind on find 643888
> 06-Feb-2007 14:52:35.399 zone_settimer: zone foo.com/IN: settimer inactive
> 06-Feb-2007 14:52:35.399 zone_timer: zone 2.0.192.IN-ADDR.ARPA/IN: enter
> 06-Feb-2007 14:52:35.399 zone_maintenance: zone 2.0.192.IN-ADDR.ARPA/IN: ente
> r
> 06-Feb-2007 14:52:35.399 zone_settimer: zone 2.0.192.IN-ADDR.ARPA/IN: settime
> r inactive
> 06-Feb-2007 14:52:35.400 zone_timer: zone 255.255.255.255.IN-ADDR.ARPA/IN: en
> ter06-Feb-2007 14:52:35.401 zone_maintenance: zone 255.255.255.255.IN-ADDR.AR
> PA/IN: enter
> 06-Feb-2007 14:52:35.401 zone_settimer: zone 255.255.255.255.IN-ADDR.ARPA/IN:
>  settimer inactive
> 06-Feb-2007 14:52:35.401 zone_timer: zone id.server/CH: enter
> 06-Feb-2007 14:52:35.401 zone_maintenance: zone id.server/CH: enter
> 06-Feb-2007 14:52:35.401 zone_settimer: zone id.server/CH: settimer inactive
> 06-Feb-2007 14:52:35.402 zone_timer: zone 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0
> .0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.402 zone_maintenance: zone 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0
> .0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.402 zone_settimer: zone 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.
> 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA/IN: settimer inactive
> 06-Feb-2007 14:52:35.403 zone_timer: zone 8.E.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.403 zone_maintenance: zone 8.E.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.404 zone_settimer: zone 8.E.F.IP6.ARPA/IN: settimer inac
> tive
> 06-Feb-2007 14:52:35.404 zone_timer: zone D.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.404 zone_maintenance: zone D.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.404 zone_settimer: zone D.F.IP6.ARPA/IN: settimer inacti
> ve
> 06-Feb-2007 14:52:35.404 zone_timer: zone version.bind/CH: enter
> 06-Feb-2007 14:52:35.404 zone_maintenance: zone version.bind/CH: enter
> 06-Feb-2007 14:52:35.404 zone_settimer: zone version.bind/CH: settimer inacti
> ve
> 06-Feb-2007 14:52:35.405 zone_timer: zone 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0
> .0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.405 zone_maintenance: zone 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0
> .0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.406 zone_settimer: zone 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.
> 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA/IN: settimer inactive
> 06-Feb-2007 14:52:35.406 zone_timer: zone 9.E.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.406 zone_maintenance: zone 9.E.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.407 zone_settimer: zone 9.E.F.IP6.ARPA/IN: settimer inac
> tive
> 06-Feb-2007 14:52:35.407 zone_timer: zone hostname.bind/CH: enter
> 06-Feb-2007 14:52:35.407 zone_maintenance: zone hostname.bind/CH: enter
> 06-Feb-2007 14:52:35.407 zone_settimer: zone hostname.bind/CH: settimer inact
> ive06-Feb-2007 14:52:35.407 zone_timer: zone authors.bind/CH: enter
> 06-Feb-2007 14:52:35.407 zone_maintenance: zone authors.bind/CH: enter
> 06-Feb-2007 14:52:35.407 zone_settimer: zone authors.bind/CH: settimer inacti
> ve
> 06-Feb-2007 14:52:35.408 zone_timer: zone A.E.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.408 zone_maintenance: zone A.E.F.IP6.ARPA/IN: enter
> 06-Feb-2007 14:52:35.409 zone_settimer: zone A.E.F.IP6.ARPA/IN: settimer inac
> tive
> 06-Feb-2007 14:52:35.409 zone foo.com/IN: sending notify to 10.0.0.1#53
> 06-Feb-2007 14:52:35.409 dns_request_createvia
> 06-Feb-2007 14:52:35.410 socket 3c0dd8: created
> 06-Feb-2007 14:52:35.411 request_render
> 06-Feb-2007 14:52:35.411 requestmgr_attach: 3c5518: eref 1 iref 1
> 06-Feb-2007 14:52:35.412 mgr_gethash
> 06-Feb-2007 14:52:35.412 req_send: request 3bf9c8
> 06-Feb-2007 14:52:35.413 dns_request_createvia: request 3bf9c8
> 06-Feb-2007 14:52:35.413 req_senddone: request 3bf9c8
> 06-Feb-2007 14:52:35.900 zone foo.com/IN: sending notify to 10.0.0.2#53
> 06-Feb-2007 14:52:35.900 dns_request_createvia
> 06-Feb-2007 14:52:35.901 request_render
> 06-Feb-2007 14:52:35.901 requestmgr_attach: 3c5518: eref 1 iref 2
> 06-Feb-2007 14:52:35.901 mgr_gethash
> 06-Feb-2007 14:52:35.901 req_send: request 3bf8d8
> 06-Feb-2007 14:52:35.902 dns_request_createvia: request 3bf8d8
> 06-Feb-2007 14:52:35.902 req_senddone: request 3bf8d8
> 
> 06-Feb-2007 14:52:50.420 req_timeout: request 3bf9c8
> 06-Feb-2007 14:52:50.420 req_send: request 3bf9c8
> 06-Feb-2007 14:52:50.420 req_senddone: request 3bf9c8
> 06-Feb-2007 14:52:50.910 req_timeout: request 3bf8d8
> 06-Feb-2007 14:52:50.910 req_send: request 3bf8d8
> 06-Feb-2007 14:52:50.910 req_senddone: request 3bf8d8
> 06-Feb-2007 14:53:05.430 req_timeout: request 3bf9c8
> 06-Feb-2007 14:53:05.430 req_send: request 3bf9c8
> 06-Feb-2007 14:53:05.430 req_senddone: request 3bf9c8
> 06-Feb-2007 14:53:05.920 req_timeout: request 3bf8d8
> 06-Feb-2007 14:53:05.920 req_send: request 3bf8d8
> 06-Feb-2007 14:53:05.920 req_senddone: request 3bf8d8
> 06-Feb-2007 14:53:20.420 req_timeout: request 3bf9c8
> 06-Feb-2007 14:53:20.420 req_cancel: request 3bf9c8
> 06-Feb-2007 14:53:20.420 req_sendevent: request 3bf9c8
> 06-Feb-2007 14:53:20.420 zone foo.com/IN: notify to 10.0.0.1#53 failed: timed
>  out
> 06-Feb-2007 14:53:20.421 zone foo.com/IN: notify to 10.0.0.1#53: retries exce
> eded
> 06-Feb-2007 14:53:20.421 dns_request_destroy: request 3bf9c8
> 06-Feb-2007 14:53:20.421 req_destroy: request 3bf9c8
> 06-Feb-2007 14:53:20.421 requestmgr_detach: 3c5518: eref 1 iref 1
> 06-Feb-2007 14:53:20.910 req_timeout: request 3bf8d8
> 06-Feb-2007 14:53:20.910 req_cancel: request 3bf8d8
> 06-Feb-2007 14:53:20.910 req_sendevent: request 3bf8d8
> 06-Feb-2007 14:53:20.910 zone foo.com/IN: notify to 10.0.0.2#53 failed: timed
>  out
> 06-Feb-2007 14:53:20.911 zone foo.com/IN: notify to 10.0.0.2#53: retries exce
> eded
> 06-Feb-2007 14:53:20.911 dns_request_destroy: request 3bf8d8
> 06-Feb-2007 14:53:20.911 req_destroy: request 3bf8d8
> 06-Feb-2007 14:53:20.911 requestmgr_detach: 3c5518: eref 1 iref 0
> 06-Feb-2007 14:53:20.911 socket 3c0dd8: destroying
> 06-Feb-2007 14:53:34.035 client 127.0.0.1#56375: UDP request
> 06-Feb-2007 14:53:34.035 client 127.0.0.1#56375: using view '_default'
> 06-Feb-2007 14:53:34.035 client 127.0.0.1#56375: request is not signed
> 06-Feb-2007 14:53:34.035 client 127.0.0.1#56375: recursion available
> 06-Feb-2007 14:53:34.036 client 127.0.0.1#56375: query
> 06-Feb-2007 14:53:34.036 client 127.0.0.1#56375: ns_client_attach: ref = 1
> 06-Feb-2007 14:53:34.036 client 127.0.0.1#56375: query 'cluster.foo.com/A/IN'
>  approved
> 06-Feb-2007 14:53:34.037 client 127.0.0.1#56375: send
> 06-Feb-2007 14:53:34.037 client 127.0.0.1#56375: sendto
> 06-Feb-2007 14:53:34.038 client 127.0.0.1#56375: senddone
> 06-Feb-2007 14:53:34.038 client 127.0.0.1#56375: next
> 06-Feb-2007 14:53:34.038 client 127.0.0.1#56375: ns_client_detach: ref = 0
> 06-Feb-2007 14:53:34.038 client 127.0.0.1#56375: endrequest
> 06-Feb-2007 14:53:34.039 client @411f70: udprecv
> 06-Feb-2007 14:53:35.201 client 127.0.0.1#56376: UDP request
> 06-Feb-2007 14:53:35.201 client 127.0.0.1#56376: using view '_default'
> 06-Feb-2007 14:53:35.201 client 127.0.0.1#56376: request is not signed
> 06-Feb-2007 14:53:35.202 client 127.0.0.1#56376: recursion available
> 06-Feb-2007 14:53:35.202 client 127.0.0.1#56376: query
> 06-Feb-2007 14:53:35.202 client 127.0.0.1#56376: ns_client_attach: ref = 1
> 06-Feb-2007 14:53:35.202 client 127.0.0.1#56376: query 'cluster.foo.com/A/IN'
>  approved
> 06-Feb-2007 14:53:35.203 client 127.0.0.1#56376: send
> 06-Feb-2007 14:53:35.203 client 127.0.0.1#56376: sendto
> 06-Feb-2007 14:53:35.203 client 127.0.0.1#56376: senddone
> 06-Feb-2007 14:53:35.204 client 127.0.0.1#56376: next
> 06-Feb-2007 14:53:35.204 client 127.0.0.1#56376: ns_client_detach: ref = 0
> 06-Feb-2007 14:53:35.204 client 127.0.0.1#56376: endrequest
> 06-Feb-2007 14:53:35.204 client @411f70: udprecv
> ----
> 
> 
-- 
Mark Andrews, ISC
1 Seymour St., Dundas Valley, NSW 2117, Australia
PHONE: +61 2 9871 4742                 INTERNET: Mark_Andrews at isc.org



More information about the bind-users mailing list