While checking Dns Records for Subdomains where there is a particular wildcard entry to send all the request to a particular domain the following doesnt show in ip address.
What feature, service or problem is this related to?
DNS records
What are the steps to reproduce the issue?
Check dns records in any 3rd party website .
Wildcard domains domains is pointed. But the same is not getting Updated
There is an email authentication related SPF (type TXT) record on that βmauticβ label.
That record will kill the wildcard expansion for βmauticβ, and everything below that label (such as e.g. βtest.mauticβ or βexample.mauticβ).
You literally need to re-create the records that are no longer matching the wildcard, so that they are matching your desired outcome again.
When you have β*β, and are creating βmauticβ, and that you also want e.g. the βMXβ records for βmauticβ, to go to the same place as the β*β wildcard, re-create these βMXβ records on βmauticβ too, and if necessary, create another wildcard below βmauticβ, too.
Letβs say you have a zone file, with e.g.:
*.vinfur.in. 86400 IN MX 10 mail-inbound.example.com.
*.vinfur.in. 86400 IN A 192.0.2.80
*.vinfur.in. 86400 IN AAAA 2001:db8::80
And that you also want them to apply, when you have a record, like e.g.:
mautic.vinfur.in. 86400 IN TXT "v=spf1 +mx +a +ip4:190.92.174.32 +include:spf.mysecurecloudhost.com ~all"
Then you will add the same records once more, but at the label where the other wildcard isnβt matching any more.
Final result:
*.vinfur.in. 86400 IN MX 10 mail-inbound.example.com.
*.vinfur.in. 86400 IN A 192.0.2.80
*.vinfur.in. 86400 IN AAAA 2001:db8::80
mautic.vinfur.in. 86400 IN TXT "v=spf1 +mx +a +ip4:190.92.174.32 +include:spf.mysecurecloudhost.com ~all"
mautic.vinfur.in. 86400 IN MX 10 mail-inbound.example.com.
mautic.vinfur.in. 86400 IN A 192.0.2.80
mautic.vinfur.in. 86400 IN AAAA 2001:db8::80
If you also need the records to apply, wildcard like, for records below βmautic.vinfur.inβ, such as e.g. βalfa.bravo.mautic.vinfur.inβ, you can also add another wildcad on β*.mautic.vinfur.in.β, so the final result becomes:
*.vinfur.in. 86400 IN MX 10 mail-inbound.example.com.
*.vinfur.in. 86400 IN A 192.0.2.80
*.vinfur.in. 86400 IN AAAA 2001:db8::80
mautic.vinfur.in. 86400 IN TXT "v=spf1 +mx +a +ip4:190.92.174.32 +include:spf.mysecurecloudhost.com ~all"
mautic.vinfur.in. 86400 IN MX 10 mail-inbound.example.com.
mautic.vinfur.in. 86400 IN A 192.0.2.80
mautic.vinfur.in. 86400 IN AAAA 2001:db8::80
*.mautic.vinfur.in. 86400 IN MX 10 mail-inbound.example.com.
*.mautic.vinfur.in. 86400 IN A 192.0.2.80
*.mautic.vinfur.in. 86400 IN AAAA 2001:db8::80
If you need it for other labels too, you can simply re-do the steps as shown here for βmautic.vinfur.inβ, for other labels, such as e.g. βapi.vinfur.inβ, βexample.vinfur.inβ or βintranet.vinfur.inβ as well.
As soon as you create one record on some label, you will need to re-create the (previous) wildcard records for that specific label (and the labels below), if they are necessary for your operation.
It may unfortunately require quite some records, but it is the only way.
How simple (or complicated) the set up needs to be, depends on the actual records you require, and how identical (or different) they are from each other.