|
List Info
Thread: avahi build problems
|
|
| avahi build problems |

|
2006-05-04 13:50:36 |
Im packaging avahi (from cvs) and what happens if i use
autogen.sh or
bootstrap.sh is that makes no differences what are the
configure options i
put the build always break saying cant detect qt4 and i put
the option
--disable-qt4
So to be able to build avahi i have to override config in
spec with:
aclocal-1.9 -I common
libtoolize --force
autoconf
autoheader
automake-1.9 --add-missing
This way the configure options that are in spec are
recognized
--
Zé
Linux user #378762
MDE Developer - www.mde.djura.org
--
Zé
Linux user #378762
MDE Developer - www.mde.djura.org
_______________________________________________
avahi mailing list
avahi lists.freedesktop.org
h
ttp://lists.freedesktop.org/mailman/listinfo/avahi
|
|
| avahi build problems |

|
2006-05-04 20:43:44 |
On Thu, 04.05.06 14:50, Zé (mmodem00 gmail.com) wrote:
> Im packaging avahi (from cvs) and what happens if i use
autogen.sh or
> bootstrap.sh is that makes no differences what are the
configure options i
> put the build always break saying cant detect qt4 and i
put the option
> --disable-qt4
>
> So to be able to build avahi i have to override config
in spec with:
>
> aclocal-1.9 -I common
> libtoolize --force
> autoconf
> autoheader
> automake-1.9 --add-missing
>
> This way the configure options that are in spec are
recognized
Why do you try to package an SVN version of Avahi? There's
a good
reason why there are official avahi releases from time to
time.
What is the distribution you're packaging avahi for?
Try this:
./autogen --disable-qt4
This will call the commands you mentioned above and finally
"./configure
--disable-qt4". I'm pretty sure that it works
correctly, since I
tested it successfully a few minutes ago.
Lennart
--
Lennart Poettering; lennart [at] poettering [dot] net
ICQ# 11060553; GPG 0x1A015CC4; http://0pointer.net/lenn
art/
_______________________________________________
avahi mailing list
avahi lists.freedesktop.org
h
ttp://lists.freedesktop.org/mailman/listinfo/avahi
|
|
| avahi build problems |

|
2006-05-04 22:57:56 |
Em Thursday, 4 de May de 2006 21:43, Lennart Poettering
escreveu:
> On Thu, 04.05.06 14:50, Zé (mmodem00 gmail.com) wrote:
> > Im packaging avahi (from cvs) and what happens if
i use autogen.sh or
> > bootstrap.sh is that makes no differences what are
the configure options
> > i put the build always break saying cant detect
qt4 and i put the option
> > --disable-qt4
> >
> > So to be able to build avahi i have to override
config in spec with:
> >
> > aclocal-1.9 -I common
> > libtoolize --force
> > autoconf
> > autoheader
> > automake-1.9 --add-missing
> >
> > This way the configure options that are in spec
are recognized
>
> Why do you try to package an SVN version of Avahi?
There's a good
> reason why there are official avahi releases from time
to time.
>
> What is the distribution you're packaging avahi for?
mandriva
> Try this:
>
> ./autogen --disable-qt4
Things cant be done like this since qt4 is as a condition,
if qt4 is on system
then will build with qt4
> This will call the commands you mentioned above and
finally "./configure
> --disable-qt4". I'm pretty sure that it works
correctly, since I
> tested it successfully a few minutes ago.
>
> Lennart
Ill paste here the part of spec regarding configure and
make:
%prep
%if svn
%setup -q -n %name
%else
%setup -q
%endif
%build
#Zé: to use with stable 0.6.9 version
aclocal-1.9 -I common
libtoolize --force
autoconf
autoheader
automake-1.9 --add-missing
%configure2_5x \
%if !%build_mono
--disable-mono \
%endif
%if !%build_qt4
--disable-qt4 \
%endif
--localstatedir=%_var \
--with-dbus-system-address="unix:path=%_var/run/dbus/
system_dbus_socket" \
--enable-compat-libdns_sd \
--enable-compat-howl
%make
%install
rm -rf $RPM_BUILD_ROOT
%makeinstall_std
--
Zé
Linux user #378762
MDE Developer - www.mde.djura.org
--
Zé
Linux user #378762
MDE Developer - www.mde.djura.org
_______________________________________________
avahi mailing list
avahi lists.freedesktop.org
h
ttp://lists.freedesktop.org/mailman/listinfo/avahi
|
|
| avahi build problems |

