mirror of
https://github.com/cetic/unikernels.git
synced 2024-12-26 08:13:26 +07:00
39 lines
678 B
JSON
39 lines
678 B
JSON
|
{
|
||
|
"net" : [
|
||
|
{
|
||
|
"iface": 0,
|
||
|
"config": "static",
|
||
|
"address": "10.0.0.254",
|
||
|
"netmask": "255.255.255.0",
|
||
|
"gateway": "10.0.0.254"
|
||
|
},
|
||
|
{
|
||
|
"iface": 1,
|
||
|
"config": "static",
|
||
|
"address": "192.168.101.2",
|
||
|
"netmask": "255.255.255.248",
|
||
|
"gateway": "192.168.101.3"
|
||
|
}
|
||
|
|
||
|
],
|
||
|
"router" : [
|
||
|
[
|
||
|
{
|
||
|
"address": "10.0.0.0",
|
||
|
"netmask": "255.255.255.0",
|
||
|
"iface" : 0
|
||
|
},
|
||
|
{
|
||
|
"address": "192.168.101.0",
|
||
|
"netmask": "255.255.255.248",
|
||
|
"iface" : 1
|
||
|
},
|
||
|
{
|
||
|
"address": "0.0.0.0",
|
||
|
"netmask": "0.0.0.0",
|
||
|
"iface" : 1
|
||
|
}
|
||
|
]
|
||
|
]
|
||
|
}
|