Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
dcc6bde0
Commit
dcc6bde0
authored
Aug 24, 2000
by
Brian Wellington
Browse files
Added a system test for selective forwarding.
parent
30e6ea9d
Changes
14
Hide whitespace changes
Inline
Side-by-side
bin/tests/system/conf.sh.in
View file @
dcc6bde0
...
...
@@ -15,7 +15,7 @@
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# $Id: conf.sh.in,v 1.1
2
2000/08/
01 01:14:21 tale
Exp $
# $Id: conf.sh.in,v 1.1
3
2000/08/
24 22:23:43 bwelling
Exp $
#
# Common configuration data for system tests, to be sourced into
...
...
@@ -37,8 +37,8 @@ KEYGEN=$TOP/bin/dnssec/dnssec-keygen
SIGNER
=
$TOP
/bin/dnssec/dnssec-signzone
KEYSIGNER
=
$TOP
/bin/dnssec/dnssec-signkey
KEYSETTOOL
=
$TOP
/bin/dnssec/dnssec-makekeyset
SUBDIRS
=
"dnssec glue limits lwresd notify nsupdate resolver stub
views xfer
\
xferquota"
SUBDIRS
=
"dnssec
forward
glue limits lwresd notify nsupdate resolver stub
\
views xfer
xferquota"
# PERL will be an empty string if no perl interpreter was found.
PERL
=
@PERL@
...
...
bin/tests/system/forward/clean.sh
0 → 100644
View file @
dcc6bde0
# Copyright (C) 2000 Internet Software Consortium.
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
# DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
# INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# $Id: clean.sh,v 1.1 2000/08/24 22:23:44 bwelling Exp $
#
# Clean up after forward tests.
#
rm
-f
dig.out.
*
bin/tests/system/forward/ns1/example.db
0 → 100644
View file @
dcc6bde0
$TTL 300 ; 5 minutes
@ IN SOA ns root (
2000082401 ; serial
1800 ; refresh (30 minutes)
1800 ; retry (30 minutes)
1814400 ; expire (3 weeks)
3600 ; minimum (1 hour)
)
NS ns
ns A 10.53.0.1
txt TXT "recursed"
bin/tests/system/forward/ns1/named.conf
0 → 100644
View file @
dcc6bde0
/*
*
Copyright
(
C
)
2000
Internet
Software
Consortium
.
*
*
Permission
to
use
,
copy
,
modify
,
and
distribute
this
software
for
any
*
purpose
with
or
without
fee
is
hereby
granted
,
provided
that
the
above
*
copyright
notice
and
this
permission
notice
appear
in
all
copies
.
*
*
THE
SOFTWARE
IS
PROVIDED
"AS IS"
AND
INTERNET
SOFTWARE
CONSORTIUM
*
DISCLAIMS
ALL
WARRANTIES
WITH
REGARD
TO
THIS
SOFTWARE
INCLUDING
ALL
*
IMPLIED
WARRANTIES
OF
MERCHANTABILITY
AND
FITNESS
.
IN
NO
EVENT
SHALL
*
INTERNET
SOFTWARE
CONSORTIUM
BE
LIABLE
FOR
ANY
SPECIAL
,
DIRECT
,
*
INDIRECT
,
OR
CONSEQUENTIAL
DAMAGES
OR
ANY
DAMAGES
WHATSOEVER
RESULTING
*
FROM
LOSS
OF
USE
,
DATA
OR
PROFITS
,
WHETHER
IN
AN
ACTION
OF
CONTRACT
,
*
NEGLIGENCE
OR
OTHER
TORTIOUS
ACTION
,
ARISING
OUT
OF
OR
IN
CONNECTION
*
WITH
THE
USE
OR
PERFORMANCE
OF
THIS
SOFTWARE
.
*/
/* $
Id
:
named
.
conf
,
v
1
.
1
2000
/
08
/
24
22
:
23
:
44
bwelling
Exp
$ */
options
{
query
-
source
address
10
.
53
.
0
.
1
;
port
5300
;
directory
"."
;
pid
-
file
"named.pid"
;
listen
-
on
{
10
.
53
.
0
.
1
; };
listen
-
on
-
v6
{
none
;};
recursion
no
;
};
zone
"."
{
type
master
;
file
"root.db"
;
};
zone
"example1."
{
type
master
;
file
"example.db"
;
};
zone
"example2."
{
type
master
;
file
"example.db"
;
};
zone
"example3."
{
type
master
;
file
"example.db"
;
};
zone
"example4."
{
type
master
;
file
"example.db"
;
};
bin/tests/system/forward/ns1/root.db
0 → 100644
View file @
dcc6bde0
; Copyright (C) 2000 Internet Software Consortium.
;
; Permission to use, copy, modify, and distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
; copyright notice and this permission notice appear in all copies.
;
; THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
; DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
; INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
; INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
; FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
; NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
; WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
; $Id: root.db,v 1.1 2000/08/24 22:23:45 bwelling Exp $
$TTL 300
. IN SOA gson.nominum.com. a.root.servers.nil. (
2000042100 ; serial
600 ; refresh
600 ; retry
1200 ; expire
600 ; minimum
)
. NS a.root-servers.nil.
a.root-servers.nil. A 10.53.0.1
example1 NS ns.example1
ns.example1 A 10.53.0.1
example2 NS ns.example2
ns.example2 A 10.53.0.1
example3 NS ns.example3
ns.example3 A 10.53.0.1
bin/tests/system/forward/ns2/example.db
0 → 100644
View file @
dcc6bde0
$TTL 300 ; 5 minutes
@ IN SOA ns root (
2000082401 ; serial
1800 ; refresh (30 minutes)
1800 ; retry (30 minutes)
1814400 ; expire (3 weeks)
3600 ; minimum (1 hour)
)
NS ns
ns A 10.53.0.1
txt TXT "forwarded"
bin/tests/system/forward/ns2/named.conf
0 → 100644
View file @
dcc6bde0
/*
*
Copyright
(
C
)
2000
Internet
Software
Consortium
.
*
*
Permission
to
use
,
copy
,
modify
,
and
distribute
this
software
for
any
*
purpose
with
or
without
fee
is
hereby
granted
,
provided
that
the
above
*
copyright
notice
and
this
permission
notice
appear
in
all
copies
.
*
*
THE
SOFTWARE
IS
PROVIDED
"AS IS"
AND
INTERNET
SOFTWARE
CONSORTIUM
*
DISCLAIMS
ALL
WARRANTIES
WITH
REGARD
TO
THIS
SOFTWARE
INCLUDING
ALL
*
IMPLIED
WARRANTIES
OF
MERCHANTABILITY
AND
FITNESS
.
IN
NO
EVENT
SHALL
*
INTERNET
SOFTWARE
CONSORTIUM
BE
LIABLE
FOR
ANY
SPECIAL
,
DIRECT
,
*
INDIRECT
,
OR
CONSEQUENTIAL
DAMAGES
OR
ANY
DAMAGES
WHATSOEVER
RESULTING
*
FROM
LOSS
OF
USE
,
DATA
OR
PROFITS
,
WHETHER
IN
AN
ACTION
OF
CONTRACT
,
*
NEGLIGENCE
OR
OTHER
TORTIOUS
ACTION
,
ARISING
OUT
OF
OR
IN
CONNECTION
*
WITH
THE
USE
OR
PERFORMANCE
OF
THIS
SOFTWARE
.
*/
/* $
Id
:
named
.
conf
,
v
1
.
1
2000
/
08
/
24
22
:
23
:
45
bwelling
Exp
$ */
options
{
query
-
source
address
10
.
53
.
0
.
2
;
port
5300
;
directory
"."
;
pid
-
file
"named.pid"
;
listen
-
on
{
10
.
53
.
0
.
2
; };
listen
-
on
-
v6
{
none
;};
recursion
no
;
};
zone
"."
{
type
hint
;
file
"root.db"
;
};
zone
"example1."
{
type
master
;
file
"example.db"
;
};
zone
"example2."
{
type
master
;
file
"example.db"
;
};
zone
"example3."
{
type
master
;
file
"example.db"
;
};
bin/tests/system/forward/ns2/root.db
0 → 100644
View file @
dcc6bde0
; Copyright (C) 2000 Internet Software Consortium.
;
; Permission to use, copy, modify, and distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
; copyright notice and this permission notice appear in all copies.
;
; THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
; DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
; INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
; INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
; FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
; NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
; WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
; $Id: root.db,v 1.1 2000/08/24 22:23:45 bwelling Exp $
$TTL 300
. IN SOA gson.nominum.com. a.root.servers.nil. (
2000042100 ; serial
600 ; refresh
600 ; retry
1200 ; expire
600 ; minimum
)
. NS a.root-servers.nil.
a.root-servers.nil. A 10.53.0.1
example1 NS ns.example1
ns.example1 A 10.53.0.1
example2 NS ns.example2
ns.example2 A 10.53.0.1
example3 NS ns.example3
ns.example3 A 10.53.0.1
bin/tests/system/forward/ns3/named.conf
0 → 100644
View file @
dcc6bde0
/*
*
Copyright
(
C
)
2000
Internet
Software
Consortium
.
*
*
Permission
to
use
,
copy
,
modify
,
and
distribute
this
software
for
any
*
purpose
with
or
without
fee
is
hereby
granted
,
provided
that
the
above
*
copyright
notice
and
this
permission
notice
appear
in
all
copies
.
*
*
THE
SOFTWARE
IS
PROVIDED
"AS IS"
AND
INTERNET
SOFTWARE
CONSORTIUM
*
DISCLAIMS
ALL
WARRANTIES
WITH
REGARD
TO
THIS
SOFTWARE
INCLUDING
ALL
*
IMPLIED
WARRANTIES
OF
MERCHANTABILITY
AND
FITNESS
.
IN
NO
EVENT
SHALL
*
INTERNET
SOFTWARE
CONSORTIUM
BE
LIABLE
FOR
ANY
SPECIAL
,
DIRECT
,
*
INDIRECT
,
OR
CONSEQUENTIAL
DAMAGES
OR
ANY
DAMAGES
WHATSOEVER
RESULTING
*
FROM
LOSS
OF
USE
,
DATA
OR
PROFITS
,
WHETHER
IN
AN
ACTION
OF
CONTRACT
,
*
NEGLIGENCE
OR
OTHER
TORTIOUS
ACTION
,
ARISING
OUT
OF
OR
IN
CONNECTION
*
WITH
THE
USE
OR
PERFORMANCE
OF
THIS
SOFTWARE
.
*/
/* $
Id
:
named
.
conf
,
v
1
.
1
2000
/
08
/
24
22
:
23
:
46
bwelling
Exp
$ */
options
{
query
-
source
address
10
.
53
.
0
.
3
;
port
5300
;
directory
"."
;
pid
-
file
"named.pid"
;
listen
-
on
{
10
.
53
.
0
.
3
; };
listen
-
on
-
v6
{
none
;};
forwarders
{
10
.
53
.
0
.
2
; };
forward
first
;
};
zone
"."
{
type
hint
;
file
"root.db"
;
};
zone
"example1."
{
type
forward
;
forward
first
;
forwarders
{
10
.
53
.
0
.
2
; };
};
zone
"example2."
{
type
forward
;
forward
first
;
};
bin/tests/system/forward/ns3/root.db
0 → 100644
View file @
dcc6bde0
; Copyright (C) 2000 Internet Software Consortium.
;
; Permission to use, copy, modify, and distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
; copyright notice and this permission notice appear in all copies.
;
; THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
; DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
; INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
; INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
; FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
; NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
; WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
; $Id: root.db,v 1.1 2000/08/24 22:23:46 bwelling Exp $
$TTL 300
. IN SOA gson.nominum.com. a.root.servers.nil. (
2000042100 ; serial
600 ; refresh
600 ; retry
1200 ; expire
600 ; minimum
)
. NS a.root-servers.nil.
a.root-servers.nil. A 10.53.0.1
example1 NS ns.example1
ns.example1 A 10.53.0.1
example2 NS ns.example2
ns.example2 A 10.53.0.1
example3 NS ns.example3
ns.example3 A 10.53.0.1
bin/tests/system/forward/ns4/named.conf
0 → 100644
View file @
dcc6bde0
/*
*
Copyright
(
C
)
2000
Internet
Software
Consortium
.
*
*
Permission
to
use
,
copy
,
modify
,
and
distribute
this
software
for
any
*
purpose
with
or
without
fee
is
hereby
granted
,
provided
that
the
above
*
copyright
notice
and
this
permission
notice
appear
in
all
copies
.
*
*
THE
SOFTWARE
IS
PROVIDED
"AS IS"
AND
INTERNET
SOFTWARE
CONSORTIUM
*
DISCLAIMS
ALL
WARRANTIES
WITH
REGARD
TO
THIS
SOFTWARE
INCLUDING
ALL
*
IMPLIED
WARRANTIES
OF
MERCHANTABILITY
AND
FITNESS
.
IN
NO
EVENT
SHALL
*
INTERNET
SOFTWARE
CONSORTIUM
BE
LIABLE
FOR
ANY
SPECIAL
,
DIRECT
,
*
INDIRECT
,
OR
CONSEQUENTIAL
DAMAGES
OR
ANY
DAMAGES
WHATSOEVER
RESULTING
*
FROM
LOSS
OF
USE
,
DATA
OR
PROFITS
,
WHETHER
IN
AN
ACTION
OF
CONTRACT
,
*
NEGLIGENCE
OR
OTHER
TORTIOUS
ACTION
,
ARISING
OUT
OF
OR
IN
CONNECTION
*
WITH
THE
USE
OR
PERFORMANCE
OF
THIS
SOFTWARE
.
*/
/* $
Id
:
named
.
conf
,
v
1
.
1
2000
/
08
/
24
22
:
23
:
46
bwelling
Exp
$ */
options
{
query
-
source
address
10
.
53
.
0
.
4
;
port
5300
;
directory
"."
;
pid
-
file
"named.pid"
;
listen
-
on
{
10
.
53
.
0
.
4
; };
listen
-
on
-
v6
{
none
;};
};
zone
"."
{
type
hint
;
file
"root.db"
;
};
zone
"example1."
{
type
forward
;
forward
first
;
forwarders
{
10
.
53
.
0
.
2
; };
};
zone
"example3."
{
type
forward
;
forwarders
{
10
.
53
.
0
.
2
; };
};
zone
"example4."
{
type
forward
;
forward
only
;
forwarders
{
10
.
53
.
0
.
2
; };
};
bin/tests/system/forward/ns4/root.db
0 → 100644
View file @
dcc6bde0
; Copyright (C) 2000 Internet Software Consortium.
;
; Permission to use, copy, modify, and distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
; copyright notice and this permission notice appear in all copies.
;
; THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
; DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
; INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
; INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
; FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
; NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
; WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
; $Id: root.db,v 1.1 2000/08/24 22:23:46 bwelling Exp $
$TTL 300
. IN SOA gson.nominum.com. a.root.servers.nil. (
2000042100 ; serial
600 ; refresh
600 ; retry
1200 ; expire
600 ; minimum
)
. NS a.root-servers.nil.
a.root-servers.nil. A 10.53.0.1
example1 NS ns.example1
ns.example1 A 10.53.0.1
example2 NS ns.example2
ns.example2 A 10.53.0.1
example3 NS ns.example3
ns.example3 A 10.53.0.1
bin/tests/system/forward/tests.sh
0 → 100644
View file @
dcc6bde0
# Copyright (C) 2000 Internet Software Consortium.
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
# DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
# INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# $Id: tests.sh,v 1.1 2000/08/24 22:23:44 bwelling Exp $
SYSTEMTESTTOP
=
..
.
$SYSTEMTESTTOP
/conf.sh
#
# Perform tests
#
root
=
10.53.0.1
hidden
=
10.53.0.2
f1
=
10.53.0.3
f2
=
10.53.0.4
status
=
0
echo
"I:checking that a forward zone overrides global forwarders"
ret
=
0
$DIG
txt.example1. txt @
$hidden
-p
5300
>
dig.out.hidden
||
ret
=
1
$DIG
txt.example1. txt @
$f1
-p
5300
>
dig.out.f1
||
ret
=
1
$PERL
../digcomp.pl dig.out.hidden dig.out.f1
||
ret
=
1
if
[
$ret
!=
0
]
;
then
echo
"I:failed"
;
fi
status
=
`
expr
$status
+
$ret
`
echo
"I:checking that a forward zone with an empty forwarder list fails"
ret
=
0
$DIG
txt.example2. txt @
$root
-p
5300
>
dig.out.root
||
ret
=
1
$DIG
txt.example2. txt @
$f1
-p
5300
>
dig.out.f1
||
ret
=
1
$PERL
../digcomp.pl dig.out.root dig.out.f1
||
ret
=
1
if
[
$ret
!=
0
]
;
then
echo
"I:failed"
;
fi
status
=
`
expr
$status
+
$ret
`
echo
"I:checking that global forwarders work"
ret
=
0
$DIG
txt.example3. txt @
$hidden
-p
5300
>
dig.out.hidden
||
ret
=
1
$DIG
txt.example3. txt @
$f1
-p
5300
>
dig.out.f1
||
ret
=
1
$PERL
../digcomp.pl dig.out.hidden dig.out.f1
||
ret
=
1
if
[
$ret
!=
0
]
;
then
echo
"I:failed"
;
fi
status
=
`
expr
$status
+
$ret
`
echo
"I:checking that a forward zone works"
ret
=
0
$DIG
txt.example1. txt @
$hidden
-p
5300
>
dig.out.hidden
||
ret
=
1
$DIG
txt.example1. txt @
$f2
-p
5300
>
dig.out.f2
||
ret
=
1
$PERL
../digcomp.pl dig.out.hidden dig.out.f2
||
ret
=
1
if
[
$ret
!=
0
]
;
then
echo
"I:failed"
;
fi
status
=
`
expr
$status
+
$ret
`
echo
"I:checking that forwarding doesn't spontaneously happen"
ret
=
0
$DIG
txt.example2. txt @
$root
-p
5300
>
dig.out.root
||
ret
=
1
$DIG
txt.example2. txt @
$f2
-p
5300
>
dig.out.f2
||
ret
=
1
$PERL
../digcomp.pl dig.out.root dig.out.f2
||
ret
=
1
if
[
$ret
!=
0
]
;
then
echo
"I:failed"
;
fi
status
=
`
expr
$status
+
$ret
`
echo
"I:checking that a forward zone with no specified policy works"
ret
=
0
$DIG
txt.example3. txt @
$hidden
-p
5300
>
dig.out.hidden
||
ret
=
1
$DIG
txt.example3. txt @
$f2
-p
5300
>
dig.out.f2
||
ret
=
1
$PERL
../digcomp.pl dig.out.hidden dig.out.f2
||
ret
=
1
if
[
$ret
!=
0
]
;
then
echo
"I:failed"
;
fi
status
=
`
expr
$status
+
$ret
`
echo
"I:checking that a forward only doesn't recurse"
ret
=
0
$DIG
txt.example4. txt @
$f2
-p
5300
>
dig.out.f2
||
ret
=
1
grep
"SERVFAIL"
dig.out.f2
>
/dev/null
||
ret
=
1
if
[
$ret
!=
0
]
;
then
echo
"I:failed"
;
fi
status
=
`
expr
$status
+
$ret
`
echo
"I:exit status:
$status
"
exit
$status
util/copyrights
View file @
dcc6bde0
...
...
@@ -349,6 +349,18 @@
./bin/tests/system/dnssec/random.data X 2000
./bin/tests/system/dnssec/setup.sh SH 2000
./bin/tests/system/dnssec/tests.sh SH 2000
./bin/tests/system/forward/clean.sh SH 2000
./bin/tests/system/forward/ns1/example.db X 2000
./bin/tests/system/forward/ns1/named.conf CONF-C 2000
./bin/tests/system/forward/ns1/root.db X 2000
./bin/tests/system/forward/ns2/example.db X 2000
./bin/tests/system/forward/ns2/named.conf CONF-C 2000
./bin/tests/system/forward/ns2/root.db X 2000
./bin/tests/system/forward/ns3/named.conf CONF-C 2000
./bin/tests/system/forward/ns3/root.db X 2000
./bin/tests/system/forward/ns4/named.conf CONF-C 2000
./bin/tests/system/forward/ns4/root.db X 2000
./bin/tests/system/forward/tests.sh SH 2000
./bin/tests/system/glue/clean.sh SH 2000
./bin/tests/system/glue/fi.good X 2000
./bin/tests/system/glue/noglue.good X 2000
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment