You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When converting a virtual server that has a separate clientside/serverside tcp profile the AS3 conversion only has the egress configuration and this fails to deploy to the BIG-IP because the ingress tcp profile is required but doesn't exist in the AS3 configuration.
Steps To Reproduce
Just create virtual server with 2 separate TCP profiles for the clientside and serverside, then use ACC docker image to convert the configuration and notice that only the serverside profile is converted.
Expected Behavior
Expecting to have the following output for the tcp profiles:
Environment
Summary
When converting a virtual server that has a separate clientside/serverside tcp profile the AS3 conversion only has the egress configuration and this fails to deploy to the BIG-IP because the ingress tcp profile is required but doesn't exist in the AS3 configuration.
Steps To Reproduce
Just create virtual server with 2 separate TCP profiles for the clientside and serverside, then use ACC docker image to convert the configuration and notice that only the serverside profile is converted.
Expected Behavior
Expecting to have the following output for the tcp profiles:
"profileTCP": {
"ingress": {
"bigip": "/Common/f5-tcp-wan"
},
"egress": {
"bigip": "/Common/tcp"
}
},
Actual Behavior
AS3 Output:
"vs_as3tcp-test-443": {
"layer4": "tcp",
"pool": "pl_as3mig_443",
"translateServerAddress": true,
"translateServerPort": true,
"class": "Service_TCP",
"profileTCP": { #Missing ingress profile
"egress": {
"bigip": "/Common/tcp"
}
},
"virtualAddresses": [
"10.1.0.51"
],
"virtualPort": 443,
"persistenceMethods": [],
"snat": "auto"
},
TMOS configuration output:
ltm virtual vs_as3tcp-test-443 {
destination 10.1.0.51:https
ip-protocol tcp
mask 255.255.255.255
pool pl_as3mig_443
profiles {
f5-tcp-wan { #This profile doesn't get converted
context clientside
}
tcp {
context serverside
}
}
serverssl-use-sni disabled
source 0.0.0.0/0
source-address-translation {
type automap
}
translate-address enabled
translate-port enabled
vs-index 32
}
The text was updated successfully, but these errors were encountered: