Skip to content

Split Horizon DNS #912

Answered by ShreyasZare
Slyke asked this question in Q&A
Apr 29, 2024 · 1 comments · 4 replies
Discussion options

You must be logged in to vote

The problem is that the APP record uses lan as the custom network but it is not defined in the app's main config. So, either you use 10.7.0.0/16 as the key instead or define the custom network in the main config.

So, either you use the APP config shown below:

{
  "10.7.0.0/16": [
    "10.7.0.25"
  ],
  "public": [
     "142.251.33.78"
  ]
}

OR, you define the custom network in the Split Horizon app's main config as below:

{
    "networks": {
        "lan": [
            "10.7.0.0/16"
        ]
    },
    "enableAddressTranslation": false,
    "networkGroupMap": {
        "10.0.0.0/8": "local1",
        "172.16.0.0/12": "local2",
        "192.168.0.0/16": "local3"
    },
    "groups": [
 …

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@Slyke
Comment options

@ShreyasZare
Comment options

Answer selected by Slyke
@Slyke
Comment options

@ShreyasZare
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants