forked from pbengert/wireguard-config-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblueprint.json
33 lines (33 loc) · 882 Bytes
/
blueprint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[
{
"name" : "Interface 1",
"filePath" : "/Users/prajanchauhan/Desktop/interface_config/",
"port" : "51820",
"serverSubnet" : "10.0.0.1/24",
"natInterface" : {
"ipv4" : "eth0",
"ipv6" : "eth1"
},
"endpoint" : "www.example.com",
"peer_cidr" : "32",
"clients" : [
{
"name" : "Peer 1",
"dns" : "8.8.8.8",
"psk" : true,
"routeAllTraffic" : true,
},
{
"name" : "Peer 2",
"dns" : "8.8.4.4",
"psk" : true,
"routeAllTraffic" : false,
"server_cidr" : "32",
"allowedIps" : [
"192.168.1.2",
"192.168.0.0/24"
]
}
]
}
]