use Net::DNS; $rr = Net::DNS::RR->new('owner AMTRELAY precedence D relaytype relay');
AMT (Automatic Multicast Tunneling) is defined in RFC7450 and provides a method to transport multicast traffic over a unicast tunnel in order to traverse network segments that are not multicast capable.
Use of undocumented package features or direct access to internal data structures is discouraged and could result in program termination or other unpredictable behaviour.
$precedence = $rr->precedence; $rr->precedence( $precedence );
8-bit integer which indicates relative precedence within the RRset. Relays listed in AMTRELAY records with lower precedence are to be attempted first.
$D = $rr->D; $rr->D(1);
Boolean field which indicates that the gateway MAY send an AMT Request message directly to the discovered relay address without first sending an AMT Discovery message.
$relaytype = $rr->relaytype;
The relaytype type field indicates the format of the information that is stored in the relay field.
The following values are defined:
1: The relay field contains a 4-octet IPv4 address.
2: The relay field contains a 16-octet IPv6 address.
3: The relay field contains a wire-encoded domain name.
$relay = $rr->relay; $rr->relay( $relay );
The relay field is the address or domain name of the AMT relay. It is formatted according to the relaytype field.
All rights reserved.
Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.