|
2006-05-04 23:14:47 |
On Thu, 04.05.06 23:57, Zé (mmodem00 gmail.com) wrote:
> > Try this:
> >
> > ./autogen --disable-qt4
> Things cant be done like this since qt4 is as a
condition, if qt4 is on system
> then will build with qt4
Mhmm, I can't say I understand fully what exactly you try
to do and
where your problem lies. But in case you want to run the
autotools
stuff and the configure invocation separately: simply pass
NOCONFIGURE=1 as environment variable to autogen.sh and it
will refrain from calling configure automatically:
NOCONFIGURE=1 ./autogen.sh
This is mostly the same as calling libtoolize, aclocal,
autoconf,
autoheader, automake (in this order).
> Ill paste here the part of spec regarding configure and
make:
[...]
I am sorry, but I have no experience with RPM. I am a Debian
guy and
can't tell you anything about how to write RPM spec files.
Lennart
--
Lennart Poettering; lennart [at] poettering [dot] net
ICQ# 11060553; GPG 0x1A015CC4; http://0pointer.net/lenn
art/
_______________________________________________
avahi mailing list
avahi lists.freedesktop.org
h
ttp://lists.freedesktop.org/mailman/listinfo/avahi
|
|
| avahi build problems |

|
2006-05-05 00:28:28 |
Em Friday, 5 de May de 2006 00:14, Lennart Poettering
escreveu:
> On Thu, 04.05.06 23:57, Zé (mmodem00 gmail.com) wrote:
> > > Try this:
> > >
> > > ./autogen --disable-qt4
> >
> > Things cant be done like this since qt4 is as a
condition, if qt4 is on
> > system then will build with qt4
>
> Mhmm, I can't say I understand fully what exactly you
try to do and
> where your problem lies. But in case you want to run
the autotools
> stuff and the configure invocation separately: simply
pass
> NOCONFIGURE=1 as environment variable to autogen.sh and
it
> will refrain from calling configure automatically:
>
> NOCONFIGURE=1 ./autogen.sh
>
> This is mostly the same as calling libtoolize, aclocal,
autoconf,
> autoheader, automake (in this order).
YEs but this isnt the problem, the problem is that if using
./autogen.sh if
will not recognize the configure options and the build stops
because it
doesnt detect qt4 and as you see in configure there is:
%if !%build_qt4
--disable-qt4 \
%endif
And if i go see config.log i have:
It was created by avahi configure 0.6.9, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ ./configure
as you se configure doesnt any of the specified options in
spec
> > Ill paste here the part of spec regarding
configure and make:
>
> [...]
>
> I am sorry, but I have no experience with RPM. I am a
Debian guy and
> can't tell you anything about how to write RPM spec
files.
>
> Lennart
--
Zé
Linux user #378762
MDE Developer - www.mde.djura.org
_______________________________________________
avahi mailing list
avahi lists.freedesktop.org
h
ttp://lists.freedesktop.org/mailman/listinfo/avahi
|
|
| avahi build problems |

