SlideShare ist ein Scribd-Unternehmen logo
1 von 59
Downloaden Sie, um offline zu lesen
JmDNS : Service
   Discovery for the
     21st Century
         B r i a n S l e t t e n
B o s a t s u C o n s u l t i n g , I n c
     b r i a n @ b o s a t s u . n e t

     N o F l u f f J u s t S t u f f
                2 0 0 6
Speaker
   Qualifications
12 years of software development
experience

Have own software consulting company for
design, mentoring, training and
development

Work with Semantic Web, Aspect-Oriented
Programming, Grid Computing
Agenda

Where We Have Been

ZeroConf

Bonjour

JmDNS

Brainstorming
Where have we
   been?
finding things in the
        past
 Configuration Files (ick!)

 DNS (requires central authority, hostname
 only -- no ports)

 Directory Services

 AppleTalk (chatty “has been”)

 JINI (Java-only, central services)

 JXTA (steep learning curve)
ad hoc networking
     too hard
Law Offices, Schools, etc. do not always
have sufficient IT personnel

Home networking is even worse!

 Could your grandma set up a DNS
 server?

 LDAP at home?

What is so hard about two devices talking?
Protocol Design
      Goals

Internet Protocol (IP) was designed to be
interoperable, extensible and scalable

Propietary protocols (AppleTalk,
NetBIOS/SMB, IPX) were designed
around local network features and
decentralized discovery
AppleTalk

Ahead of its time -- focused on services, not
devices

Too chatty for large networks

Not based on IP

Support persists but waned with Apple’s
pre-OS X fortunes
DHCP
Solves some of the problem

 Dynamic address allocation

 Great for clients

   Client-Server sessions are easy to
   regenerate

 Not-so-great for servers
DHCP (Cont)

However, still focuses on hardware, not
services (i.e. capabilities)

  Users care about ‘printing’ and ‘sharing
  files’ and listening to ‘music’

  How to publish? find? bind?
JINI
Showed a lot of early promise for finding
devices and services on a network

Problems:

 Required Java (harder to embed on
 devices, at least historically)

 Required Central Services

 Tried to proscribe service hierarchies
JXTA

Bill Joy Brain-Sibling to JINI

Multi-language/Multi-Platform

Huge Learning Curve

Although it has languished, good things
might still come from the JXTA world
Publish/Find/Bind

Hmmm... sounds familiar

WebServices are hoping to solve some of
these problems

 UDDI/WSDL/SOAP

 We’ll get back to you once WS-Whatever
 Draft is completed
ZeroConf
Zeroconf History

Began out of discussions on a mailing list in
1997

Interested people got together at IETF BOFs

ZeroConf WG was formed in 1999
Zeroconf Goals

Allocate addresses without a DHCP Server

Translate names and IP addresses without a
DNS Server

Find services without a directory server

Reuse existing technologies, infrastructure
and expertise
Zeroconf
    Technologies

IPv4 Link-Local Addressing

Multicast DNS

DNS Service Discovery
IPv4 link-local
     Addressing
Uses 169.254/16 prefix for “local links”

  Between 169.254.1.0-169.254.254.255

  Reserved by IANA for this purpose

Links are local when

  Host A sends a packet that arrives
  unmodified (i.e. no TTL decrements)
IPv4 link-local
Addressing (cont)

Hosts should not use “link-local” and
routable addresses at the same time

  Will use an IP address from DHCP if one
  is available
IPv4 Link-Local
     Process
Generate an address using a PRNG
(preferably seeded w/ MAC address or
something uniqueish)

ARP Probe for conflict

Claim address on success

Defend address on future conflict (ARP)

 Must relinquish if conflict persists
multicast dns

Designed to allow naming lookups without
central server

Introduces .local domain

 DNS is IETF technology so they are
 responsible, not ICANN
Multicast DNS
      (Cont)
Queries are sent to 224.0.0.251 on port 5353

Uses multicast broadcasts but is well-
designed to minimize chattiness

  Hosts listen to changes and can cache
  results

   To avoid pig-piling new queries, mDNS
  responders delay responses by random
  value to see if someone else will respond
Query Types
One Shot

 “Just give me something”

One Shot - Accumulate Results

 “Stick around for multiple results”

Continuous Query

 “Keep on keepin’ on”
