将下列内容改为json文件格式:{"network_scenarios": "sdn", "dataplanes_config": [{"name": "default", "network_type": "DATAPLANE", "segmentation_type": "vxlan", "subnets": [{"start": "166.166.16.10", //传平面所有子网信息,没有传 [] "end": "166.166.16.166", "cidr": "166.166.16.0/24", "gateway": "", "vlan_id": ""}]}], "host-192-168-103-110": {"nics": {"eno2": {"physical_network": {"default": { "network_type": "DATAPLANE", "vtep_ip": "1.1.1.1", "segmentation_type": "vxlan" } }, "vswitch_type": "dvs", "dvs_nic_form": "", "exist_netplanes": [ "DATAPLANE" ], } } }, "host-192-168-103-111": {"nics": {"eno2": {"physical_network": {"default": { "network_type": "DATAPLANE", "vtep_ip": "1.1.1.1", "segmentation_type": "vxlan" } }, "vswitch_type": "dvs", "dvs_nic_form": "", "exist_netplanes": [ "DATAPLANE" ], } } }, "sdn_manage_vswitch": "", }
时间: 2023-11-13 09:52:27 浏览: 72
{
"network_scenarios": "sdn",
"dataplanes_config": [
{
"name": "default",
"network_type": "DATAPLANE",
"segmentation_type": "vxlan",
"subnets": [
{
"start": "166.166.16.10",
"end": "166.166.16.166",
"cidr": "166.166.16.0/24",
"gateway": "",
"vlan_id": ""
}
]
}
],
"host-192-168-103-110": {
"nics": {
"eno2": {
"physical_network": {
"default": {
"network_type": "DATAPLANE",
"vtep_ip": "1.1.1.1",
"segmentation_type": "vxlan"
}
},
"vswitch_type": "dvs",
"dvs_nic_form": "",
"exist_netplanes": [
"DATAPLANE"
]
}
}
},
"host-192-168-103-111": {
"nics": {
"eno2": {
"physical_network": {
"default": {
"network_type": "DATAPLANE",
"vtep_ip": "1.1.1.1",
"segmentation_type": "vxlan"
}
},
"vswitch_type": "dvs",
"dvs_nic_form": "",
"exist_netplanes": [
"DATAPLANE"
]
}
}
},
"sdn_manage_vswitch": ""
}
阅读全文