|
2006-05-05 09:27:12 |
this issue seems specific to you or your distribution,
because we (the
avahi dev) use autogen.sh almost exclusively and never
encounter this
issue.
you should try to figure what is the difference between
running
NOCONFIGURE=1 ./autogen.sh
and calling the autotools one by one.
As lennart said, that's basicallly what autogen.sh does.
You could try first to add the command that you run manually
in a
script (autogen2.sh)
and test, then adding the content of autogen.sh to
autogen2.sh till
you find that it breaks.
On 5/5/06, Zé <mmodem00 gmail.com> wrote:
> Em Friday, 5 de May de 2006 00:14, Lennart Poettering
escreveu:
> > On Thu, 04.05.06 23:57, Zé (mmodem00 gmail.com) wrote:
> > > > Try this:
> > > >
> > > > ./autogen --disable-qt4
> > >
> > > Things cant be done like this since qt4 is as
a condition, if qt4 is on
> > > system then will build with qt4
> >
> > Mhmm, I can't say I understand fully what exactly
you try to do and
> > where your problem lies. But in case you want to
run the autotools
> > stuff and the configure invocation separately:
simply pass
> > NOCONFIGURE=1 as environment variable to
autogen.sh and it
> > will refrain from calling configure automatically:
> >
> > NOCONFIGURE=1 ./autogen.sh
> >
> > This is mostly the same as calling libtoolize,
aclocal, autoconf,
> > autoheader, automake (in this order).
> YEs but this isnt the problem, the problem is that if
using ./autogen.sh if
> will not recognize the configure options and the build
stops because it
> doesnt detect qt4 and as you see in configure there is:
> %if !%build_qt4
> --disable-qt4 \
> %endif
>
> And if i go see config.log i have:
>
> It was created by avahi configure 0.6.9, which was
> generated by GNU Autoconf 2.59. Invocation command
line was
>
> $ ./configure
>
> as you se configure doesnt any of the specified options
in spec
>
> > > Ill paste here the part of spec regarding
configure and make:
> >
> > [...]
> >
> > I am sorry, but I have no experience with RPM. I
am a Debian guy and
> > can't tell you anything about how to write RPM
spec files.
> >
> > Lennart
>
> --
> Zé
> Linux user #378762
> MDE Developer - www.mde.djura.org
> _______________________________________________
> avahi mailing list
> avahi lists.freedesktop.org
> h
ttp://lists.freedesktop.org/mailman/listinfo/avahi
>
--
Sebastien Estienne
_______________________________________________
avahi mailing list
avahi lists.freedesktop.org
h
ttp://lists.freedesktop.org/mailman/listinfo/avahi
|
|
| avahi build problems |

|
2006-05-05 13:27:03 |
On Fri, 05.05.06 01:28, Zé (mmodem00 gmail.com) wrote:
> YEs but this isnt the problem, the problem is that if
using ./autogen.sh if
> will not recognize the configure options and the build
stops because it
> doesnt detect qt4 and as you see in configure there is:
> %if !%build_qt4
> --disable-qt4 \
> %endif
I am pretty sure that your problem is caused by an error in
the spec
file and not in our build scripts.
Just a wild guess: perhaps rpm treats the trailing backslash
in a way
you didn't expect, so that the two lower lines you quote
above are
merged into one?
> %if !%build_qt4
> --disable-qt4 %endif
Which looks bogus to me.
Lennart
--
Lennart Poettering; lennart [at] poettering [dot] net
ICQ# 11060553; GPG 0x1A015CC4; http://0pointer.net/lenn
art/
_______________________________________________
avahi mailing list
avahi lists.freedesktop.org
h
ttp://lists.freedesktop.org/mailman/listinfo/avahi
|
|
| avahi build problems |

|
2006-05-05 15:37:36 |
Em Sexta, 5 de Maio de 2006 14:27, Lennart Poettering
escreveu:
> On Fri, 05.05.06 01:28, Zé (mmodem00 gmail.com) wrote:
> > YEs but this isnt the problem, the problem is that
if using ./autogen.sh
> > if will not recognize the configure options and
the build stops because
> > it doesnt detect qt4 and as you see in configure
there is:
> > %if !%build_qt4
> > --disable-qt4 \
> > %endif
>
> I am pretty sure that your problem is caused by an
error in the spec
> file and not in our build scripts.
>
> Just a wild guess: perhaps rpm treats the trailing
backslash in a way
> you didn't expect, so that the two lower lines you
quote above are
> merged into one?
>
> > %if !%build_qt4
> > --disable-qt4 %endif
>
> Which looks bogus to me.
>
> Lennart
The spec as no errors, always was build like and the problem
only occurs when
using from svn and is the configure macro is set like this:
%configure2_5x \
%if !%build_mono
--disable-mono \
%endif
%if !%build_qt4
--disable-qt4 \
%endif
--localstatedir=%_var \
--with-dbus-system-address="unix:path=%_var/run/dbus/
system_dbus_socket" \
--enable-compat-libdns_sd \
--enable-compat-howl
and not like you said.
--
Zé
Linux user #378762
MDE Developer - www.mde.djura.org
--
Zé
Linux user #378762
MDE Developer - www.mde.djura.org
_______________________________________________
avahi mailing list
avahi lists.freedesktop.org
h
ttp://lists.freedesktop.org/mailman/listinfo/avahi
|
|
| avahi build problems |

|
2006-05-05 16:43:19 |
On Fri, 05.05.06 16:37, Zé (mmodem00 gmail.com) wrote:
> > > %if !%build_qt4
> > > --disable-qt4 %endif
> >
> > Which looks bogus to me.
> >
> > Lennart
> The spec as no errors, always was build like and the
problem only occurs when
> using from svn and is the configure macro is set like
this:
> %configure2_5x \
> %if !%build_mono
> --disable-mono \
> %endif
> %if !%build_qt4
> --disable-qt4 \
> %endif
> --localstatedir=%_var \
>
--with-dbus-system-address="unix:path=%_var/run/dbus/
system_dbus_socket" \
> --enable-compat-libdns_sd \
> --enable-compat-howl
>
> and not like you said.
Please check the following: Run the RPM build and while
configure is
still running call "ps xawwww | grep configure"
and check if the
arguments to configure are actually set. If so, please paste
them.
Lennart
--
Lennart Poettering; lennart [at] poettering [dot] net
ICQ# 11060553; GPG 0x1A015CC4; http://0pointer.net/lenn
art/
_______________________________________________
avahi mailing list
avahi lists.freedesktop.org
h
ttp://lists.freedesktop.org/mailman/listinfo/avahi
|
|
| Problem with avahi-test on Solaris |

|
2006-06-08 08:49:52 |
I have tried running avahi-test on Solaris and I encounter a
crash when
it is exiting; stack trace of core file in first attachment.
It looks like the problem is that an AvahiInterfaceMonitor
is being
referred to after it has been freed.
I tried changing the order that stuff was freed in
avahi_server_free but
that did not help.
The output from avahi-test is in the second attachment.
Does this problem occur in other environments?
Padraig
core 'core' of
7611: /export/home/padraigo/avahi-0.6.10/avahi-core/.libs/av
ahi-test
0806bb70 ???????? (8065698, 80477f8)
fef5227c avahi_hashmap_lookup (8065698, 80477f8) + 6c
fef28f77 avahi_interface_monitor_get_hw_interface (8064e98,
2) + d7
fef28e2c avahi_interface_monitor_get_interface (8064e98, 2,
0) + dc
fef29b8c avahi_interface_monitor_walk (8064e98, 2, 0,
fef57140, 80747f8) + bc
fef572f6 avahi_querier_remove_for_all (8063520, 2, 0,
80747f8) + b6
fef55b98 lookup_stop (8075748) + 98
fef55c48 lookup_destroy (8075748) + 68
fef569b6 avahi_multicast_lookup_engine_free (8063720) + 76
fef2f93c avahi_server_free (8063520) + 2cc
08052b7c main (1, 8047a5c, 8047a64) + 32c
08051bfa _start (1, 8047b28, 0, 8047b67, 8047bb6,
8047bc5) + 7a
New relevant interface bge0.IPv6 for mDNS.
Joining mDNS multicast group on interface bge0.IPv6 with
address fe80::20a:e4ff:fe68:5101.
New relevant interface bge0.IPv4 for mDNS.
Joining mDNS multicast group on interface bge0.IPv4 with
address 129.156.226.247.
Network interface enumeration completed.
Registering new address record for fe80::20a:e4ff:fe68:5101
on bge0.
Registering new address record for 129.156.226.247 on bge0.
server state: 1
Registering HINFO record with values 'I86PC'/'SUNOS'.
RB: [CACHE_EXHAUSTED]
DSB: (-1.-1): NULL/n/a:0 [CACHE_EXHAUSTED]
DB: (-1.-1) <NULL> [CACHE_EXHAUSTED]
STB: (-1.-1) NULL in <local> [CACHE_EXHAUSTED]
SB: (-1.-1) <NULL> as _http._tcp in <local>
[CACHE_EXHAUSTED]
STB: (2.0) _ftp._tcp in <local> [NEW]
STB: (2.0) _workstation._tcp in <local> [NEW]
STB: (2.0) _ssh._tcp in <local> [NEW]
STB: (2.0) _sftp-ssh._tcp in <local> [NEW]
server state: 2
Server startup complete. Host name is <arch.local>.
Service cookie is 96953204
entry group state: 1
DSB: (-1.-1): NULL/n/a:0 [ALL_FOR_NOW]
DB: (-1.-1) <NULL> [ALL_FOR_NOW]
STB: (-1.-1) NULL in <local> [ALL_FOR_NOW]
SB: (-1.-1) <NULL> as _http._tcp in <local>
[ALL_FOR_NOW]
SB: (2.1) <Test Service> as _http._tcp in
<local> [NEW]
STB: (2.1) _webdav._tcp in <local> [NEW]
STB: (2.1) _ftp._tcp in <local> [NEW]
STB: (2.1) _http._tcp in <local> [NEW]
STB: (2.1) _workstation._tcp in <local> [NEW]
SB: (2.0) <Test Service> as _http._tcp in
<local> [NEW]
STB: (2.0) _webdav._tcp in <local> [NEW]
STB: (2.0) _http._tcp in <local> [NEW]
entry group state: 2
Service established under name <Test Service>
DSB: (2.1): ip-c0a83201.local/192.168.50.1:53 [NEW]
DSB: (2.0): ip-c0a83201.local/192.168.50.1:53 [NEW]
wide-area.c: Query timed out.
RB: [FAILURE]
wide-area.c: Query timed out.
HNR: (-1.-1) <cname.local> -> n/a [FAILURE]
AR: (-1.-1) 192.168.50.1 -> <n/a> [FAILURE]
SR: (-1.-1) <Ecstasy HTTP> as _http._tcp in
<local> [FAILURE]
;;; ZONE DUMP FOLLOWS ;;;
cname.local IN CNAME cocaine.local ; ttl=4500 ; iface=-1
proto=-1
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
; iface=-1 proto=-1
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120 ; iface=-1 proto=-1
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120 ; iface=-1 proto=-1
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120 ; iface=-1 proto=-1
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=1 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=2 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=2 proto=-1
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120 ; iface=-1 proto=-1
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120 ;
iface=2 proto=0
arch.local IN A 129.156.226.247 ; ttl=120 ; iface=2 proto=0
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120 ; iface=2 proto=1
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120 ;
iface=2 proto=1
;;; INTERFACE bge0.IPv6 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120
;;; INTERFACE bge0.IPv4 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN A 129.156.226.247 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _sftp-ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
;; WIDE AREA CACHE ;;;
;;; ZONE DUMP FOLLOWS ;;;
cname.local IN CNAME cocaine.local ; ttl=4500 ; iface=-1
proto=-1
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
; iface=-1 proto=-1
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120 ; iface=-1 proto=-1
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120 ; iface=-1 proto=-1
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120 ; iface=-1 proto=-1
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=1 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=2 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=2 proto=-1
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120 ; iface=-1 proto=-1
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120 ;
iface=2 proto=0
arch.local IN A 129.156.226.247 ; ttl=120 ; iface=2 proto=0
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120 ; iface=2 proto=1
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120 ;
iface=2 proto=1
;;; INTERFACE bge0.IPv6 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120
;;; INTERFACE bge0.IPv4 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN A 129.156.226.247 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _sftp-ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
;; WIDE AREA CACHE ;;;
;;; ZONE DUMP FOLLOWS ;;;
cname.local IN CNAME cocaine.local ; ttl=4500 ; iface=-1
proto=-1
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
; iface=-1 proto=-1
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120 ; iface=-1 proto=-1
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120 ; iface=-1 proto=-1
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120 ; iface=-1 proto=-1
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=1 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=2 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=2 proto=-1
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120 ; iface=-1 proto=-1
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120 ;
iface=2 proto=0
arch.local IN A 129.156.226.247 ; ttl=120 ; iface=2 proto=0
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120 ; iface=2 proto=1
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120 ;
iface=2 proto=1
;;; INTERFACE bge0.IPv6 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120
;;; INTERFACE bge0.IPv4 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN A 129.156.226.247 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _sftp-ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
;; WIDE AREA CACHE ;;;
;;; ZONE DUMP FOLLOWS ;;;
cname.local IN CNAME cocaine.local ; ttl=4500 ; iface=-1
proto=-1
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
; iface=-1 proto=-1
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120 ; iface=-1 proto=-1
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120 ; iface=-1 proto=-1
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120 ; iface=-1 proto=-1
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=1 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=2 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=2 proto=-1
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120 ; iface=-1 proto=-1
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120 ;
iface=2 proto=0
arch.local IN A 129.156.226.247 ; ttl=120 ; iface=2 proto=0
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120 ; iface=2 proto=1
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120 ;
iface=2 proto=1
;;; INTERFACE bge0.IPv6 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120
;;; INTERFACE bge0.IPv4 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN A 129.156.226.247 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _sftp-ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
;; WIDE AREA CACHE ;;;
;;; ZONE DUMP FOLLOWS ;;;
cname.local IN CNAME cocaine.local ; ttl=4500 ; iface=-1
proto=-1
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
; iface=-1 proto=-1
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120 ; iface=-1 proto=-1
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120 ; iface=-1 proto=-1
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120 ; iface=-1 proto=-1
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=1 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=2 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=2 proto=-1
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120 ; iface=-1 proto=-1
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120 ;
iface=2 proto=0
arch.local IN A 129.156.226.247 ; ttl=120 ; iface=2 proto=0
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120 ; iface=2 proto=1
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120 ;
iface=2 proto=1
;;; INTERFACE bge0.IPv6 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120
;;; INTERFACE bge0.IPv4 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN A 129.156.226.247 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _sftp-ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
;; WIDE AREA CACHE ;;;
;;; ZONE DUMP FOLLOWS ;;;
cname.local IN CNAME cocaine.local ; ttl=4500 ; iface=-1
proto=-1
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
; iface=-1 proto=-1
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120 ; iface=-1 proto=-1
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120 ; iface=-1 proto=-1
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120 ; iface=-1 proto=-1
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=1 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=2 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=2 proto=-1
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120 ; iface=-1 proto=-1
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120 ;
iface=2 proto=0
arch.local IN A 129.156.226.247 ; ttl=120 ; iface=2 proto=0
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120 ; iface=2 proto=1
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120 ;
iface=2 proto=1
;;; INTERFACE bge0.IPv6 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120
;;; INTERFACE bge0.IPv4 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN A 129.156.226.247 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _sftp-ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
;; WIDE AREA CACHE ;;;
;;; ZONE DUMP FOLLOWS ;;;
cname.local IN CNAME cocaine.local ; ttl=4500 ; iface=-1
proto=-1
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
; iface=-1 proto=-1
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120 ; iface=-1 proto=-1
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120 ; iface=-1 proto=-1
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120 ; iface=-1 proto=-1
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=1 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=2 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=2 proto=-1
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120 ; iface=-1 proto=-1
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120 ;
iface=2 proto=0
arch.local IN A 129.156.226.247 ; ttl=120 ; iface=2 proto=0
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120 ; iface=2 proto=1
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120 ;
iface=2 proto=1
;;; INTERFACE bge0.IPv6 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120
;;; INTERFACE bge0.IPv4 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN A 129.156.226.247 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _sftp-ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
;; WIDE AREA CACHE ;;;
;;; ZONE DUMP FOLLOWS ;;;
cname.local IN CNAME cocaine.local ; ttl=4500 ; iface=-1
proto=-1
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
; iface=-1 proto=-1
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120 ; iface=-1 proto=-1
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120 ; iface=-1 proto=-1
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120 ; iface=-1 proto=-1
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=1 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=2 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=2 proto=-1
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120 ; iface=-1 proto=-1
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120 ;
iface=2 proto=0
arch.local IN A 129.156.226.247 ; ttl=120 ; iface=2 proto=0
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120 ; iface=2 proto=1
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120 ;
iface=2 proto=1
;;; INTERFACE bge0.IPv6 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120
;;; INTERFACE bge0.IPv4 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN A 129.156.226.247 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _sftp-ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
;; WIDE AREA CACHE ;;;
;;; ZONE DUMP FOLLOWS ;;;
cname.local IN CNAME cocaine.local ; ttl=4500 ; iface=-1
proto=-1
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
; iface=-1 proto=-1
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120 ; iface=-1 proto=-1
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120 ; iface=-1 proto=-1
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120 ; iface=-1 proto=-1
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=1 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=2 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=2 proto=-1
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120 ; iface=-1 proto=-1
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120 ;
iface=2 proto=0
arch.local IN A 129.156.226.247 ; ttl=120 ; iface=2 proto=0
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120 ; iface=2 proto=1
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120 ;
iface=2 proto=1
;;; INTERFACE bge0.IPv6 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120
;;; INTERFACE bge0.IPv4 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN A 129.156.226.247 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _sftp-ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
;; WIDE AREA CACHE ;;;
;;; ZONE DUMP FOLLOWS ;;;
cname.local IN CNAME cocaine.local ; ttl=4500 ; iface=-1
proto=-1
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
; iface=-1 proto=-1
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120 ; iface=-1 proto=-1
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120 ; iface=-1 proto=-1
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120 ; iface=-1 proto=-1
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=1 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=2 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=2 proto=-1
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120 ; iface=-1 proto=-1
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120 ;
iface=2 proto=0
arch.local IN A 129.156.226.247 ; ttl=120 ; iface=2 proto=0
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120 ; iface=2 proto=1
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120 ;
iface=2 proto=1
;;; INTERFACE bge0.IPv6 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN AAAA fe80::20a:e4ff:fe68:5101 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
1.0.1.5.8.6.e.f.f.f.4.e.a.0.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.
e.f.ip6.arpa IN PTR arch.local ; ttl=120
;;; INTERFACE bge0.IPv4 ;;;
;;; CACHE DUMP FOLLOWS ;;;
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500
cname.local IN CNAME cocaine.local ; ttl=4500
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
arch.local IN A 129.156.226.247 ; ttl=120
arch.local IN HINFO "I86PC" "SUNOS"
; ttl=120
247.226.156.129.in-addr.arpa IN PTR arch.local ; ttl=120
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _sftp-ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _ssh._tcp.local ;
ttl=4500
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500
;; WIDE AREA CACHE ;;;
;;; ZONE DUMP FOLLOWS ;;;
cname.local IN CNAME cocaine.local ; ttl=4500 ; iface=-1
proto=-1
_domain._udp.local IN SRV 0 0 53 ip-c0a83201.local ; ttl=120
; iface=-1 proto=-1
ip-c0a83201.local IN A 192.168.50.1 ; ttl=120 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _webdav._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._webdav._tcp.local IN SRV 0 0 80 arch.local
; ttl=120 ; iface=-1 proto=-1
_webdav._tcp.local IN PTR
Test\032Service._webdav._tcp.local ; ttl=4500 ; iface=-1
proto=-1
_services._dns-sd._udp.local IN PTR _ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._ftp._tcp.local IN SRV 0 0 21 arch.local ;
ttl=120 ; iface=-1 proto=-1
_ftp._tcp.local IN PTR Test\032Service._ftp._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN TXT "foo"
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=-1 proto=-1
Test\032Service._http._tcp.local IN SRV 0 0 80 arch.local ;
ttl=120 ; iface=-1 proto=-1
_http._tcp.local IN PTR Test\032Service._http._tcp.local ;
ttl=4500 ; iface=-1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=1 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
arch.local ; ttl=120 ; iface=1 proto=-1
_workstation._tcp.local IN PTR
arch\032\091\093._workstation._tcp.local ; ttl=4500 ;
iface=1 proto=-1
_services._dns-sd._udp.local IN PTR _workstation._tcp.local
; ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN TXT
"org.freedesktop.Avahi.cookie=96953204" ;
ttl=4500 ; iface=2 proto=-1
arch\032\091\093._workstation._tcp.local IN SRV 0 0 9
_______________________________________________
avahi mailing list
avahi lists.freedesktop.org
h
ttp://lists.freedesktop.org/mailman/listinfo/avahi
|
|
|
|