HTTP allowing VLANs BIG-IP Next AS3 Example DeclarationΒΆ
HTTP service configuration allowing specific VLANs
{
"class": "ADC",
"id": "id-http-allow-vlans",
"schemaVersion": "3.0.0",
"mytenant": {
"class": "Tenant",
"myapp": {
"class": "Application",
"my_pool": {
"class": "Pool",
"loadBalancingMode": "least-connections-member",
"members": [
{
"serverAddresses": [
"198.18.10.10"
],
"servicePort": 80
}
]
},
"my_service": {
"class": "Service_HTTP",
"allowVlans": [
{
"bigip": "myexistingVLAN"
}
],
"enable": true,
"persistenceMethods": [
"source-address"
],
"pool": "my_pool",
"remark": "custom remark",
"virtualAddresses": [
"198.18.1.10"
],
"virtualPort": 80
},
"remark": "canonical application"
}
}
}