This is the second part of my OCI Private DNS posts. You can read the first part from here.
In this post I will extend my configuration to have two VCN’s which will be connected via Local Peering Gateways together. Other VCN will have Private Zone for thatfinnishguy.com and the other VCN for somethingelse.com.
Both VCN’s will have one compute instance running in their subnets and I will have A Record inserted for each.
Remember to check the BUT section afterwards to see how this can be done without forwarders or listeners.
To achieve my configuration above I’ve created following:
On part 1 we already went through on creating Private View, Zone and assigning A Record. Since this is done already and I’ve assigned views on their VCN’s let’s take a look on creating listener and forwarder.
When I go to my VCN resolver I have option to create endpoints and in order for my configuration to work I will need to create listener and forwarder. You need to assign endpoint always to a subnet and either give it an IP address or let Oracle assign it automatically.
In this example I’ve defined IP address myself just to have specific IP’s on both side of VCNs.
After doing this I should have one listener and one forwarder on both sides. What is needed next are rules for both VCN’s. Since this is a fairly straightforward example I will create a domain specific rule to forward queries against thatfinnishguy.com from somethingelse.com and vice versa.
That’s pretty much all that is required! Since I’m using LPG’s to connect VCN’s I need to remember to add route rules on my routetable.
You also need to allow traffic between VCN’s so listeners can be accessed as endpoints exist in your VCN and obey rules you have setup either through Security Lists or Network Security Groups.
Compute instance on vcn-somethingelse
[opc@se-1 ~]$ nslookup tfg-1.thatfinnishguy.com
Server: 169.254.169.254
Address: 169.254.169.254#53
Non-authoritative answer:
Name: tfg-1.thatfinnishguy.com
Address: 10.0.0.2
Compute instance on vcn-thatfinnishguy
[opc@tfg-1 ~]$ nslookup se-1.somethingelse.com
Server: 169.254.169.254
Address: 169.254.169.254#53
Non-authoritative answer:
Name: se-1.somethingelse.com
Address: 192.168.0.2
Now we’ve created DNS resolvers and listeners but what if we just add both Private views on the VCN resolver?
I removed the forwarding rule and tested it out and everything works smoothly! So if you are doing this inside OCI you can just add multiple views on VCN resolver and get your DNS queries resolved without setting up resolvers and listeners.
Setting up Private DNS between VCN’s isn’t too complicated once you’ve learned all the steps. Remember this isn’t just limited within OCI! You can setup forwarders to point your custom DNS which can be your internal DNS and the other way around you can point your DNS on the VCN Resolver listeners.
And nothing limits you to resolve DNS between cloud vendors as well. Lot of possibilities now compared to previous situation where you always had to setup your own DNS forwarders.
Associating multiple Views for one VCN resolver makes the setup inside OCI very trivial and doesn’t add so much overhead as it would with listeners and forwarders.
Last time I showed how to provision Autonomous Database Serverless (ADB-S) on Google Cloud. This…
I bet few years back folks didn't expect that by 2024 we would be able…
This will NOT be a technical walkthrough on Oracle Database@Azure but rather my opinions and…
Recently OCI announced small but VERY useful service, IP Address Insights. Why this matters? I've…
View Comments
Awesome blog. I got to replicate it myself. One quick note, UDP 53 has to be open to allow the forwarder from one VCN to hit the listener on the other. I was silly and did TCP 53 and that didn't work.
Great blog, thank you for posting this!
Questions, how does this work for reverse DNS? I have a similar setup between two VCNs and I can't make reverse DNS work.
Thanks!
Selecting None for Rule Condition and Match All for CIDR/Domains seem to work for both forward and reverse lookup.
I have 3 subnets, so should I configure forwarder for all 3 subnets? since customer has 4 DNS Ip so the combination goes to 12 rules which is not allowed. Only 10 rules are allowed.
I think you should be good with one forwarder only for VCN in one of the subnets, shouldn't need forwarder for each subnet.