Avoiding Chattiness

 Known Answer Suppression

 Passive Caching/Listening

 Exponential Decay Rates

 TTL Expirations

 New peers announce themselves
Claiming the Name

Pick a name (user-specified?)

Put together a DNS A Record

Perform T_ANY query to find any other
records with same name

Upon success (no conflicts), announce to
the world who you are
Clients and Services

 Users care about relevant services not all
 that are available

   Printer around the corner

   My wife’s Excellent iTunes Music
   Collection

   SSH into development server
dns service
discovery (DNS-SD)

No changes to DNS structures

Use DNS PTR queries to find SRV records
that match service instance pattern
 <instance>._protoname._transport.<domain>

Use TXT records for parameters
DNS-SD Goals

Service Instance Enumeration

Service Name Resolution

Somewhat persistent

 Here today, here tomorrow

Simple to implement
DNS-SD Service
    Instance

Browsing Service Instances

 “Leaves in a tree”

   <domain>.<service>.<instance>

 Name compression in responses
DNS-SD Txt Records


 Up to 65535 bytes

 Packed representation of zero or more
 strings
DNS-SD TXT Records
      (Cont)
 Name=Value Pairs

  Not present

  No value (“Debug”)

  Empty value (“Debug=”)

  Non-Empty value (“Debug=verbose”)
DNS-SD Query
     Example
_ftp._tcp.example.org

_http._tcp.example.org

_ipp._tcp.example.org

_daap._tcp.Carini.local

_tivo_servemedia._tcp.Carini.local
DNS-SD Meta-Query


_services._dns-sd._udp.<domain>

  Returns a list of PTR records matching
  service type
Registered DNS-SD
          Services
        http://www.dns-sd.org/ServiceTypes.html


        MYOB                            Adobe                Axis Video Cameras

Bootstrap Protocol Server   Oracle Cluster Topology Server      CodeWarrior

    Elgato EyeHome            ebXML Messaging/Registry            FAXstf

                            H.323 A/V Communication Setup
 Roxio ToastAnywhere                                            SubEthaEdit
                                       Protocol

Kerberos Administration                 LDAP                       NFS

 Network Time Protocol           PostgreSQL Server             JINI Servicees

    PowerEasy POS             Session Initiation Protocol          Skype

SliMP3 Server Interfaces           Sun Grid Engine             Sybase Server
Bonjour
(aka Rendezvous)
 (aka Opentalk)
Bonjour

History

Open Source

Apple’s Use of Bonjour

Products

Tools
History

AppleTalk released initially in mid-80’s

Very popular on smallish networks

Part of what made Macs ‘just work’

Apple wanted to replace functionality with
protocol that fits in modern networks (i.e.
IP-based)
Open Source

Apple wants to encourage the use of
Bonjour so it open sourced it

Includes support for OS X, Windows,
Windows CE, Linux, VxWorks

http://developer.apple.com/networking/bonjour
Apple’s use of
                           Bonjour
            Name                      Service                     Name                        Service

AppleTalk Filing Protocol (AFP)    _afpovertcp._tcp   Line Printer Daemon (LPD/LPR)         _printer._tcp

  Network File System (NFS)           _nfs._tcp       Internet Printing Protocol (IPP)        _ipp._tcp

WebDAV File System (WEBDAV)         _webdav._tcp       PDL Data Stream (Port 9100)       _pdl-datastream._tcp

  File Transfer Protocol (FTP)        _ftp._tcp       Remote I/O USB Printer Protocol     _riousbprint._tcp

                                                       Digital Audio Access Protocol
       Secure Shell (SSH)             _ssh._tcp                                              _daap._tcp
                                                                 (DAAP)
                                                       Digital Photo Access Protocol
      Remote AppleEvents             _eppc._tcp                                              _dpap._tcp
                                                                 (DPAP)
  Hypertext Transfer Protocol
                                      _http._tcp      iChat Instant Messaging Protocol      _presence._tcp
           (HTTP)
  Trivial File Transfer Protocol
                                      _tftp._udp            Airport Base Station            _airport._tcp
              (TFTP)

   Remote Login (TELNET)             _telnet._tcp              Xserver RAID                _xserveraid._tcp

 Remote Audio Output Protocol
                                     _raop._tcp        Apple Remote Desktop (ARD)         _net-assistant._tcp
          (RAOP)
