Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
firstline1
titleONOS-SONA network-cfg.json
linenumberstrue
{
    "nodes" : [
        {
            "hostname" : "compute-node",
            "type" : "COMPUTE",
            "managementIp" : "10.134.231.30",
            "dataIp" : "10.134.34.222",
            "integrationBridge" : "of:00000000000000a1"
        },
        {
			"hostname" : "controller",
            "type" : "CONTROLLER",
            "managementIp" : "10.134.231.28",
			"keystoneConfig"            : {
				"endpoint" : "keystone-endpoint-address",
            	"authentication" : {
                    "version" : "v2.0",
                    "protocol" : "HTTPS",
                    "project" : "admin",
                    "username" : "admin",
                    "password" : "PASSWORD",
                    "perspective" : "PUBLIC"
            	}
			},
			"neutronConfig": {
	  			"useMetadataProxy": true,
  				"metadataProxySecret": "nova",
  				"novaMetadataIp": "10.134.231.28",
  				"novaMetadataPort": 8775
			}
        },
        {
            "hostname" : "gateway-node",
            "type" : "GATEWAY",
            "managementIp" : "10.134.231.32",
            "dataIp" : "10.134.34.224",
            "integrationBridge" : "of:00000000000000a2",
            "uplinkPort" : "eth2"
         }
     ]
}

...