Lookup for: {{ dig_query }}
{% if dig_result.a %}
A (IPv4) records:
{% for address in dig_result.a%}
{{address}}
{% endfor %}
{% endif %}
{% if dig_result.aaaa %}
AAAA (IPv6) records:
{% for address in dig_result.aaaa%}
{{address}}
{% endfor %}
{% endif %}
{% if dig_result.mx %}
MX (Mail Exchange) records:
{% for mx in dig_result.mx%}
- {{mx.preference}}
{{mx.exchange}}
{% endfor %}
{% endif %}