TroutTrout

Deploy Secure Twin with DNS

Steer assets through Access Gate by name, delegate a subdomain to the Access Gate resolver and every name in it resolves to its Secure Twin overlay address.

5 min read · Last updated 2026-07-16

When assets are reached by name rather than by a hard-coded IP, you can bring them under the Secure Twin without touching a single device. Give each asset a DNS name that resolves to its overlay address, then delegate that zone from your existing DNS. Clients keep asking for the same name; the answer they get quietly points through the Access Gate.

This builds directly on Configuring Access Gate DNS, which covers how to give each asset a name. Here we take the next step: making your corporate DNS hand those names off to Access Gate.

The Goal

Every asset in the Access Gate inventory can carry its own DNS entry, and Access Gate hosts the resolution for it, no extra box to stand up. The name resolves not to the device's real address but to its overlay IP, so a client that connects by name is transparently sent through the Access Gate for policy enforcement.

The only question left is how clients reach the Access Gate resolver. Rather than repoint every client's DNS at Access Gate, you delegate a single subdomain, for example secure.acme.corp, to it. Your existing DNS stays authoritative for everything else; only names under that subdomain are handed to Access Gate, which takes it from there.

How It Works

Two systems cooperate, and neither touches the assets:

  • Access Gate resolves the asset names. Each asset gets a prefix (its name); each subnet contributes a suffix (the zone). Together they form a fully-qualified name that resolves to the asset's overlay address.
  • Your DNS delegates the zone. You configure split DNS so that a subdomain, secure.acme.corp, is forwarded to the Access Gate resolver. Any lookup under it returns an overlay address, and the traffic follows.

Because resolution is what changes, the assets keep their real IPs, gateways, and routing. A client simply receives an overlay answer instead of an underlay one.

Reference Lab

A single corporate zone is carried through every step so the names line up:

ElementValueRole
Corporate zoneacme.corpYour existing internal DNS
Delegated subdomainsecure.acme.corpForwarded to Access Gate
Access Gate resolver100.65.0.6Hosts names for protected assets
Example assetplc-line-1, underlay 10.0.0.3Resolves to overlay 100.64.100.3

So plc-line-1.secure.acme.corp resolves to 100.64.100.3, and traffic to that name transits the Access Gate on its way to the real 10.0.0.3.

Step by Step

1. Give each asset a DNS name

In Access Gate, open Asset → [Asset], select the pencil icon, and enter the asset's prefix (its name).

Configuring an asset's DNS prefix in Access Gate
Configuring an asset's DNS prefix in Access Gate

The name now resolves to the asset's overlay IP, so traffic sent to it is directed through the Access Gate proxy rather than straight to the device.

2. Set the zone suffix on the subnet

The suffix comes from your vnet configuration, under Settings → Subnets → Overlay DNS Name. Set it to the subdomain you will delegate, and every asset entry on that subnet inherits it.

Overlay DNS name configured on the subnet
Overlay DNS name configured on the subnet

3. Confirm resolution on Access Gate

Before delegating, confirm Access Gate resolves the name to an overlay address.

Asset details showing the resolved DNS name
Asset details showing the resolved DNS name
DNS resolution for the asset name
DNS resolution for the asset name
dig @100.65.0.6 plc-line-1.secure.acme.corp +short
# 100.64.100.3   -> an overlay address confirms Access Gate is resolving correctly

4. Delegate the subdomain from your DNS (split DNS)

On your existing DNS, forward the secure.acme.corp zone to the Access Gate resolver. Everything outside that subdomain stays exactly as it is.

# BIND: forward only the delegated zone to Access Gate
zone "secure.acme.corp" {
    type forward;
    forward only;
    forwarders { 100.65.0.6; };   # Access Gate resolver
};

On Windows DNS this is a Conditional Forwarder for secure.acme.corp pointing at 100.65.0.6; most other resolvers expose the same "forward this zone" concept.

5. Verify from a client

From a normal client using your corporate DNS, resolve the asset by name. The answer should be an overlay address, and the session should transit the Access Gate.

nslookup plc-line-1.secure.acme.corp
# Address: 100.64.100.3   -> resolved via the delegated zone, through Access Gate

The Complete Path

client  [asks corporate DNS for plc-line-1.secure.acme.corp]
  -> Corporate DNS (acme.corp)  [forwards secure.acme.corp -> Access Gate resolver]
  -> Access Gate resolver (100.65.0.6)  [answers 100.64.100.3, the overlay address]
  -> client connects to 100.64.100.3
  -> Access Gate (policy enforcement)  [maps 100.64.100.3 -> 10.0.0.3]
  -> plc-line-1 (10.0.0.3)

From the client's point of view, it looked up a name and connected to it as always. In reality the name resolved to an overlay address and the session passed through the Access Gate, with no change to the asset's real IP, gateway, or routing.

Steering by Name, Nothing Else Touched

Delegating a subdomain is the least intrusive way to bring named assets under the Secure Twin: you change one forwarder in your DNS, and every name under it is drawn through the Access Gate. It pairs naturally with SSL/TLS certificates, which are issued against a name rather than an address.

If your assets are reached by raw IP instead of by name, use modifying IPs, gateway NAT (L3), or ARP proxying (L2) to achieve the same result.