2.2.4.74 DnsReverseLookupZone

The DnsReverseLookupZone complex type is used to specify the information pertaining to a single instance of a reverse lookup DNS zone. The DnsReverseLookupZone complex type allows extending the BaseDnsZone complex type.

 <xs:complexType name="DnsReverseLookupZone">
   <xs:complexContent mixed="false">
     <xs:extension base="ipam:BaseDnsZone">
       <xs:sequence>
         <xs:element minOccurs="0" name="EndIP" nillable="true" type="sysnet:IPAddress" />
         <xs:element minOccurs="0" name="IPType" type="syssock:AddressFamily" />
         <xs:element minOccurs="0" name="Prefix" nillable="true" type="xsd:int" />
         <xs:element minOccurs="0" name="StartIP" nillable="true" type="sysnet:IPAddress" />
       </xs:sequence>
     </xs:extension>
   </xs:complexContent>
 </xs:complexType>

EndIP: This specifies the end address of the address range possible that can map into the reverse lookup zone. This value MUST NOT be null and it MUST be of the address family specified by IPType.

IPType: This specifies the address family of the address range corresponding to the reverse lookup zone.

Prefix: This specifies the prefix length that determines the addresses that map into the reverse lookup zone.

StartIP: This specifies the start address of the address range possible that can map into the reverse lookup zone. This value MUST NOT be null and it MUST be of the address family specified by IPType.