-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
The following error is reported if a IPV6 address is used for the destination field of the virtual server:
[2017-12-01 15:13:58,008 f5_cccl.resource.resource ERROR] HTTP error(400): CCCL resource(ApiVirtualServer) /Part-2/default_test-svc-43-map.
[2017-12-01 15:13:58,008 f5_cccl.service.manager ERROR] F5CcclResourceRequestError - 400 Unexpected Error: Bad Request for uri: https://10.190.24.209:443/mgmt/tm/ltm/virtual/~Part-2~default_test-svc-43-map/
Text: u'{"code":400,"message":"0107028f:3: The destination (1::%2) address and mask (255.255.255.255) for virtual server (/Part-2/default_test-svc-43-map) must be be the same type (IPv4 or IPv6).","errorStack":[],"apiError":3}'
[2017-12-01 15:13:58,008 f5_cccl.service.manager ERROR] Resource /Part-2/default_test-svc-43-map update error, requeuing task...
The configuration that was used (for the k8s-bigip-ctlr) was the following:
{
...
"resources": {
"Part-2": {
"virtualServers": [
{
"name": "default_test-svc-43-map",
"destination": "/Part-2/1::.80",
"source": "::/0",
"enabled": true,
"ipProtocol": "tcp"
}
]
}
}
}
Reactions are currently unavailable