products
TiVo, Asterisk VOIP PBX

Printers (HP, Brother, Epson, Xerox,
Lexmark, Canon)

SubEthaEdit, Growl

Axis Network Cameras

Oracle, Roxio Toast Anywhere
Bonjour
Browser Demo
JmDNS
JmDNS

Open Source project started by Arthur van
Hoff while at Strangeberry

Renamed from JRendezvous for legal
reasons, moved to SourceForge and taken
over by Rick Blair and Werner
Randelshofer

Pure-Java implementation of ZeroConf
JmDNS (cont)

Progress has slowed but it is relatively
stable and useful

Passes Apple’s Rendezvous (Bonjour)
Conformance tests

Supports service registration and discovery
JmDNS Class
   Main entry point to the JmDNS subsystem

import javax.jmdns.JmDNS;
.
.
.
JmDNS jmdns = new JmDNS();
System.out.println(”Host: “ + jmdns.getHostName() );
System.out.println(”Interface: “ + jmdns.getInterface() );

ServiceInfo si[] = jmdns.list(”_http._tcp.local.”);

jmdns.addServiceTypeListener( new MyServiceTypeListener() );
ServiceInfo Class
   Encapsulates info about a JmDNS Service

import javax.jmdns.ServiceInfo;
.
.
.
ServiceInfo
System.out.println(”Host: “ + jmdns.getHostName() );
System.out.println(”Interface: “ + jmdns.getInterface() );

ServiceInfo si[] = jmdns.list(”_http._tcp.local.”);

System.out.println(”Service 0 : “ + si[ 0 ].getServer() + “--”
	

 + si[ 0 ].getPort() + “--” + si[ 0 ].getNiceTextString() );
Listener Interfaces

ServiceListener

 Additions, Removals

ServiceTypeListener

 New service type discovery

Both listen for ServiceEvents
Basic JmDNS
 Examples
Using a Service
   w/ JmDNS
   Example
Registering a
  Service w/
JmDNS Example
FOAFfinger
 Example
What’s a FOAF?
“The Friend of a Friend (FOAF) project is
about creating a Web of machine-readable
homepages describing people, the links
between them and the things they create
and do.”
FOAF
Based on RDF and is used to express things
like:

 “My name is...”

 “I work for...”

 “I am interested in...”

 “Here’s my goofy picture...”
FOAF and WebPages


FOAF can help capture relationships, links,
etc. for finding resources of interest, like-
minded individuals, etc.

Think Orkut + Craig’s List
FOAFFinger

Damian Steer put together a JmDNS-
based app to find people on local links

Uses a custom application protocol:
_foafcon._tcp.local.

Reuses HTTP for transport -- good idea!
Brainstorming
References
Cheshire, Steinberg, “Zero Configuration Networking: The
Definitive Guide”, O’Reilly and Associates, 2005.

http://www.zeroconf.org
http://www.multicastdns.org
http://www.dns-sd.org
http://jmdns.sourceforge.net
http://developer.apple.com/networking/bonjour
http://www.foaf-project.org/
http://rdfweb.org/people/damian/foaffinger
http://tivohme.sourceforge.net/
http://avahi.org
Examples

Examples:

  http://www.bosatsu.net/talks/JmDNS-Examples.zip


Questions/Feedback:

  brian@bosatsu.net
Please write your
     reviews




  Feedback/Questions:
   brian@bosatsu.net

Weitere ähnliche Inhalte

Was ist angesagt?

Local-Link Networking
Local-Link NetworkingLocal-Link Networking
Local-Link Networkingsinchume
 
DNS-SD
DNS-SDDNS-SD
DNS-SDnetvis
 
X-Device Service Discovery
X-Device Service DiscoveryX-Device Service Discovery
X-Device Service DiscoveryTekObserver
 
Data communication part 7
Data communication part 7Data communication part 7
Data communication part 7Alex Fernandez
 
Basics about IP address, DNS and DHCP.
Basics about IP address, DNS and DHCP.Basics about IP address, DNS and DHCP.
Basics about IP address, DNS and DHCP.abhishek bhandare
 
Bootstrapping with bootp and dhcp
Bootstrapping with bootp and dhcpBootstrapping with bootp and dhcp
Bootstrapping with bootp and dhcpAshish Malik
 
