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 using ios.ios_route_maps with an ACL in a route map, the configuration negates or removes the ACL unexpectedly. This behavior may cause intermittent issues in production environments. (removing acl 185 and 186, it should be just remove acl 186)
route-map TO_OUT permit 10
match ip address 185 186
set as-path prepend 1321
become
route-map TO_OUT permit 10
match ip address 185
set as-path prepend 1321
"changed": true,
"commands": [
"route-map TO_OUT permit 10",
"no match ip address 185 186",
"match ip address 185"
expect to :
"changed": true,
"commands": [
"route-map TO_OUT permit 10",
"no match ip address 186"
SUMMARY
When using ios.ios_route_maps with an ACL in a route map, the configuration negates or removes the ACL unexpectedly. This behavior may cause intermittent issues in production environments. (removing acl 185 and 186, it should be just remove acl 186)
expect to :
ISSUE TYPE
COMPONENT NAME
ios.ios_route_maps
ANSIBLE VERSION
COLLECTION VERSION
CONFIGURATION
OS / ENVIRONMENT
cisco IOS-XE CSR1000V
STEPS TO REPRODUCE
When applying a configuration using the ios_route_maps module, it removes or negates ACLs defined in the route map unexpectedly.
EXPECTED RESULTS
ACL 185 should not be removed or negated, and the configuration should be applied correctly.
Because it's already, it should be just
ACTUAL RESULTS
The text was updated successfully, but these errors were encountered: