Skip to content

Commit

Permalink
Update nexthop seperator of acl redirect action (#520)
Browse files Browse the repository at this point in the history
  • Loading branch information
dawnbeauty authored and prsunny committed Nov 14, 2019
1 parent 948ddc7 commit 7bf62a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/vrf/vrf-ansible-test-plan.md
Original file line number Diff line number Diff line change
Expand Up @@ -383,12 +383,12 @@ Acl redirect action supports vrf, so we need specify the outgoing interface of t
"VRF_ACL_REDIRECT_V4|rule1": {
"priority": "55",
"SRC_IP": "10.0.0.1",
"packet_action": "redirect:{\% for intf, ip in redirect_dst_ipv6s \%}{{ ip ~ "|" ~ intf }}{{ "," if not loop.last else "" }}{\% endfor \%}"
"packet_action": "redirect:{\% for intf, ip in redirect_dst_ipv6s \%}{{ ip ~ "@" ~ intf }}{{ "," if not loop.last else "" }}{\% endfor \%}"
},
"VRF_ACL_REDIRECT_V6|rule1": {
"priority": "55",
"SRC_IPV6": "2000::1",
"packet_action": "redirect:{\% for intf, ip in redirect_dst_ipv6s \%}{{ ip ~ "|" ~ intf }}{{ "," if not loop.last else "" }}{\% endfor \%}"
"packet_action": "redirect:{\% for intf, ip in redirect_dst_ipv6s \%}{{ ip ~ "@" ~ intf }}{{ "," if not loop.last else "" }}{\% endfor \%}"
}
}
}
Expand Down

0 comments on commit 7bf62a5

Please sign in to comment.