Kamailio World 2018: Having fun with new stuff
Kamailio World 2018: Having fun with new stuffKamailio World 2018: Having fun with new stuff
Kamailio World 2018: Having fun with new stuffOlle E Johansson
 
IPv6 Autoconfig
IPv6 AutoconfigIPv6 Autoconfig
IPv6 AutoconfigFred Bovy
 
DHCP (dynamic host configuration protocol)
DHCP (dynamic host configuration protocol)DHCP (dynamic host configuration protocol)
DHCP (dynamic host configuration protocol)Netwax Lab
 
SWIFT: Tango's Infrastructure For Real-Time Video Call Service
SWIFT: Tango's Infrastructure For Real-Time Video Call ServiceSWIFT: Tango's Infrastructure For Real-Time Video Call Service
SWIFT: Tango's Infrastructure For Real-Time Video Call ServiceMeng ZHANG
 
FOSS Sthlm: Realtime Communication Update
FOSS Sthlm: Realtime Communication UpdateFOSS Sthlm: Realtime Communication Update
FOSS Sthlm: Realtime Communication UpdateOlle E Johansson
 

Was ist angesagt? (16)

mDNS / Bonjour
mDNS / BonjourmDNS / Bonjour
mDNS / Bonjour
 
Local-Link Networking
Local-Link NetworkingLocal-Link Networking
Local-Link Networking
 
DNS-SD
DNS-SDDNS-SD
DNS-SD
 
Os Tucker
Os TuckerOs Tucker
Os Tucker
 
Nat
NatNat
Nat
 
X-Device Service Discovery
X-Device Service DiscoveryX-Device Service Discovery
X-Device Service Discovery
 
Networking 101
Networking 101Networking 101
Networking 101
 
Configuration DHCP
Configuration DHCPConfiguration DHCP
Configuration DHCP
 
Data communication part 7
Data communication part 7Data communication part 7
Data communication part 7
 
Basics about IP address, DNS and DHCP.
Basics about IP address, DNS and DHCP.Basics about IP address, DNS and DHCP.
Basics about IP address, DNS and DHCP.
 
Bootstrapping with bootp and dhcp
Bootstrapping with bootp and dhcpBootstrapping with bootp and dhcp
Bootstrapping with bootp and dhcp
 
Kamailio World 2018: Having fun with new stuff
Kamailio World 2018: Having fun with new stuffKamailio World 2018: Having fun with new stuff
Kamailio World 2018: Having fun with new stuff
 
IPv6 Autoconfig
IPv6 AutoconfigIPv6 Autoconfig
IPv6 Autoconfig
 
DHCP (dynamic host configuration protocol)
DHCP (dynamic host configuration protocol)DHCP (dynamic host configuration protocol)
DHCP (dynamic host configuration protocol)
 
SWIFT: Tango's Infrastructure For Real-Time Video Call Service
SWIFT: Tango's Infrastructure For Real-Time Video Call ServiceSWIFT: Tango's Infrastructure For Real-Time Video Call Service
SWIFT: Tango's Infrastructure For Real-Time Video Call Service
 
FOSS Sthlm: Realtime Communication Update
FOSS Sthlm: Realtime Communication UpdateFOSS Sthlm: Realtime Communication Update
FOSS Sthlm: Realtime Communication Update
 

Ähnlich wie JmDNS : Service Discovery for the 21st Century

Wireshark
WiresharkWireshark
Wiresharkbtohara
 
RackN Physical Layer Automation Innovation
RackN Physical Layer Automation InnovationRackN Physical Layer Automation Innovation
RackN Physical Layer Automation Innovationrhirschfeld
 
BonAHA framework - Lab presentation
BonAHA framework - Lab presentationBonAHA framework - Lab presentation
BonAHA framework - Lab presentationSuman Srinivasan
 
Peer-to-peer Internet telephony
Peer-to-peer Internet telephonyPeer-to-peer Internet telephony
Peer-to-peer Internet telephonyKundan Singh
 
What is Digital Rebar Provision (and how RackN extends)?
What is Digital Rebar Provision (and how RackN extends)?What is Digital Rebar Provision (and how RackN extends)?
What is Digital Rebar Provision (and how RackN extends)?rhirschfeld
 
The advantages of Arista/OVH configurations, and the technologies behind buil...
The advantages of Arista/OVH configurations, and the technologies behind buil...The advantages of Arista/OVH configurations, and the technologies behind buil...
The advantages of Arista/OVH configurations, and the technologies behind buil...OVHcloud
 
respond_to :voice - the convergence of voice and web interfaces with Rails an...
respond_to :voice - the convergence of voice and web interfaces with Rails an...respond_to :voice - the convergence of voice and web interfaces with Rails an...
respond_to :voice - the convergence of voice and web interfaces with Rails an...jpalley
 
Network Situational Awareness with d00gle
Network Situational Awareness with d00gleNetwork Situational Awareness with d00gle
Network Situational Awareness with d00gleDug Song
 
Production high-performance networking with Snabb and LuaJIT (Linux.conf.au 2...
Production high-performance networking with Snabb and LuaJIT (Linux.conf.au 2...Production high-performance networking with Snabb and LuaJIT (Linux.conf.au 2...
Production high-performance networking with Snabb and LuaJIT (Linux.conf.au 2...Igalia
 
Foreman @ Rubyslava
Foreman @ RubyslavaForeman @ Rubyslava
Foreman @ RubyslavaIvan Nečas
 
Installation Of An Iso Image Dvd
Installation Of An Iso Image DvdInstallation Of An Iso Image Dvd
Installation Of An Iso Image DvdSusan Cox
 
Simplified Networking and Troubleshooting for K-12 Teachers
Simplified Networking and Troubleshooting for K-12 TeachersSimplified Networking and Troubleshooting for K-12 Teachers
Simplified Networking and Troubleshooting for K-12 Teacherswebhostingguy
 
Osi model slides
Osi model slidesOsi model slides
Osi model slidesSaba Aslam
 
Troubleshooting Dual-Protocol Networks and Systems by Scott Hogg at gogoNET L...
Troubleshooting Dual-Protocol Networks and Systems by Scott Hogg at gogoNET L...Troubleshooting Dual-Protocol Networks and Systems by Scott Hogg at gogoNET L...
Troubleshooting Dual-Protocol Networks and Systems by Scott Hogg at gogoNET L...gogo6
 
Hacking Robotics(English Version)
Hacking Robotics(English Version)Hacking Robotics(English Version)
Hacking Robotics(English Version)Kensei Demura
 
Tcp and introduction to protocol
Tcp and introduction to protocolTcp and introduction to protocol
Tcp and introduction to protocolSripati Mahapatra
 

Ähnlich wie JmDNS : Service Discovery for the 21st Century (20)

Wireshark
WiresharkWireshark
Wireshark
 
RackN Physical Layer Automation Innovation
RackN Physical Layer Automation InnovationRackN Physical Layer Automation Innovation
RackN Physical Layer Automation Innovation
 
BonAHA framework - Lab presentation
BonAHA framework - Lab presentationBonAHA framework - Lab presentation
BonAHA framework - Lab presentation
 
Peer-to-peer Internet telephony
Peer-to-peer Internet telephonyPeer-to-peer Internet telephony
Peer-to-peer Internet telephony
 
What is Digital Rebar Provision (and how RackN extends)?
What is Digital Rebar Provision (and how RackN extends)?What is Digital Rebar Provision (and how RackN extends)?
What is Digital Rebar Provision (and how RackN extends)?
 
The advantages of Arista/OVH configurations, and the technologies behind buil...
The advantages of Arista/OVH configurations, and the technologies behind buil...The advantages of Arista/OVH configurations, and the technologies behind buil...
The advantages of Arista/OVH configurations, and the technologies behind buil...
 
Networking 101
Networking 101Networking 101
Networking 101
 
Networking 101
Networking 101Networking 101
Networking 101
 
Networking 101
Networking 101Networking 101
Networking 101
 
respond_to :voice - the convergence of voice and web interfaces with Rails an...
respond_to :voice - the convergence of voice and web interfaces with Rails an...respond_to :voice - the convergence of voice and web interfaces with Rails an...
respond_to :voice - the convergence of voice and web interfaces with Rails an...
 
Network Situational Awareness with d00gle
Network Situational Awareness with d00gleNetwork Situational Awareness with d00gle
Network Situational Awareness with d00gle
 
Production high-performance networking with Snabb and LuaJIT (Linux.conf.au 2...
Production high-performance networking with Snabb and LuaJIT (Linux.conf.au 2...Production high-performance networking with Snabb and LuaJIT (Linux.conf.au 2...
Production high-performance networking with Snabb and LuaJIT (Linux.conf.au 2...
 
Foreman @ Rubyslava
Foreman @ RubyslavaForeman @ Rubyslava
Foreman @ Rubyslava
 
TCP/IP Basics
TCP/IP BasicsTCP/IP Basics
TCP/IP Basics
 
Installation Of An Iso Image Dvd
Installation Of An Iso Image DvdInstallation Of An Iso Image Dvd
Installation Of An Iso Image Dvd
 
Simplified Networking and Troubleshooting for K-12 Teachers
Simplified Networking and Troubleshooting for K-12 TeachersSimplified Networking and Troubleshooting for K-12 Teachers
Simplified Networking and Troubleshooting for K-12 Teachers
 
Osi model slides
Osi model slidesOsi model slides
Osi model slides
 
Troubleshooting Dual-Protocol Networks and Systems by Scott Hogg at gogoNET L...
Troubleshooting Dual-Protocol Networks and Systems by Scott Hogg at gogoNET L...Troubleshooting Dual-Protocol Networks and Systems by Scott Hogg at gogoNET L...
Troubleshooting Dual-Protocol Networks and Systems by Scott Hogg at gogoNET L...
 
Hacking Robotics(English Version)
Hacking Robotics(English Version)Hacking Robotics(English Version)
Hacking Robotics(English Version)
 
Tcp and introduction to protocol
Tcp and introduction to protocolTcp and introduction to protocol
Tcp and introduction to protocol
 

Kürzlich hochgeladen

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 

Kürzlich hochgeladen (20)

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 

JmDNS : Service Discovery for the 21st Century

  • 1. JmDNS : Service Discovery for the 21st Century B r i a n S l e t t e n B o s a t s u C o n s u l t i n g , I n c b r i a n @ b o s a t s u . n e t N o F l u f f J u s t S t u f f 2 0 0 6
  • 2. Speaker Qualifications 12 years of software development experience Have own software consulting company for design, mentoring, training and development Work with Semantic Web, Aspect-Oriented Programming, Grid Computing
  • 3. Agenda Where We Have Been ZeroConf Bonjour JmDNS Brainstorming
  • 5. finding things in the past Configuration Files (ick!) DNS (requires central authority, hostname only -- no ports) Directory Services AppleTalk (chatty “has been”) JINI (Java-only, central services) JXTA (steep learning curve)
  • 6. ad hoc networking too hard Law Offices, Schools, etc. do not always have sufficient IT personnel Home networking is even worse! Could your grandma set up a DNS server? LDAP at home? What is so hard about two devices talking?
  • 7. Protocol Design Goals Internet Protocol (IP) was designed to be interoperable, extensible and scalable Propietary protocols (AppleTalk, NetBIOS/SMB, IPX) were designed around local network features and decentralized discovery
  • 8. AppleTalk Ahead of its time -- focused on services, not devices Too chatty for large networks Not based on IP Support persists but waned with Apple’s pre-OS X fortunes
  • 9. DHCP Solves some of the problem Dynamic address allocation Great for clients Client-Server sessions are easy to regenerate Not-so-great for servers
  • 10. DHCP (Cont) However, still focuses on hardware, not services (i.e. capabilities) Users care about ‘printing’ and ‘sharing files’ and listening to ‘music’ How to publish? find? bind?
  • 11. JINI Showed a lot of early promise for finding devices and services on a network Problems: Required Java (harder to embed on devices, at least historically) Required Central Services Tried to proscribe service hierarchies
  • 12. JXTA Bill Joy Brain-Sibling to JINI Multi-language/Multi-Platform Huge Learning Curve Although it has languished, good things might still come from the JXTA world
  • 13. Publish/Find/Bind Hmmm... sounds familiar WebServices are hoping to solve some of these problems UDDI/WSDL/SOAP We’ll get back to you once WS-Whatever Draft is completed
  • 15. Zeroconf History Began out of discussions on a mailing list in 1997 Interested people got together at IETF BOFs ZeroConf WG was formed in 1999
  • 16. Zeroconf Goals Allocate addresses without a DHCP Server Translate names and IP addresses without a DNS Server Find services without a directory server Reuse existing technologies, infrastructure and expertise
  • 17. Zeroconf Technologies IPv4 Link-Local Addressing Multicast DNS DNS Service Discovery
  • 18. IPv4 link-local Addressing Uses 169.254/16 prefix for “local links” Between 169.254.1.0-169.254.254.255 Reserved by IANA for this purpose Links are local when Host A sends a packet that arrives unmodified (i.e. no TTL decrements)
  • 19. IPv4 link-local Addressing (cont) Hosts should not use “link-local” and routable addresses at the same time Will use an IP address from DHCP if one is available
  • 20. IPv4 Link-Local Process Generate an address using a PRNG (preferably seeded w/ MAC address or something uniqueish) ARP Probe for conflict Claim address on success Defend address on future conflict (ARP) Must relinquish if conflict persists
  • 21. multicast dns Designed to allow naming lookups without central server Introduces .local domain DNS is IETF technology so they are responsible, not ICANN
  • 22. Multicast DNS (Cont) Queries are sent to 224.0.0.251 on port 5353 Uses multicast broadcasts but is well- designed to minimize chattiness Hosts listen to changes and can cache results To avoid pig-piling new queries, mDNS responders delay responses by random value to see if someone else will respond
  • 23. Query Types One Shot “Just give me something” One Shot - Accumulate Results “Stick around for multiple results” Continuous Query “Keep on keepin’ on”
  • 24. Avoiding Chattiness Known Answer Suppression Passive Caching/Listening Exponential Decay Rates TTL Expirations New peers announce themselves
  • 25. Claiming the Name Pick a name (user-specified?) Put together a DNS A Record Perform T_ANY query to find any other records with same name Upon success (no conflicts), announce to the world who you are
  • 26. Clients and Services Users care about relevant services not all that are available Printer around the corner My wife’s Excellent iTunes Music Collection SSH into development server
  • 27. dns service discovery (DNS-SD) No changes to DNS structures Use DNS PTR queries to find SRV records that match service instance pattern <instance>._protoname._transport.<domain> Use TXT records for parameters
  • 28. DNS-SD Goals Service Instance Enumeration Service Name Resolution Somewhat persistent Here today, here tomorrow Simple to implement
  • 29. DNS-SD Service Instance Browsing Service Instances “Leaves in a tree” <domain>.<service>.<instance> Name compression in responses
  • 30. DNS-SD Txt Records Up to 65535 bytes Packed representation of zero or more strings
  • 31. DNS-SD TXT Records (Cont) Name=Value Pairs Not present No value (“Debug”) Empty value (“Debug=”) Non-Empty value (“Debug=verbose”)
  • 32. DNS-SD Query Example _ftp._tcp.example.org _http._tcp.example.org _ipp._tcp.example.org _daap._tcp.Carini.local _tivo_servemedia._tcp.Carini.local
  • 33. DNS-SD Meta-Query _services._dns-sd._udp.<domain> Returns a list of PTR records matching service type
  • 34. Registered DNS-SD Services http://www.dns-sd.org/ServiceTypes.html MYOB Adobe Axis Video Cameras Bootstrap Protocol Server Oracle Cluster Topology Server CodeWarrior Elgato EyeHome ebXML Messaging/Registry FAXstf H.323 A/V Communication Setup Roxio ToastAnywhere SubEthaEdit Protocol Kerberos Administration LDAP NFS Network Time Protocol PostgreSQL Server JINI Servicees PowerEasy POS Session Initiation Protocol Skype SliMP3 Server Interfaces Sun Grid Engine Sybase Server
  • 36. Bonjour History Open Source Apple’s Use of Bonjour Products Tools
  • 37. History AppleTalk released initially in mid-80’s Very popular on smallish networks Part of what made Macs ‘just work’ Apple wanted to replace functionality with protocol that fits in modern networks (i.e. IP-based)
  • 38. Open Source Apple wants to encourage the use of Bonjour so it open sourced it Includes support for OS X, Windows, Windows CE, Linux, VxWorks http://developer.apple.com/networking/bonjour
  • 39. Apple’s use of Bonjour Name Service Name Service AppleTalk Filing Protocol (AFP) _afpovertcp._tcp Line Printer Daemon (LPD/LPR) _printer._tcp Network File System (NFS) _nfs._tcp Internet Printing Protocol (IPP) _ipp._tcp WebDAV File System (WEBDAV) _webdav._tcp PDL Data Stream (Port 9100) _pdl-datastream._tcp File Transfer Protocol (FTP) _ftp._tcp Remote I/O USB Printer Protocol _riousbprint._tcp Digital Audio Access Protocol Secure Shell (SSH) _ssh._tcp _daap._tcp (DAAP) Digital Photo Access Protocol Remote AppleEvents _eppc._tcp _dpap._tcp (DPAP) Hypertext Transfer Protocol _http._tcp iChat Instant Messaging Protocol _presence._tcp (HTTP) Trivial File Transfer Protocol _tftp._udp Airport Base Station _airport._tcp (TFTP) Remote Login (TELNET) _telnet._tcp Xserver RAID _xserveraid._tcp Remote Audio Output Protocol _raop._tcp Apple Remote Desktop (ARD) _net-assistant._tcp (RAOP)
  • 40. products TiVo, Asterisk VOIP PBX Printers (HP, Brother, Epson, Xerox, Lexmark, Canon) SubEthaEdit, Growl Axis Network Cameras Oracle, Roxio Toast Anywhere
  • 42. JmDNS
  • 43. JmDNS Open Source project started by Arthur van Hoff while at Strangeberry Renamed from JRendezvous for legal reasons, moved to SourceForge and taken over by Rick Blair and Werner Randelshofer Pure-Java implementation of ZeroConf
  • 44. JmDNS (cont) Progress has slowed but it is relatively stable and useful Passes Apple’s Rendezvous (Bonjour) Conformance tests Supports service registration and discovery
  • 45. JmDNS Class Main entry point to the JmDNS subsystem import javax.jmdns.JmDNS; . . . JmDNS jmdns = new JmDNS(); System.out.println(”Host: “ + jmdns.getHostName() ); System.out.println(”Interface: “ + jmdns.getInterface() ); ServiceInfo si[] = jmdns.list(”_http._tcp.local.”); jmdns.addServiceTypeListener( new MyServiceTypeListener() );
  • 46. ServiceInfo Class Encapsulates info about a JmDNS Service import javax.jmdns.ServiceInfo; . . . ServiceInfo System.out.println(”Host: “ + jmdns.getHostName() ); System.out.println(”Interface: “ + jmdns.getInterface() ); ServiceInfo si[] = jmdns.list(”_http._tcp.local.”); System.out.println(”Service 0 : “ + si[ 0 ].getServer() + “--” + si[ 0 ].getPort() + “--” + si[ 0 ].getNiceTextString() );
  • 47. Listener Interfaces ServiceListener Additions, Removals ServiceTypeListener New service type discovery Both listen for ServiceEvents
  • 49. Using a Service w/ JmDNS Example
  • 50. Registering a Service w/ JmDNS Example
  • 52. What’s a FOAF? “The Friend of a Friend (FOAF) project is about creating a Web of machine-readable homepages describing people, the links between them and the things they create and do.”
  • 53. FOAF Based on RDF and is used to express things like: “My name is...” “I work for...” “I am interested in...” “Here’s my goofy picture...”
  • 54. FOAF and WebPages FOAF can help capture relationships, links, etc. for finding resources of interest, like- minded individuals, etc. Think Orkut + Craig’s List
  • 55. FOAFFinger Damian Steer put together a JmDNS- based app to find people on local links Uses a custom application protocol: _foafcon._tcp.local. Reuses HTTP for transport -- good idea!
  • 57. References Cheshire, Steinberg, “Zero Configuration Networking: The Definitive Guide”, O’Reilly and Associates, 2005. http://www.zeroconf.org http://www.multicastdns.org http://www.dns-sd.org http://jmdns.sourceforge.net http://developer.apple.com/networking/bonjour http://www.foaf-project.org/ http://rdfweb.org/people/damian/foaffinger http://tivohme.sourceforge.net/ http://avahi.org
  • 59. Please write your reviews Feedback/Questions: brian@bosatsu.net