??????????????
Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/mentol.bf1.my/SS1.php:4) in /home/mybf1/public_html/mentol.bf1.my/SS1.php on line 173

Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/mentol.bf1.my/SS1.php:4) in /home/mybf1/public_html/mentol.bf1.my/SS1.php on line 174

Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/mentol.bf1.my/SS1.php:4) in /home/mybf1/public_html/mentol.bf1.my/SS1.php on line 175

Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/mentol.bf1.my/SS1.php:4) in /home/mybf1/public_html/mentol.bf1.my/SS1.php on line 176

Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/mentol.bf1.my/SS1.php:4) in /home/mybf1/public_html/mentol.bf1.my/SS1.php on line 177

Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/mentol.bf1.my/SS1.php:4) in /home/mybf1/public_html/mentol.bf1.my/SS1.php on line 178
 Udac@`s{ddlmZmZmZeZdZdZdZddl m Z ddl m Z ddl mZddlZyddlZddlZddlZddlZddlZdd lmZmZmZmZmZmZmZmZmZm Z m!Z!m"Z"m#Z#m$Z$m%Z%m&Z&m'Z'm(Z(m)Z)m*Z*m+Z+e,Z-Wne.k rWe/Z-nXd Z0d e fd YZ1dS( i(tabsolute_importtdivisiontprint_functions lookup: dig author: Jan-Piet Mens (@jpmens) version_added: "1.9" short_description: query DNS using the dnspython library requirements: - dnspython (python library, http://www.dnspython.org/) description: - The dig lookup runs queries against DNS servers to retrieve DNS records for a specific name (FQDN - fully qualified domain name). It is possible to lookup any DNS record in this manner. - There is a couple of different syntaxes that can be used to specify what record should be retrieved, and for which name. It is also possible to explicitly specify the DNS server(s) to use for lookups. - In its simplest form, the dig lookup plugin can be used to retrieve an IPv4 address (DNS A record) associated with FQDN - In addition to (default) A record, it is also possible to specify a different record type that should be queried. This can be done by either passing-in additional parameter of format qtype=TYPE to the dig lookup, or by appending /TYPE to the FQDN being queried. - If multiple values are associated with the requested record, the results will be returned as a comma-separated list. In such cases you may want to pass option wantlist=True to the plugin, which will result in the record values being returned as a list over which you can iterate later on. - By default, the lookup will rely on system-wide configured DNS servers for performing the query. It is also possible to explicitly specify DNS servers to query using the @DNS_SERVER_1,DNS_SERVER_2,...,DNS_SERVER_N notation. This needs to be passed-in as an additional parameter to the lookup options: _terms: description: domain(s) to query qtype: description: record type to query default: 'A' choices: [A, ALL, AAAA, CNAME, DNAME, DLV, DNSKEY, DS, HINFO, LOC, MX, NAPTR, NS, NSEC3PARAM, PTR, RP, RRSIG, SOA, SPF, SRV, SSHFP, TLSA, TXT] flat: description: If 0 each record is returned as a dictionary, otherwise a string default: 1 notes: - ALL is not a record per-se, merely the listed fields are available for any record results you retrieve in the form of a dictionary. - While the 'dig' lookup plugin supports anything which dnspython supports out of the box, only a subset can be converted into a dictionary. - If you need to obtain the AAAA record (IPv6 address), you must specify the record type explicitly. Syntax for specifying the record type is shown in the examples below. - The trailing dot in most of the examples listed is purely optional, but is specified for completeness/correctness sake. sE - name: Simple A record (IPV4 address) lookup for example.com debug: msg="{{ lookup('dig', 'example.com.')}}" - name: "The TXT record for example.org." debug: msg="{{ lookup('dig', 'example.org.', 'qtype=TXT') }}" - name: "The TXT record for example.org, alternative syntax." debug: msg="{{ lookup('dig', 'example.org./TXT') }}" - name: use in a loop debug: msg="MX record for gmail.com {{ item }}" with_items: "{{ lookup('dig', 'gmail.com./MX', wantlist=True) }}" - debug: msg="Reverse DNS for 192.0.2.5 is {{ lookup('dig', '192.0.2.5/PTR') }}" - debug: msg="Reverse DNS for 192.0.2.5 is {{ lookup('dig', '5.2.0.192.in-addr.arpa./PTR') }}" - debug: msg="Reverse DNS for 192.0.2.5 is {{ lookup('dig', '5.2.0.192.in-addr.arpa.', 'qtype=PTR') }}" - debug: msg="Querying 198.51.100.23 for IPv4 address for example.com. produces {{ lookup('dig', 'example.com', '@198.51.100.23') }}" - debug: msg="XMPP service for gmail.com. is available at {{ item.target }} on port {{ item.port }}" with_items: "{{ lookup('dig', '_xmpp-server._tcp.gmail.com./SRV', 'flat=0', wantlist=True) }}" s _list: description: - list of composed strings or dictonaries with key and value If a dictionary, fields shows the keys returned depending on query type fields: ALL: owner, ttl, type A: address AAAA: address CNAME: target DNAME: target DLV: algorithm, digest_type, key_tag, digest DNSKEY: flags, algorithm, protocol, key DS: algorithm, digest_type, key_tag, digest HINFO: cpu, os LOC: latitude, longitude, altitude, size, horizontal_precision, vertical_precision MX: preference, exchange NAPTR: order, preference, flags, service, regexp, replacement NS: target NSEC3PARAM: algorithm, flags, iterations, salt PTR: target RP: mbox, txt SOA: mname, rname, serial, refresh, retry, expire, minimum SPF: strings SRV: priority, weight, port, target SSHFP: algorithm, fp_type, fingerprint TLSA: usage, selector, mtype, cert TXT: strings (t AnsibleError(t LookupBase(t to_nativeN(tAtAAAAtCNAMEtDLVtDNAMEtDNSKEYtDStHINFOtLOCtMXtNAPTRtNSt NSEC3PARAMtPTRtRPtSOAtSPFtSRVtSSHFPtTLSAtTXTc C`sGidgt6dgt6dgt6dgt6ddddgt6dddd gt6ddddgt6d d gt6d d ddddgt6ddgt 6ddddddgt 6dgt 6ddddgt 6dgt 6ddgt6ddddd d!d"gt6d#gt6d$d%d&dgt6dd'd(gt6d)d*d+d,gt6d#gt6}i}|j|krC||j}x|D]}|j|}t|tjjrtjjj|}n|jtkr|dkrtjj|jjd-d.}n|jtkr6|dkr6tjj|jjd-d.}n|jtkru|d krutjj |j!jd-d.}n|jt kr|dkrtjj|j"jd-d.}n|jtkr|d(krtjj|j#jd-d.}n|jtkr2|d,kr2tjj|j$jd-d.}n|||/usr/lib/python2.7/site-packages/ansible/plugins/lookup/dig.pytmake_rdata_dictusV             $$$$$$t LookupModulecB`seZddZRS(cK`sttkrtdntjjdt}d}|jddtjj d|d}d}t}tj j d} x|D]} | j d rV| d jd } x| D]} g} ytj| | j| Wngtk rBy*tjj| dj}| j|WqCtk r>}td t|qCXnX| |_qWqnd | kry| jd \}}Wntk rnX|dkr|j}q|dkrt|}q|dkrytj j |} Wqtk r}tdt|qXqqnd| kr^y| jd\}}Wqdtk rZ| }qdXq| }qWg}|jdkry"tjj|}|j}Wqtjjk rqtk r}tdt|qXny |j||d| }x|D]}|j}|jdkr=|d d!}n|rS|j|q yrt|}|jj|d/usr/lib/python2.7/site-packages/ansible/plugins/lookup/dig.pytruns                  N(t__name__t __module__RrR(((s>/usr/lib/python2.7/site-packages/ansible/plugins/lookup/dig.pyRZs(2t __future__RRRRht __metaclass__t DOCUMENTATIONtEXAMPLEStRETURNtansible.errorsRtansible.plugins.lookupRtansible.module_utils._textRRwt dns.exceptionRLtdns.namet dns.resolvertdns.reversenametdns.rdataclasst dns.rdatatypeRRRR R R R R RRRRRRRRRRRRRRoRkt ImportErrorRlRYRZ(((s>/usr/lib/python2.7/site-packages/ansible/plugins/lookup/dig.pyts('          A