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
v13.2 in docker
network_mode: "host"
Apps: Query logs, Split Horizon, What is my IP
When playing around with a test zone I created, I noticed a weird behaviour.
I can resolve any subdomain in the zone via a wildcard entry, except for subdomains beginning with the letter 'g'.
There is a good chance that I am doing something out of spec, but felt it was worth reporting.
Here are the steps to recreate:
create a new primary zone: example.com
add an A record: int > 192.168.0.1
add a CNAME record: * > int.example.com
test nslookup games.example.com - this works, as well as other subdomains
add an A record: ssh.git > 192.168.0.2
test nslookup games.example.com - this now fails, as well as other subdomains beginning with 'g'
test nslookup ssh.git.example.com - this works as expected
test nslookup notgames.example.com - this works, as well as other subdomains that do not begin with 'g'
add a CNAME record: git > int.example.com
test nslookup games.example.com - this works again, as well as other subdomains
The trigger seems to be adding the ssh.git record. Adding also a git record seems to negate the weird effect.
Maybe having the sub.subdomain without explicitly defining the subdomain is causing an issue, but why only with subdomains starting with 'g'?
The text was updated successfully, but these errors were encountered:
Thanks for reporting this. I am able to reproduce this issue and seems to be some bug in processing wildcard for Empty Non-Terminal (ENT) record cases. Will get this fixed soon.
v13.2 in docker
network_mode: "host"
Apps: Query logs, Split Horizon, What is my IP
When playing around with a test zone I created, I noticed a weird behaviour.
I can resolve any subdomain in the zone via a wildcard entry, except for subdomains beginning with the letter 'g'.
There is a good chance that I am doing something out of spec, but felt it was worth reporting.
Here are the steps to recreate:
create a new primary zone: example.com
add an A record: int > 192.168.0.1
add a CNAME record: * > int.example.com
test
nslookup games.example.com
- this works, as well as other subdomainsadd an A record: ssh.git > 192.168.0.2
test
nslookup games.example.com
- this now fails, as well as other subdomains beginning with 'g'test
nslookup ssh.git.example.com
- this works as expectedtest
nslookup notgames.example.com
- this works, as well as other subdomains that do not begin with 'g'add a CNAME record: git > int.example.com
test
nslookup games.example.com
- this works again, as well as other subdomainsThe trigger seems to be adding the ssh.git record. Adding also a git record seems to negate the weird effect.
Maybe having the sub.subdomain without explicitly defining the subdomain is causing an issue, but why only with subdomains starting with 'g'?
The text was updated successfully, but these errors were encountered: