-
I have public IP in a VRF and it services 3 different domains on it. I'm able to map 1 of them using the dns_name field but I'm unable to figure out how to do the same for the other 2 domains? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
HI @abhi1693, short answer: Manually, or via a custom scripting mechanism. The plugin currently has no means to assign multiple different FQDNs to one IP address automatically. The main reason is trivial: The The I see the problem, but so far didn't find a satisfactory solution to it, especially one that integrates with |
Beta Was this translation helpful? Give feedback.
HI @abhi1693, short answer: Manually, or via a custom scripting mechanism. The plugin currently has no means to assign multiple different FQDNs to one IP address automatically.
The main reason is trivial: The
IPAddress
model isn't prepared for it. There is onedns_name
, and any mapping to multiple names would require using custom fields (and, as there is no sensible custom field type for arrays, parsing whatever format would be used for them). The solution in any case would be quite ugly.The
mirror zone
approach (see the discussion in #468) has some shortcomings, too: You could use different domain names, but the host label would always be the same.I see the problem, but so far didn't fi…