SRV records

keefe007

Verified User
Joined
Dec 25, 2004
Messages
276
Has anyone been able to use SRV records with DA?

If you're unfamilar with SRV records, here's an example:

Code:
 This example uses fictional service "foobar", running on port 9  as an aid in
  understanding SRV records. If ever service "foobar" is implemented,
  it is not intended that it will necessarily use SRV records.  This is
  (part of) the zone file for example.com, a still-unused domain:

     $ORIGIN example.com.
     @               SOA server.example.com. root.example.com. (
                         1995032001 3600 3600 604800 86400 )
                     NS  server.example.com.
                     NS  ns1.ip-provider.net.
                     NS  ns2.ip-provider.net.
     ; foobar - use old-slow-box or new-fast-box if either is
     ; available, make three quarters of the logins go to
     ; new-fast-box.
     _foobar._tcp    SRV 0 1 9 old-slow-box.example.com.
                      SRV 0 3 9 new-fast-box.example.com.
     ; if neither old-slow-box or new-fast-box is up, switch to
     ; using the sysdmin's box and the server
                      SRV 1 0 9 sysadmins-box.example.com.
                      SRV 1 0 9 server.example.com.
     server           A   172.30.79.10
     old-slow-box     A   172.30.79.11
     sysadmins-box    A   172.30.79.12
     new-fast-box     A   172.30.79.13
     ; NO other services are supported
     *._tcp          SRV  0 0 0 .
     *._udp          SRV  0 0 0 .
 
Back
Top