You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not a security vulnerability or a crashing bug
This is not a question about how to use Istio
Bug Description
Hi!
We have a new Istio service which is now failing on SRV queries. After investigation we found out that it is due to a DNS additional section returned by Azure DNS that is merged in the Answer section by ztunnel DNS proxy.
I was able to reproduce the issue outside Azure (i.e. AWS) by mimicking the same DNS answer via CoreDNS override.
template ANY ANY _tcp.db.srv.tld {
answer "{{ .Name }} 8 IN SRV 0 0 2400 privatelink-db.srv.tld."
answer "{{ .Name }} 8 IN SRV 0 0 2401 privatelink-db.srv.tld."
answer "{{ .Name }} 8 IN SRV 0 0 2402 privatelink-db.srv.tld."
additional "privatelink-db.srv.tld. 8 IN A 10.140.0.250"
additional "privatelink-db.srv.tld. 8 IN A 10.140.0.250"
additional "privatelink-db.srv.tld. 8 IN A 10.140.0.250"
}
Without Istio (or w/ DNS Capture disabled) we get the following from dig:
;; ANSWER SECTION:
_tcp.db.srv.tld. 8 IN SRV 0 0 2400 privatelink-db.srv.tld.
_tcp.db.srv.tld. 8 IN SRV 0 0 2401 privatelink-db.srv.tld.
_tcp.db.srv.tld. 8 IN SRV 0 0 2402 privatelink-db.srv.tld.
;; ADDITIONAL SECTION:
privatelink-db.srv.tld. 8 IN A 10.140.0.250
privatelink-db.srv.tld. 8 IN A 10.140.0.250
privatelink-db.srv.tld. 8 IN A 10.140.0.250
However inside the pod, part of the Istio mesh, when we run dig we get the following:
;; ANSWER SECTION:
_tcp.db.srv.tld. 30 IN SRV 0 0 2400 privatelink-db.srv.tld.
_tcp.db.srv.tld. 30 IN SRV 0 0 2401 privatelink-db.srv.tld.
_tcp.db.srv.tld. 30 IN SRV 0 0 2402 privatelink-db.srv.tld.
privatelink-db.srv.tld. 30 IN A 10.140.0.250
privatelink-db.srv.tld. 30 IN A 10.140.0.250
privatelink-db.srv.tld. 30 IN A 10.140.0.250
Version
$ istioctl version
client version: 1.24.2
control plane version: 1.24.2
data plane version: 1.24.2 (5 proxies)
$ kubectl version
Client Version: v1.32.1
Kustomize Version: v5.5.0
Server Version: v1.30.9
Additional Information
No response
The text was updated successfully, but these errors were encountered:
Is this the right place to submit this?
Bug Description
Hi!
We have a new Istio service which is now failing on SRV queries. After investigation we found out that it is due to a DNS additional section returned by Azure DNS that is merged in the Answer section by ztunnel DNS proxy.
I was able to reproduce the issue outside Azure (i.e. AWS) by mimicking the same DNS answer via CoreDNS override.
Without Istio (or w/ DNS Capture disabled) we get the following from
dig
:However inside the pod, part of the Istio mesh, when we run dig we get the following:
Version
Additional Information
No response
The text was updated successfully, but these errors were encountered: