Due to a ransomware attack, the wiki was reverted to a July 2022 version. . We apologize for the lack of a more recent valid backup.
...
| Config Name | Descriptions |
|---|---|
| privateGatewayMac | MAC address of virtual private network gateway, it can be any MAC address |
| publicGateways | List of public network gateway and MAC address |
| publicGateway:gatewayIp | Public gateway IP |
| publicGateway:gatewayMac | MAC address mapped to the public gateway IP |
| localManagementIp | Management IP for a compute node and VM connection, must be CIDR notation |
| ovsdbPort | Port number for OVSDB connection (OVSDB uses 6640 by default) |
| sshPort | Port number for SSH connection |
| sshUser | SSH user name |
| sshKeyFile | Private key file for SSH |
| nodes | list of compute node information |
| nodes: hostname | hostname of the compute node, should be unique throughout the service |
| nodes: hostManagementIp | Management IP for a head node and compute node, it is used for OpenFlow, OVSDB, and SSH session. Must be CIDR notation. |
| nodes: dataPlaneIp | Data plane IP address, this IP is used for VXLAN tunneling |
| nodes: dataPlaneIntf | Name of physical interface used for tunneling |
| nodes: bridgeId | Device ID of the integration bridge (br-int) |
| Note |
|---|
localManagementIp, dataPlaneIp and hostManagementIp must not be overlapped |
| Code Block | ||
|---|---|---|
| ||
{
"apps" : {
"org.onosproject.cordvtn" : {
"cordvtn" : {
"privateGatewayMac" : "00:00:00:00:00:01",
"publicGateways" : [
{
"gatewayIp" : "207.141.192.158",
"gatewayMac" : "a4:23:05:34:56:78"
}
],
"localManagementIp" : "172.27.0.1/24",
"ovsdbPort" : "6640",
"sshPort" : "22",
"sshUser" : "hyunsun",
"sshKeyFile" : "/home/hyunsun/.ssh/id_rsa",
"nodes" : [
{
"hostname" : "compute-01",
"hostManagementIp" : "10.55.25.244/24",
"dataPlaneIp" : "10.134.34.222/16",
"dataPlaneIntf" : "eth1",
"bridgeId" : "of:0000000000000001"
},
{
"hostname" : "compute-02",
"hostManagementIp" : "10.241.229.42/24",
"dataPlaneIp" : "10.134.34.223/16",
"dataPlaneIntf" : "eth1",
"bridgeId" : "of:0000000000000002"
}
]
}
},
"org.onosproject.openstackinterface" : {
"openstackinterface" : {
"do_not_push_flows" : "true",
"neutron_server" : "http://10.243.139.46:9696/v2.0/",
"keystone_server" : "http://10.243.139.46:5000/v2.0/",
"user_name" : "admin",
"password" : "nova"
}
}
}
} |
...