home

Supported platforms

Vyatta documentation

Learn how to install, configure, and operate the Vyatta Network Operating System (Vyatta NOS) and Orchestrator, which help drive our virtual networking and physical platforms portfolio.

policy route access-list6 <list-name> rule <rule-num> source

Defines match criteria for an IPv6 access list rule based on source.

set policy route access-list6 list-name rule rule-num source { any | exact-match | network ipv6net }
delete policy route access-list6 list-name rule rule-num source
show policy route access-list6 list-name rule rule-num source
list-name
The name of an IPv6 access list.
rule-num
The number of a defined IPv6 access list rule.
any
Match packets coming from any source. Exactly one of any, exact-match, and network is mandatory.
exact-match
Match packets coming from one of the network prefixes. Exactly one of any, exact-match, and network is mandatory.
network ipv6net
Match packets coming from the specified network. The format is iv6p-address/prefix. Exactly one of any, exact-match, and network is mandatory.

Configuration mode


policy {
    route {
    access-list6 list-name {
        rule rule-num {
            source {
                any
                exact-match
                network ipv6net
                }
            }
        }
    }
}

Use the set form of this command to specify the source match criteria for this access list rule.

Use the delete form of this command to remove the configured source match criteria for this rule. If no match criteria are specified, no packet filtering on source will take place; that is, packets from all sources are permitted.

Use the show form of this command to display configuration settings for access list rule source packet filtering.