Graph-IT

network.json

The network.json-file needs to be located inside the etc-folder. It needs to contain the following information about the target network:

Note that the network.json needs to be created by hand using the editor of your choice. Be sure to create a valid .json-file.

Example:

{
    "domain": "example",
    "subnet": "192.168.0.0/16",
    "rangemin": "192.168.42.1",
    "rangemax": "192.168.42.200",
    "hostgroups": {
        "server": {
            "range": "192.168.0.0/24"
        },
        "client": {
            "range": "192.168.1.0/24"
        },
        "machine": {
            "range": "192.168.1.0/26"
        }
    },
    "routers": [
        "router01"
    ],
    "nameservers": [
        "maindns",
        "fallbackdns"
    ]
}