Changeset 1229

Show
Ignore:
Timestamp:
03/11/10 09:01:57 (5 months ago)
Author:
Hugo
Message:

iDNS: saved latest tGlossary.txt

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/unxsBind/data/tGlossary.txt

    r1228 r1229  
    731731\ 
    732732 
    733 294     Order   1       1       1268299458      1       1268299531      This value indicates the priority of multiple NAPTR records used. The lower the\ 
    734 value, the higher the priority.<br>\ 
     733294     Order   1       1       1268299458      1       1268301510      An unsigned integer specifying the order in which the NAPTR records MUST be\ 
     734processed to ensure the correct ordering of rules.  Low numbers are processed\ 
     735before high numbers, and once a NAPTR is found whose rule "matches" the target,\ 
     736the client MUST NOT consider any NAPTRs with a higher value for order.\ 
    735737<br>\ 
    736738E.g.:<br>\ 
     
    745747\ 
    746748 
    747 295     Preference      1       1       1268299886      0       0       This value indicates the priority of multiple NAPTR records with the same\ 
    748 preference value. The lower the\ 
    749 value, the higher the priority.<br>\ 
    750 <br>\ 
    751 E.g.:<br>\ 
    752 <br>\ 
    753 $ORIGIN 4.3.2.1.5.5.5.0.0.8.1.e164.arpa.<br>\ 
    754 IN NAPTR 100 10 "U" "E2U+sip" "!^.*$!sip:customer-service@example.com!i" .<br>\ 
    755 IN NAPTR 100 9 "U" "E2U+email" "!^.*$!mailto:information@example.com!i" .<br>\ 
    756 <br>\ 
    757 <br>\ 
    758 The records above have the same order value (100) yet preference differs.\ 
    759 \ 
    760  
     749295     Preference      1       1       1268299886      1       1268301600      An integer that specifies the order in which NAPTR records with equal "order"\ 
     750values SHOULD be processed, low numbers being processed before high numbers. \ 
     751This is similar to the preference field in an MX record, and is used so domain\ 
     752administrators can direct clients towards more capable hosts or  lighter weight\ 
     753protocols.  A client MAY look at records with higher preference values if it has\ 
     754a good reason to do so such as not understanding the preferred protocol or\ 
     755service.<br>\ 
     756<br>\ 
     757The important difference between Order and Preference is that once a match is\ 
     758found the client MUST NOT consider records with a different Order but they MAY\ 
     759process records with the same Order but different Preferences.  I.e., Preference\ 
     760is used to give weight to rules that are considered the same from an authority\ 
     761standpoint but not from a simple load balancing standpoint.\ 
     762\ 
     763 
     764296     Flags+ENUM      1       1       1268301768      0       0       Flags:<be>\ 
     765<br>\ 
     766A <character-string> containing flags to control aspects of the rewriting and\ 
     767interpretation of the fields in the record.  Flags are single characters from\ 
     768the set [A-Z0-9].  The case of the alphabetic characters is not significant. <br>\ 
     769 At this time only four flags, "S", "A", "U", and "P", are defined.  The "S",\ 
     770"A" and "U" flags denote a terminal lookup. This means that this NAPTR record is\ 
     771the last one and that the flag determines what the next stage should be.  The\ 
     772"S" flag means that the next lookup should be for SRV records.  "A" means that\ 
     773the next lookup should be for either an A, AAAA, or A6 record.  The "U" flag\ 
     774means that the next step is not a DNS lookup but that the output of the Regexp\ 
     775field is an URI that adheres to the 'absoluteURI' production found in the ABNF\ 
     776of RFC 2396. <br>\ 
     777\ 
     778