Hi Nick,
a prefix list is not an access control list... On EXOS, routing policies use .pol files just like ACLs, but they use different match statements and actions. They even have their own chapter in the documentation,
Routing Policies.
Anyway, the EXOS equivalent to your IOS prefix list line is:
entry ipv6_out_05 { if { nlri 2001:db8::/49 } then { deny } } entry ipv6_out_10 { if { nlri 2001:db8::/32 } then { permit } }You can use the
exact keyword after the subnet specification to require an exact match, instead of accepting all longer prefixes.
Thanks,
Erik