📄 tests.sh
字号:
#!/bin/sh## Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")# Copyright (C) 2001 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 ISC DISCLAIMS ALL WARRANTIES WITH# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY# AND FITNESS. IN NO EVENT SHALL ISC 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.206.1 2004/03/06 10:22:41 marka Exp $SYSTEMTESTTOP=... $SYSTEMTESTTOP/conf.sh# ns1 = root server# ns2 = authoritative server# ns3 = recursive server doing v6 synthesisstatus=0DIGOPTS="+tcp +noadd +nosea +nostat +noquest +nocomm +nocmd"for name in aaaa a6 chain alias2 aaaa.dname loop loop2do $DIG $DIGOPTS $name.example. aaaa @10.53.0.3 -p 5300 echodone >dig.outfor i in 1 2do $DIG $DIGOPTS f.f.$i.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6.5.4.3.2.1.ip6.int. PTR @10.53.0.3 -p 5300 echodone >>dig.outcat <<EOF >good.outaaaa.example. 0 IN AAAA 12:34:56::ffa6.example. 0 IN AAAA 12:34:56::ffchain.example. 0 IN AAAA 12:34:56::ff:ffalias2.example. 0 IN CNAME alias.example.alias.example. 0 IN CNAME chain.example.chain.example. 0 IN AAAA 12:34:56::ff:ffaaaa.dname.example. 0 IN CNAME aaaa.foo.example.aaaa.foo.example. 0 IN AAAA 12:34:56::ffloop.example. 0 IN CNAME loop.example.loop2.example. 0 IN CNAME loop3.example.loop3.example. 0 IN CNAME loop2.example.f.f.1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6.5.4.3.2.1.ip6.int. 0 IN PTR foo.f.f.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6.5.4.3.2.1.ip6.int. 0 IN PTR bar.EOFdiff good.out dig.out || status=1echo "I:exit status: $status"exit $status
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -