Tagged Questions
Avahi is a free zeroconf implementation - A service discovery protocol. It can be used to find services on a network and also to publish services to be found by other Zeroconf clients.
2
votes
1answer
144 views
Avahi dns_sd compatibility layer fails to run Browse callback
Background
I'm working on a cross-platform Zeroconf/Bonjour/DNS-SD library for Haskell, and figured my best bet would bet would be to target the dns_sd.h API. Under Linux, the implementation of this ...
2
votes
1answer
357 views
How to implement a local subdomain dns server that is avahi aware?
I've built a mini dns server with twisted that is avahi aware.
What it does is look for request that ends with .local; If it's the url of the host something like {{hostname}}.local the dns server ...
2
votes
1answer
194 views
avahi: broadcast that my service has updated information
I have an avahi (zeroconf, dnssd, bonjour) service. I want the service to be able to notify the clients when it has new data so the clients can then connect and query for the updated information.
...
2
votes
1answer
756 views
How to develop an Avahi client/server
I am trying to develop a client/server solution using python, the server must broadcast the service availability using Avahi. I am using the following code to publish the service:
import avahi
import ...
1
vote
1answer
108 views
Opensource library similar to avahi
I need to write an application on windows that connects to avahi running on Linux.I need opensource tools that i can use on windows os.
Im aware of BONJOUR.But it is tied to apple licenses...
Im not ...
1
vote
1answer
746 views
dbus_bus_request_name (): Connections are not allowed to own the service
I built a root filesystem on arm. It should run dbus-daemon and avahi-daemon, but when I try to run avahi-daemon
$ dbus-daemon --system
$ avahi-daemon
I get this message:
Found user 'avahi' (UID ...
1
vote
1answer
202 views
What does avahi-compat-libdns_sd do?
I have Bonjour (mDNSResponder - Linux version) up and running on a Ubuntu Box (Host A). I have managed to port Avahi to a new platform. As I see, ./mDNSNetMonitor is able to discover the service ...
1
vote
2answers
474 views
Avahi DNS Stack for iPhone?
I would like to know if we have an avahi api for iphone side? Alternatively, can we implement avahi protocol in iphone?
The avahi API provides:
avahi-core:
an API for embedding a
complete ...
1
vote
1answer
44 views
Exit from polling on avahi?
I've read the example code but I can't seem to find the exit condition(s) for the threaded poll.
Any clues?
0
votes
0answers
30 views
Avahi Compiler Error
I'm trying to setup a foundation for a project I'll be working on using Avahi. I've gone out and downloaded the shared library and header files necessary to make this happen. I also popped over to the ...
0
votes
1answer
62 views
dns-sd: how to manually register a remote service
I have a service on another remote system which is on another physical network and its multicast packages don't get to my local system, thus I don't see its DNS-SD published services.
I there a way I ...
0
votes
1answer
140 views
How Avahi dnsconfd works?
I see that avahi-dnsconfd achieve to handle dns request from the browser without being listed in /etc/resolv.conf. I think that it's part of the dns resolution spec to check whether or not localhost ...
0
votes
2answers
251 views
Is it possible to collect .local domain ip addresses hierarchically for building dhcp based dns?
Suppose you are in normal dhcp environment,
You'll get an ip address like:
192.168.0.101 for linuxpc1.localdomain on segment A
192.168.1.102 for linuxpc2.localdomain on segment B
I want to look ...
0
votes
1answer
93 views
Stopping the Avahi service and return a list of elements
Follow this example: How to develop an Avahi client/server I want to stop the service when I get all elements and return them in a list.
To stop the infinite loop is to call ...
0
votes
1answer
188 views
mdns: is there a web-service interface to avahi-daemon?
I would like to query the mdns database of avahi-daemon through HTTP. Is there a way to do this?
0
votes
2answers
1k views
Creating a program to be broadcasted by avahi
I'm trying to write a program that outputs data that can be served over a network with avahi. The documentation I've looked at seems to say I have to register the service with dbus and then connect ...