20-Aug-2021 12:01
Hi I am trying to setup a big-ip vCPM guest using DO declation using postman and below is the script I am using.
Script-1
"myProvisioningltm": {
"class": "Provision",
"ltm": "nominal"
},
"Provisioningavr": {
"class": "Provision",
"avr": "nominal"
},
"myProvisioningaasm": {
"class": "Provision",
"asm": "nominal"
}
}
script-2
"myProvisioning": {
"class": "Provision",
"ltm": "nominal",
"avr": "nominal",
"asm": "nominal"
},
I get a 200 OK response from the device and after the initial reboot device will open provision ltm module as shown below
},
"currentProvision": {
"afm": "none",
"am": "none",
"apm": "none",
"asm": "none",
"avr": "none",
"dos": "none",
"fps": "none",
"gtm": "none",
"ilx": "none",
"lc": "none",
"ltm": "nominal",
"swg": "none",
"urldb": "none",
"class": "Provision"
},
is their anything wrong with the script?
22-Aug-2021
04:56
- last edited on
04-Jun-2023
19:20
by
JimmyPackets
Hi Vishnu,
take a look at the example DO declartions (https://clouddocs.f5.com/products/extensions/f5-declarative-onboarding/latest/declarations/basic.htm...). Your second variant is correct:
"myProvisioning": {
"class": "Provision",
"ltm": "nominal",
"gtm": "minimum"
},
Are all other configurations applied correctly? Do you find anything in /var/log/restnoded/restnoded.log?
KR
Daniel