WIP: Testing configurations for server-to-server tests

This commit is contained in:
Tristan B. Kildaire 2021-01-20 18:44:53 +02:00
parent 25961601bc
commit 75faa5d564
2 changed files with 34 additions and 0 deletions

17
testing/b1.json Normal file
View File

@ -0,0 +1,17 @@
{
"listeners" : {
"enabled" : ["listener1"],
"listener1" : {
"type" : "ipv4",
"domain" : "10.0.0.8:2222",
"address" : "0.0.0.0",
"port" : "6969"
},
"listener2" : {
"type" : "ipv6",
"domain" : "10.0.0.8:2222",
"address" : "::",
"port" : "6969"
}
}
}

17
testing/b2.json Normal file
View File

@ -0,0 +1,17 @@
{
"listeners" : {
"enabled" : ["listener1"],
"listener1" : {
"type" : "ipv4",
"domain" : "10.1.0.4:2222",
"address" : "0.0.0.0",
"port" : "6969"
},
"listener2" : {
"type" : "ipv6",
"domain" : "10.1.0.4:2222",
"address" : "::",
"port" : "6969"
}
}
}