[582] | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
---|
| 2 | <html>
|
---|
| 3 | <head>
|
---|
| 4 | <title>IP Database Reverse DNS Help</title>
|
---|
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
---|
| 6 | <link rel="stylesheet" type="text/css" href="ipdb.css">
|
---|
| 7 | <link rel="stylesheet" type="text/css" href="local.css">
|
---|
| 8 | </head>
|
---|
| 9 | <body>
|
---|
| 10 |
|
---|
[684] | 11 | <p>The IP Database can pass reverse DNS information back and forth to a DNS management backend to simplify
|
---|
[582] | 12 | maintenance of the reverse DNS records associated with the IPs being managed.</p>
|
---|
| 13 |
|
---|
| 14 | <p>Several shortcuts can be used when specifying a pattern for an IPv4 netblock, which will be expanded to
|
---|
[684] | 15 | actual DNS records by the DNS management system. %blank% may be used to skip template expansion on a
|
---|
| 16 | subblock or IP.</p>
|
---|
[582] | 17 |
|
---|
[684] | 18 | <p>Entries should generally only be present in the "Per-IP reverse entries" section if they are different from
|
---|
| 19 | the block pattern.</p>
|
---|
| 20 |
|
---|
[673] | 21 | <p>Template patterns are not supported for IPv6 allocations due to the size of the address space and typical
|
---|
| 22 | size of allocations.</p>
|
---|
| 23 |
|
---|
[582] | 24 | <table class="regular" cellspacing="1" cellpadding="1" bgcolor="#000000">
|
---|
| 25 | <tr class="header"><td></td><td>Substitution pattern</td><td>Example expansion using 192.168.23.45</td></tr>
|
---|
| 26 |
|
---|
| 27 | <tr class="header"><td colspan="3">Whole-IP patterns</td></tr>
|
---|
| 28 | <tr class="row0"><td>Dashed IP</td><td>%i</td><td>192-168-23-45</td></tr>
|
---|
| 29 | <tr class="row1"><td>Reverse dashed IP</td><td>%r</td><td>45-23-168-192</td></tr>
|
---|
| 30 | <tr class="row0"><td>Hex-coded IP</td><td>%h</td><td>c0a8172d</td></tr>
|
---|
| 31 | <tr class="row1"><td>Decimal IP</td><td>%d</td><td>323241453</td></tr>
|
---|
| 32 |
|
---|
[649] | 33 | <tr class="header"><td colspan="3">Per-octet patterns (1, 2, 3, or 4 specify the octet; d, h or 0
|
---|
| 34 | specify decimal, hexidecimal, or 0-padded decimal)</td></tr>
|
---|
[582] | 35 | <tr class="row0"><td>First octet, decimal</td><td>%1d</td><td>192</td></tr>
|
---|
| 36 | <tr class="row1"><td>Third octet, 0-padded</td><td>%30</td><td>023</td></tr>
|
---|
| 37 | <tr class="row0"><td>Fourth octet, hexidecimal</td><td>%4h</td><td>2d</td></tr>
|
---|
| 38 | <tr class="row1"><td>All octets, different expansions</td><td>%1h-%2d-%30-%4h</td><td>c0-168-023-2d</td></tr>
|
---|
| 39 |
|
---|
| 40 | </table>
|
---|
| 41 |
|
---|
[649] | 42 | <p> %i and %r also allow explicitly defining the separator; eg %.i
|
---|
| 43 | or %_r. '.', '-', and '_' are the only characters<br>
|
---|
| 44 | supported since DNS names may not contain most other
|
---|
| 45 | non-alphanumerics.</p>
|
---|
| 46 |
|
---|
[582] | 47 | </body></html>
|
---|