'ipAddresses' field missing in example file

The 'ipAddresses' field is missing in the
param file to instantiate the VNF.

Closes-Bug: 1967053
Change-Id: I27faf82549d16a3b6b8dec964017d4bb8058bd0a
This commit is contained in:
Renu 2022-03-31 04:53:32 +00:00
parent acf84a168a
commit 223badc31d
1 changed files with 12 additions and 1 deletions

View File

@ -162,7 +162,18 @@ Param file with optional parameters:
{
"cpProtocolData": [
{
"layerProtocol": "IP_OVER_ETHERNET"
"layerProtocol": "IP_OVER_ETHERNET",
"ipOverEthernet": {
"ipAddresses": [
{
"type": "IPV4",
"fixedAddresses": [
"10.10.0.49" #Set the ip address from subnet range
],
"subnetId": "06709e3e-33ff-4221-9d07-565c3fd55223" #Set the subnetID of net0
}
]
}
}
]
}