Tuesday, February 25, 2020

Route Redistribution in Gaia Clish. - IPv4 and IPv6 route


Configuring Route Redistribution - Gaia Clish
You can configure IPv4 and IPv6 route redistribution in Gaia Clish.

Redistributing IPv4 Routes

To configure IPv4 route redistribution:
set route-redistribution to <destination_protocol> <destination_protocol_parameters> from <source_protocol> <source_protocol_parameters>
These are the destination protocols:
  • BGP
  • OSPFv2
  • RIP
Each destination protocol has a set of destination protocol parameters.
These are the source protocols:
  • BGP, specific AS
  • BGP, specific AS path
  • OSPFv2
  • OSPFv2 External
  • RIP
You can also redistribute:
  • Aggregate routes
  • Default routes
  • Routes from specific interfaces
  • Static routes

Redistributing IPv4 Routes to BGP

Destination protocol - BGP:
bgp-as <peer_group>
community-append <community_ID> [as <AS_number> | off]
community-match <community_ID> [as <AS_number> | off]
localpref <preference>
med <MED>
Parameters
Parameter
Description
bgp-as <peer_group>
Destination BGP Autonomous System (AS).
community-append <community_ID>
The ID of the community appended to the route. Valid community ID values are 1 through 65535.
community-match <community_ID>
The ID of the community to route. Valid community ID values are 1 through 65535.
as <AS_number> | off
Turn the specified community-AS association on (as <AS_number>) or off (off)
localpref <preference>
Assign a BGP local preference to routes redistributed into the destination BGP AS. Valid preference values are 0 through 2147483647. The default is none. If selected, it leaves the BGP local preference value of the source BGP AS routes.
med <MED>
Assign a Multi Exit Discriminator (MED). The routes with the lowest MED are preferred.
Examples:
  • Redistribute all the static routes into the BGP AS 11:
    set route-redistribution to bgp-as 11 from static-route all-ipv4-routes on
  • Assign the BGP local preference of 100 to routes redistributed into BGP AS 11:
    set route-redistribution to bgp-as 11 localpref 100

Redistributing IPv4 Routes from BGP Specific AS

Source protocol - BGP, specific AS:
bgp-as-number <AS_number>
all-ipv4-routes
metric <cost> on
off
on
network <IPv4_address/mask>
action {accept | restrict}
match-type
exact on
normal on
range between <lower_IP> and <upper_IP> on
refines on
metric <cost> on
off
on
ospf-automatic-tag {on | off}
ospf-automatic-tag-value {default | <value>}
ospf-manual-tag-value {default | <value>}
riptag {default | <value>}
Parameters
Parameter
Description
bgp-as-number <AS_number>
BGP Autonomous System number from which to redistribute routes into the destination routing protocol.
all-ipv4-routes {metric <cost> on | off | on}
Redistribute all the BGP routes from the specified BGP AS. The options for redistribution of all IPv4 routes are:
  • metric <cost> on - Assign a cost to the redistributed routes and turn the redistribution on
  • on - Turn the redistribution on
  • off - Turn the redistribution off
Make sure to assign a route redistribution cost that is in a valid for the destination protocol range:
  • RIP - 1-16
  • OSPFv2 - 1-16777215
  • BGP - 1-4294967295
Note - Route cost assignment is mandatory when configuring redistribution into RIP.
network <IPv4_address/mask> {action <action> | match-type <precision> on | metric <cost> on | on | off}
Redistribute the BGP routes to the specified network in the specified BGP AS, unless a more specific route redistribution rule exists.
Specify an <action> to accept or reject the network routes:
  • accept - Redistribute the routes
  • restrict - Do not redistribute the routes
Specify the <precision> with which the routes are matched:
  • exact - Matches only routes to the network
  • normal - Matches routes within the network, including the network route itself (default)
  • range - Matches routes that fall within the specified range in the network (the lower limit for the mask length must not be lower than the network mask length)
  • refines - Matches routes within the network, not including the network route itself
Assign a cost to redistributed routes - <cost>. Make sure to assign a value that is in a valid for the destination protocol range:
  • RIP - 1-16
  • OSPFv2 - 1-16777215
  • Note - Route cost assignment is mandatory when configuring redistribution into RIP.
ospf-automatic-tag {on | off}
Generate tags for external OSPF routes, based on the BGP AS (optional):
  • on - Turn the tag generation on
  • off - Turn the tag generation off
ospf-automatic-tag-value {default | <value>}
Assign a specific value to the automatic tag for the external OSPF routes (optional). Valid tag values are 1 through 4095.
ospf-manual-tag-value {default | <value>
Assign a tag value for the external OSPF routes (optional). This tag overrides all automatic tag configurations. Valid tag values are 1 through 2147483647.
riptag <value>
Assign a tag value to a BGP route redistributed into RIP. Valid tag values are 1 through 65535.
Examples:
  • Redistribute all IPv4 routes for the IP addresses in the Autonomous System 100 into OSPF (valid for OSPFv2 only), and assign the cost of 99 to them:
    set route-redistribution to ospf2 from bgp-as-number 100 all-ipv4-routes metric 99 on
  • Redistribute all IPv4 routes for the IP addresses in the Autonomous System 100 into OSPF (valid for OSPFv2 only), except for routes for the network 192.168.0.0/16:
    set route-redistribution to ospf2 from bgp-as-number 100 network 192.168.0.0/16 action restrict
    set route-redistribution to ospf2 from bgp-as-number 100 all-ipv4-routes on

Redistributing IPv4 Routes from BGP Specific AS Path

Source protocol - BGP, specific AS path:
bgp-aspath <AS_Path_regexp> origin {any | IGP | EGP | incomplete}
all-ipv4-routes
metric <cost> on
off
on
network <IPv4_address/mask>
action {accept | restrict}
match-type
exact on
normal on
range between <lower_IP> and <upper_IP> on
refines on
metric <cost> on
off
on
ospf-automatic-tag {on | off}
ospf-automatic-tag-value {default | <value>}
ospf-manual-tag-value {default | <value>}
riptag {default | <value>}
Parameters
Parameter
Description
<AS_Path_regexp>>
AS Path, defined through a regular expression. An AS-Path regular expression consists of one or more term-operator pairs. Each term identifies one or more of the Autonomous Systems, and each operator specifies the matching criteria for the corresponding term.
An AS-Path Regular Expression term can be defined through single AS numbers and groups of AS numbers.
These are the AS-Path Regular Expression operators:
  • . - Matches any single character
  • \ - Matches the character right after the backslash (to enter \ in CLI, type another \ immediately after the first one)
  • ^ - Matches the characters or a null string at the beginning of an AS path
  • $ - Matches the characters or a null string at the end of an AS path
  • ? - Matches zero or one occurrence of the preceding term (to enter ? in CLI, hit Ctrl-V, then type ?)
  • * - Matches zero or more occurrences of the preceding term
  • + - Matches one or more occurrences of the preceding term
  • | - Matches one of the terms on either side of the "|" character
  • _ - Matches a non-alphanumeric character (",", "{", "}", "^", "$") or a whitespace
  • [] - Matches a term in a set of terms (separated by whitespaces) or a range of terms (separated by a hyphen)
  • () - Matches a group of terms as a single term
  • {m,n} - Matches at least m and at most n repetitions of the preceding term
  • {m} - Matches exactly m repetitions of the preceding term
  • {m,} - Matches m or more repetitions of the preceding term
origin {any | IGP | EGP | incomplete}
The origin of the route:
  • any - Any origin - IGP or EGP
  • IGP - The route was learned from an interior routing protocol (IGP), and the AS-Path information is probably complete
  • EGP - The route was learned from an exterior routing protocol (EGP) that does not support AS-Path, and the AS-Path information is probably incomplete
  • incomplete - The AS-Path information is incomplete
Routes from IGPs are preferred over routes from EGPs, and routes from EGPs are preferred over routes with incomplete AS paths.
all-ipv4-routes {metric <cost> on | on | off}
Redistribute all the BGP routes that match this BGP AS Path. The options for redistribution of all routes are:
  • metric <cost> on - Assign a cost to the redistributed routes and turn the redistribution on
  • on - Turn the redistribution on
  • off - Turn the redistribution off
Make sure to assign a value that is in a valid for the destination protocol range:
  • RIP - 1-16
  • OSPFv2 - 1-16777215
  • Note - Route cost assignment is mandatory when configuring redistribution into RIP.
network <IPv4_address/mask> {action <action> | match-type <precision> on | metric <cost> on | on | off}
Redistribute the BGP routes to the specified network that match this BGP AS Path, unless a more specific route redistribution rule exists.
Specify an <action> to accept or reject the network routes:
  • accept - Redistribute the routes
  • restrict - Do not redistribute the routes
Specify the <precision> with which the routes are matched:
  • exact - Matches only routes to the network
  • normal - Matches routes within the network, including the network route itself (default)
  • range - Matches routes that fall within the specified range in the network (the lower limit for the mask length must not be lower than the network mask length)
  • refines - Matches routes within the network, not including the network route itself
Assign a cost to redistributed routes - <cost>. Make sure to assign a value that is in a valid for the destination protocol range:
  • RIP - 1-16
  • OSPFv2 - 1-16777215
  • Note - Route cost assignment is mandatory when configuring redistribution into RIP.
ospf-automatic-tag {on | off}
Generate tags for external OSPF routes, based on the BGP AS (optional):
  • on - Turn the tag generation on
  • off - Turn the tag generation off
ospf-automatic-tag-value {default | <value>}
Assign a specific value to the automatic tag for the external OSPF routes (optional). Valid values are 1 through 4095.
ospf-manual-tag-value {default | <value>
Assign a tag value for the external OSPF routes (optional). This tag overrides all automatic tag configurations. Valid tag values are 1 through 2147483647.
riptag <value>
Assign a tag value to a BGP route redistributed into RIP. Valid tag values are 1 through 65535.
Examples:
  • Redistribute all IPv4 routes that are learned from BGP AS 100 into RIP, and assign the RIP tag value of 99 to them:
    set route-redistribution to rip from bgp-aspath ^100_ origin any riptag 99
  • Redistribute routes for network 192.168.0.0/16 that are originated in BGP AS 100 and learned through any interior routing protocol, into RIP, and assign the cost of 10 to them:
    set route-redistribution to rip from bgp-aspath _100$ origin IGP network 192.168.0.0/16 metric 10 on

Redistributing IPv4 Routes to OSPFv2

Destination protocol - OSPFv2:
ospf2
Parameters
There are no protocol options for redistribution into OSPFv2.
Example:
Redistribute all routes from the interface eth0 into OSPFv2, and assign the metric of 50 to them:
set route-redistribution to ospf2 from interface eth0 metric 50 on

Redistributing IPv4 Routes from OSPFv2

Source protocol - OSPFv2:
ospf2
all
metric <cost> on
off
on
network <IPv4_address/mask>
action {accept | restrict}
match-type
exact on
normal on
range between <lower_IP> and <upper_IP> on
refines on
metric <cost> on
off
on
Parameters
Parameter
Description
all {metric <cost> on | on | off}
Redistribute all the OSPFv2 routes. The options for redistribution of all routes are:
  • metric <cost> on - Assign a cost to the redistributed routes and turn the redistribution on
  • on - Turn the redistribution on
  • off - Turn the redistribution off
Make sure to assign a route redistribution cost that is in a valid for the destination protocol range:
  • RIP - 1-16
  • BGP - 1-4294967295
Note - Route cost assignment is mandatory when configuring redistribution into RIP.
network <IPv4_address/mask> {action <action> | match-type <precision> on | metric <cost> on | on | off}
Redistribute the OSPFv2 routes to the specified network, unless a more specific route redistribution rule exists.
Specify an <action> to accept or reject the network routes:
  • accept - Redistribute the routes
  • restrict - Do not redistribute the routes
Specify the <precision> with which the routes are matched:
  • exact - Matches only routes to the network
  • normal - Matches routes within the network, including the network route itself (default)
  • range - Matches routes that fall within the specified range in the network (the lower limit for the mask length must not be lower than the network mask length)
  • refines - Matches routes within the network, not including the network route itself
Assign a cost to redistributed routes - <cost>. Make sure to assign a value that is in a valid for the destination protocol range:
  • RIP - 1-16
  • BGP - 1-4294967295
Note - Route cost assignment is mandatory when configuring redistribution into RIP.
Example:
Redistribute all routes for the network 192.168.0.0/16 from OSPF into RIP, and assign the cost of 2 to them:
set route-redistribution to rip from ospf2 network 192.168.0.0/16 metric 2 on

Redistributing IPv4 Routes from OSPFv2 ASE

Source protocol - OSPFv2 Autonomous System External:
ospf2ase
all
metric <cost> on
off
on
network <IPv4_address/mask>
action {accept | restrict}
match-type
exact on
normal on
range between <lower_IP> and <upper_IP> on
refines on
metric <cost> on
off
on
riptag {default | <value>}
Parameters
Parameter
Description
all {metric <cost> on | on | off}
Redistribute all the OSPFv2 External routes. The options for redistribution of all routes are:
  • metric <cost> on - Assign a cost to the redistributed routes and turn the redistribution on
  • on - Turn the redistribution on
  • off - Turn the redistribution off
Make sure to assign a value that is in a valid for the destination protocol range:
  • RIP - 1-16
  • BGP - 1-4294967295
Note - Route cost assignment is mandatory when configuring redistribution into RIP.
network <IPv4_address/mask> {action <action> | match-type <precision> on | metric <cost> on | on | off}
Redistribute the OSPFv2 External routes to the specified network, unless a more specific route redistribution rule exists.
Specify an <action> to accept or reject the network routes:
  • accept - Redistribute the routes
  • restrict - Do not redistribute the routes
Specify the <precision> with which the routes are matched:
  • exact - Matches only routes to the network
  • normal - Matches routes within the network, including the network route itself (default)
  • range - Matches routes that fall within the specified range in the network (the lower limit for the mask length must not be lower than the network mask length)
  • refines - Matches routes within the network, not including the network route itself
Assign a cost to redistributed routes - <cost>. Make sure to assign a value that is in a valid for the destination protocol range:
  • RIP - 1-16
  • BGP - 1-4294967295
Note - Route cost assignment is mandatory when configuring redistribution into RIP.
riptag <value>
Assign a tag value to an OSPFv2 External route redistributed into RIP. Valid tag values are 1 through 65535.
Examples:
  • Redistribute all OSPF external routes into RIP, and assign the cost of 2 to them:
    set route-redistribution to rip from ospf2ase all metric 2 on
  • Redistribute all OSPF external routes into RIP, and assign the RIP tag value of 20 to them:
    set route-redistribution to rip from ospf2ase riptag 20

Redistributing IPv4 Routes to RIP

Destination protocol - RIP:
rip
Parameters
There are no protocol options for redistribution into RIP.
Example:
Redistribute all external OSPFv2 routes for the network 192.168.0.0/16 into RIP, and assign the metric of 3 to them:
set route-redistribution to rip from ospf2ase network 192.168.0.0/16 metric 3 on

Redistributing IPv4 Routes from RIP

Source protocol - RIP:
rip
all
metric <cost> on
off
on
network <IPv4_address/mask>
action {accept | restrict}
match-type
exact on
normal on
range between <lower_IP> and <upper_IP> on
refines on
metric <cost> on
off
on
Parameters
Parameter
Description
all {metric <cost> on | on | off}
Redistribute all the RIP routes. The options for redistribution of all routes are:
  • metric <cost> on - Assign a cost to the redistributed routes and turn the redistribution on
  • on - Turn the redistribution on
  • off - Turn the redistribution off
Make sure to assign a value that is in a valid for the destination protocol range:
  • OSPFv2 - 1-16777215
  • BGP - 1-4294967295
network <IPv4_address/mask> {action <action> | match-type <precision> on | metric <cost> on | on | off}
Redistribute the RIP routes to the specified network, unless a more specific route redistribution rule exists.
Specify an <action> to accept or reject the network routes:
  • accept - Redistribute the routes
  • restrict - Do not redistribute the routes
Specify the <precision> with which the routes are matched:
  • exact - Matches only routes to the network
  • normal - Matches routes within the network, including the network route itself (default)
  • range - Matches routes that fall within the specified range in the network (the lower limit for the mask length must not be lower than the network mask length)
  • refines - Matches routes within the network, not including the network route itself
Assign a cost to redistributed routes - <cost>. Make sure to assign a value that is in a valid for the destination protocol range:
  • OSPFv2 - 1-16777215
  • BGP - 1-4294967295
Example:
Redistribute all RIP routes for the network 192.168.0.0/16 that fall in the range between 192.168.0.0/18 and 192.168.0.0/24 into OSPF (valid for OSPFv2 only):
set route-redistribution to ospf2 from rip network 192.168.0.0/16 match-type range between 18 and 24 on

Redistributing IPv4 Routes from Default Route

Source protocol - default route:
The destination protocol must be BGP.
default-origin all-ipv4-routes {metric <cost> on | off}
Parameters
Parameter
Description
all-ipv4-routes {metric <cost> on | on | off}
Redistribute the default route. The options for redistribution of the default route are:
  • metric <cost> on - Assign a cost in the range of 1-4294967295 to the redistributed default route and turn the redistribution on
  • on - Turn the redistribution on
  • off - Turn the redistribution off
Example:
Redistribute all IPv4 default routes into BGP AS 100, and assign the cost of 10 to them.
set route-redistribution to bgp-as 100 from default-origin all-ipv4-routes metric 10 on

Redistributing IPv4 Routes from Static Routes

Source - static routes:
static-route {all | default}
metric <cost> on
off
on
Parameters
Parameter
Description
static {all | default}
IPv4 static routes to redistribute into the destination routing protocol. Valid options are:
  • default - Default static route
  • all - All static routes
metric <cost> on
Assign a cost to redistributed routes - <cost>. Make sure to assign a value that is in a valid for the destination protocol range:
  • RIP - 1-16
  • OSPFv2 - 1-16777215
  • BGP - 1-4294967295
Note - Route cost assignment is mandatory when configuring redistribution into RIP.
on
Turn the redistribution on
off
Turn the redistribution off
Example:
Redistribute all IPv4 static routes into BGP AS 100, and assign the cost of 1 to them.
set route-redistribution to bgp-as 100 from static-route all metric 1 on

Redistributing IPv4 Routes from Specific Interface

Source - specific interface:
interface {all | <interface1> | <interface2> | <interfaceN>}
metric <cost> on
off
on
Parameters
Parameter
Description
{all | <interface1> | <interface2> | <interfaceN>} {metric <cost> on | on | off}
Redistribute routes from the specified interfaces. The interface options are:
  • all - all interfaces
  • <interface#> - specific interface
The options for redistribution are:
  • metric <cost> on - Assign a cost to the redistributed routes and turn the redistribution on
  • on - Turn the redistribution on
  • off - Turn the redistribution off
Make sure to assign a route redistribution cost that is in a valid for the destination protocol range:
  • RIP - 1-16
  • OSPFv2 - 1-16777215
  • BGP - 1-4294967295
Example:
Redistribute all IPv4 routes from the interface eth2 into OSPFv2:
set route-redistribution to ospf2 from interface eth2 on

Redistributing IPv4 Routes from Aggregate

Source - aggregate routes:
aggregate {all-ipv4-routes | <IPv4_address/mask>}
metric <cost> on
off
on
Parameters
Parameter
Description
aggregate {all-ipv4-routes | <IPv4_address/mask>}
IPv4 aggregate routes to redistribute into the destination routing protocol. Valid options are:
  • <IPv4_address/mask> - Aggregate routes to the specified network
  • all-ipv4-routes - All aggregate routes
metric <cost> on
The cost of the redistributed routes in the destination routing protocol:
  • RIP - a number in the range 1-16
  • OSPFv2 - a number in the range 1-16777215
  • BGP - a number in the range 1-4294967295
Note - this parameter is mandatory when configuring redistribution into RIP.
on
Turn the redistribution on
off
Turn the redistribution off
Example:
Redistribute aggregate routes for the network 1.2.0.0/16 into RIP, and assign the cost of 2 to them:
set route-redistribution to rip from aggregate 1.2.0.0/16 metric 2 on

Redistributing IPv6 Routes

To configure IPv6 route redistribution:
set ipv6 route-redistribution to <destination_protocol> {from <source protocol> <source protocol parameters> | off}
These are the destination protocols:
  • OSPFv3
  • RIPng
Each destination protocol has a set of destination protocol parameters.
These are the source protocols:
  • BGP
  • OSPFv3
  • OSPFv3 External
  • RIPng
You can also redistribute:
  • Routes from specific interfaces
  • Static routes

Redistributing IPv6 Routes from OSPFv3

Source protocol - OSPFv3:
ospf3
all {metric <cost> on
off
on
network <IPv6_address/mask>
action {accept | restrict}
match-type
exact on
normal on
range between <lower_IP> and <upper_IP> on
refines on
metric <cost> on
off
on
Parameters
Parameter
Description
all {metric <cost> on | on | off}
Redistribute all the OSPFv3 routes. The options for redistribution of all routes are:
  • metric <cost> on - Assign a cost in the range of 1-16 to the redistributed routes and turn the redistribution on
  • on - Turn the redistribution on
  • off - Turn the redistribution off
Note - Route cost assignment is mandatory when configuring redistribution into RIP.
network <IPv6_address/mask> {action <action> | match-type <precision> on | metric <cost> on | on | off}
Redistribute the OSPFv3 routes to the specified network, unless a more specific route redistribution rule exists.
Specify an <action> to accept or reject the network routes:
  • accept - Redistribute the routes
  • restrict - Do not redistribute the routes
Specify the <precision> with which the routes are matched:
  • exact - Matches only routes to the network
  • normal - Matches routes within the network, including the network route itself (default)
  • refines - Matches routes within the network, not including the network route itself
Assign a cost in the range of 1-16 to the redistributed routes.
Note - Route cost assignment is mandatory when configuring redistribution into RIP.
Example:
Redistribute all routes for the network fd14:8502:5b14:456a::/64 from OSPFv3 into RIPng, and assign the cost of 999 to them:
set ipv6 route-redistribution to ripng from ospf3 network fd14:8502:5b14:456a::/64 metric 999 on

Redistributing IPv6 Routes from OSPFv3 ASE

Source protocol - OSPFv3 Autonomous System External:
ospf3ase
all
metric <cost> on
off
on
network <IPv6_address/mask>
action {accept | restrict}
match-type
exact on
normal on
range between <lower_IP> and <upper_IP> on
refines on
metric <cost> on
off
on
Parameters
Parameter
Description
all {metric <cost> on | on | off}
Redistribute all the OSPFv3 External routes. The options for redistribution of all routes are:
  • metric <cost> on - Assign a cost in the range of 1-16 to the redistributed routes and turn the redistribution on
  • on - Turn the redistribution on
  • off - Turn the redistribution off
Note - Route cost assignment is mandatory when configuring redistribution into RIP.
network <IPv6_address/mask> {action <action> | match-type <precision> on | metric <cost> on | on | off}
Redistribute the OSPFv3 External routes to the specified network, unless a more specific route redistribution rule exists.
Specify an <action> to accept or reject the network routes:
  • accept - Redistribute the routes
  • restrict - Do not redistribute the routes
Specify the <precision> with which the routes are matched:
  • exact - Matches only routes to the network
  • normal - Matches routes within the network, including the network route itself (default)
  • refines - Matches routes within the network, not including the network route itself
Assign a cost in the range of 1-16 to the redistributed routes.
Note - Route cost assignment is mandatory when configuring redistribution into RIP.
Examples:
  • Redistribute all OSPFv3 External routes into RIPng, and assign the cost of 22 to them:
    set ipv6 route-redistribution to ripng from ospf3ase all metric 22 on
  • Do not redistribute routes for the network fd14:8502:5b14:456a::/64 from OSPFv3 External into RIPng:
    set ipv6 route-redistribution to ripng from ospf3ase network fd14:8502:5b14:456a::/64 action restrict

Redistributing IPv6 Routes from RIPng

Source protocol - RIPng:
rip
all
metric <cost> on
off
on
network <IPv6_address/mask>
action {accept | restrict}
match-type
exact on
normal on
range between <lower_IP> and <upper_IP> on
refines on
metric <cost> on
off
on
Parameters
Parameter
Description
all {metric <cost> on | on | off}
Redistribute all the RIPng routes. The options for redistribution of all routes are:
  • metric <cost> on - Assign a cost in the range of 1-16777215 to the redistributed routes and turn the redistribution on
  • on - Turn the redistribution on
  • off - Turn the redistribution off
network <IPv6_address/mask> {action <action> | match-type <precision> on | metric <cost> on | on | off}
Redistribute the RIPng routes to the specified network, unless a more specific route redistribution rule exists.
Specify an <action> to accept or reject the network routes:
  • accept - Redistribute the routes
  • restrict - Do not redistribute the routes
Specify the <precision> with which the routes are matched:
  • exact - Matches only routes to the network
  • normal - Matches routes within the network, including the network route itself (default)
  • refines - Matches routes within the network, not including the network route itself
Assign a cost in the range of 1-16777215 to the redistributed routes.
Example:
Redistribute all RIPng routes for the network fd14:8502:5b14:456a::/64, including the routes for the addresses within the network into OSPFv3:
set ipv6 route-redistribution to ospf3 from rip network fd14:8502:5b14:456a::/64 match-type normal on

Redistributing IPv6 Routes from Static Routes

Source - static routes:
static-route {all | default}
metric <cost> on
off
on
Parameters
Parameter
Description
static-route {all | default}
IPv6 static routes to redistribute into the destination routing protocol. Valid options are:
  • default - Default static route
  • all - All static routes
metric <cost> on
Assign a cost to redistributed routes - <cost>. Make sure to assign a value that is in a valid for the destination protocol range:
  • RIPng - 1-16
  • OSPFv3 - 1-16777215
Note - Route cost assignment is mandatory when configuring redistribution into RIP.
Example:
Redistribute the default IPv6 static route into OSPFv3, and assign the cost of 15000 to it:
set route-redistribution to ospf3 from static-route default metric 15000 on

Redistributing IPv6 Routes from Specific Interface

Source - specific interface:
interface {all | <interface1> | <interface2> | <interfaceN>}
metric <cost> on
off
on
Parameters
Parameter
Description
{all | <interface1> | <interface2> | <interfaceN>} {metric <cost> on | on | off}
Redistribute routes from the specified interfaces. The interface options are:
  • all - all interfaces
  • <interface#> - specific interface
The options for redistribution are:
  • metric <cost> on - Assign a cost to the redistributed routes and turn the redistribution on
  • on - Turn the redistribution on
  • off - Turn the redistribution off
Make sure to assign a route redistribution cost that is in a valid for the destination protocol range:
  • RIPng - 1-16
  • OSPFv3 - 1-16777215
Example:
Redistribute all IPv6 routes from the interface eth0 into OSPFv3 and assign the cost of 10 to them:
set ipv6 route-redistribution to ospf3 from interface eth0 metric 10 on

Route Redistribution commands summary

SET commands:
Note - Enter set route-redistribution [Esc][Esc].
set route-redistribution to bgp-as VALUE community-append VALUE as VALUE off
set route-redistribution to bgp-as VALUE community-append VALUE as VALUE on
set route-redistribution to bgp-as VALUE community-match VALUE as VALUE off
set route-redistribution to bgp-as VALUE community-match VALUE as VALUE on
set route-redistribution to bgp-as VALUE from aggregate VALUE [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from aggregate VALUE off
set route-redistribution to bgp-as VALUE from bgp-as-number VALUE all-ipv4-routes [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from bgp-as-number VALUE all-ipv4-routes off
set route-redistribution to bgp-as VALUE from bgp-as-number VALUE all-ipv6-routes [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from bgp-as-number VALUE all-ipv6-routes off
set route-redistribution to bgp-as VALUE from bgp-as-number VALUE network VALUE [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from bgp-as-number VALUE network VALUE action VALUE
set route-redistribution to bgp-as VALUE from bgp-as-number VALUE network VALUE match-type exact on
set route-redistribution to bgp-as VALUE from bgp-as-number VALUE network VALUE match-type normal on
set route-redistribution to bgp-as VALUE from bgp-as-number VALUE network VALUE match-type range between VALUE and VALUE on
set route-redistribution to bgp-as VALUE from bgp-as-number VALUE network VALUE match-type refines on
set route-redistribution to bgp-as VALUE from bgp-as-number VALUE network VALUE off
set route-redistribution to bgp-as VALUE from bgp-as-path VALUE origin VALUE all-ipv4-routes [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from bgp-as-path VALUE origin VALUE all-ipv4-routes off
set route-redistribution to bgp-as VALUE from bgp-as-path VALUE origin VALUE all-ipv6-routes [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from bgp-as-path VALUE origin VALUE all-ipv6-routes off
set route-redistribution to bgp-as VALUE from bgp-as-path VALUE origin VALUE network VALUE [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from bgp-as-path VALUE origin VALUE network VALUE action VALUE
set route-redistribution to bgp-as VALUE from bgp-as-path VALUE origin VALUE network VALUE match-type exact on
set route-redistribution to bgp-as VALUE from bgp-as-path VALUE origin VALUE network VALUE match-type normal on
set route-redistribution to bgp-as VALUE from bgp-as-path VALUE origin VALUE network VALUE match-type range between VALUE and VALUE on
set route-redistribution to bgp-as VALUE from bgp-as-path VALUE origin VALUE network VALUE match-type refines on
set route-redistribution to bgp-as VALUE from bgp-as-path VALUE origin VALUE network VALUE off
set route-redistribution to bgp-as VALUE from default-origin all-ipv4-routes [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from default-origin all-ipv4-routes off
set route-redistribution to bgp-as VALUE from interface VALUE [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from interface VALUE off
set route-redistribution to bgp-as VALUE from kernel all-ipv4-routes [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from kernel all-ipv4-routes off
set route-redistribution to bgp-as VALUE from kernel all-ipv6-routes [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from kernel all-ipv6-routes off
set route-redistribution to bgp-as VALUE from kernel network VALUE [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from kernel network VALUE action VALUE
set route-redistribution to bgp-as VALUE from kernel network VALUE match-type exact on
set route-redistribution to bgp-as VALUE from kernel network VALUE match-type normal on
set route-redistribution to bgp-as VALUE from kernel network VALUE match-type range between VALUE and VALUE on
set route-redistribution to bgp-as VALUE from kernel network VALUE match-type refines on
set route-redistribution to bgp-as VALUE from kernel network VALUE off
set route-redistribution to bgp-as VALUE from ospf2 [ instance VALUE ] all-ipv4-routes [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from ospf2 [ instance VALUE ] all-ipv4-routes off
set route-redistribution to bgp-as VALUE from ospf2 [ instance VALUE ] network VALUE [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from ospf2 [ instance VALUE ] network VALUE action VALUE
set route-redistribution to bgp-as VALUE from ospf2 [ instance VALUE ] network VALUE match-type exact on
set route-redistribution to bgp-as VALUE from ospf2 [ instance VALUE ] network VALUE match-type normal on
set route-redistribution to bgp-as VALUE from ospf2 [ instance VALUE ] network VALUE match-type range between VALUE and VALUE on
set route-redistribution to bgp-as VALUE from ospf2 [ instance VALUE ] network VALUE match-type refines on
set route-redistribution to bgp-as VALUE from ospf2 [ instance VALUE ] network VALUE off
set route-redistribution to bgp-as VALUE from ospf2ase [ instance VALUE ] all-ipv4-routes [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from ospf2ase [ instance VALUE ] all-ipv4-routes off
set route-redistribution to bgp-as VALUE from ospf2ase [ instance VALUE ] network VALUE [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from ospf2ase [ instance VALUE ] network VALUE action VALUE
set route-redistribution to bgp-as VALUE from ospf2ase [ instance VALUE ] network VALUE match-type exact on
set route-redistribution to bgp-as VALUE from ospf2ase [ instance VALUE ] network VALUE match-type normal on
set route-redistribution to bgp-as VALUE from ospf2ase [ instance VALUE ] network VALUE match-type range between VALUE and VALUE on
set route-redistribution to bgp-as VALUE from ospf2ase [ instance VALUE ] network VALUE match-type refines on
set route-redistribution to bgp-as VALUE from ospf2ase [ instance VALUE ] network VALUE off
set route-redistribution to bgp-as VALUE from ospf3 [ instance VALUE ] all-ipv6-routes [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from ospf3 [ instance VALUE ] all-ipv6-routes off
set route-redistribution to bgp-as VALUE from ospf3 [ instance VALUE ] network VALUE [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from ospf3 [ instance VALUE ] network VALUE action VALUE
set route-redistribution to bgp-as VALUE from ospf3 [ instance VALUE ] network VALUE match-type exact on
set route-redistribution to bgp-as VALUE from ospf3 [ instance VALUE ] network VALUE match-type normal on
set route-redistribution to bgp-as VALUE from ospf3 [ instance VALUE ] network VALUE match-type refines on
set route-redistribution to bgp-as VALUE from ospf3 [ instance VALUE ] network VALUE off
set route-redistribution to bgp-as VALUE from ospf3ase [ instance VALUE ] all-ipv6-routes [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from ospf3ase [ instance VALUE ] all-ipv6-routes off
set route-redistribution to bgp-as VALUE from ospf3ase [ instance VALUE ] network VALUE [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from ospf3ase [ instance VALUE ] network VALUE action VALUE
set route-redistribution to bgp-as VALUE from ospf3ase [ instance VALUE ] network VALUE match-type exact on
set route-redistribution to bgp-as VALUE from ospf3ase [ instance VALUE ] network VALUE match-type normal on
set route-redistribution to bgp-as VALUE from ospf3ase [ instance VALUE ] network VALUE match-type refines on
set route-redistribution to bgp-as VALUE from ospf3ase [ instance VALUE ] network VALUE off
set route-redistribution to bgp-as VALUE from rip all-ipv4-routes [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from rip all-ipv4-routes off
set route-redistribution to bgp-as VALUE from rip network VALUE [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from rip network VALUE action VALUE
set route-redistribution to bgp-as VALUE from rip network VALUE match-type exact on
set route-redistribution to bgp-as VALUE from rip network VALUE match-type normal on
set route-redistribution to bgp-as VALUE from rip network VALUE match-type range between VALUE and VALUE on
set route-redistribution to bgp-as VALUE from rip network VALUE match-type refines on
set route-redistribution to bgp-as VALUE from rip network VALUE off
set route-redistribution to bgp-as VALUE from ripng all-ipv6-routes [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from ripng all-ipv6-routes off
set route-redistribution to bgp-as VALUE from ripng network VALUE [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from ripng network VALUE action VALUE
set route-redistribution to bgp-as VALUE from ripng network VALUE match-type exact on
set route-redistribution to bgp-as VALUE from ripng network VALUE match-type normal on
set route-redistribution to bgp-as VALUE from ripng network VALUE match-type refines on
set route-redistribution to bgp-as VALUE from ripng network VALUE off
set route-redistribution to bgp-as VALUE from static-route VALUE [ metric VALUE ] on
set route-redistribution to bgp-as VALUE from static-route VALUE off
set route-redistribution to bgp-as VALUE localpref VALUE
set route-redistribution to bgp-as VALUE med VALUE
set route-redistribution to bgp-as VALUE off

set route-redistribution to ospf2 [ instance VALUE ] from aggregate VALUE [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from aggregate VALUE off
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-number VALUE all-ipv4-routes [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-number VALUE all-ipv4-routes off
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-number VALUE network VALUE [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-number VALUE network VALUE action VALUE
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-number VALUE network VALUE match-type exact on
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-number VALUE network VALUE match-type normal on
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-number VALUE network VALUE match-type range between VALUE and VALUE on
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-number VALUE network VALUE match-type refines on
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-number VALUE network VALUE off
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-number VALUE ospf-automatic-tag off
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-number VALUE ospf-automatic-tag on
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-number VALUE ospf-automatic-tag-value VALUE
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-number VALUE ospf-manual-tag-value VALUE
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-path VALUE origin VALUE all-ipv4-routes [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-path VALUE origin VALUE all-ipv4-routes off
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-path VALUE origin VALUE network VALUE [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-path VALUE origin VALUE network VALUE action VALUE
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-path VALUE origin VALUE network VALUE match-type exact on
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-path VALUE origin VALUE network VALUE match-type normal on
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-path VALUE origin VALUE network VALUE match-type range between VALUE and VALUE on
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-path VALUE origin VALUE network VALUE match-type refines on
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-path VALUE origin VALUE network VALUE off
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-path VALUE origin VALUE ospf-automatic-tag off
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-path VALUE origin VALUE ospf-automatic-tag on
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-path VALUE origin VALUE ospf-automatic-tag-value VALUE
set route-redistribution to ospf2 [ instance VALUE ] from bgp-as-path VALUE origin VALUE ospf-manual-tag-value VALUE
set route-redistribution to ospf2 [ instance VALUE ] from interface VALUE [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from interface VALUE off
set route-redistribution to ospf2 [ instance VALUE ] from kernel all-ipv4-routes [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from kernel all-ipv4-routes off
set route-redistribution to ospf2 [ instance VALUE ] from kernel network VALUE [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from kernel network VALUE action VALUE
set route-redistribution to ospf2 [ instance VALUE ] from kernel network VALUE match-type exact on
set route-redistribution to ospf2 [ instance VALUE ] from kernel network VALUE match-type normal on
set route-redistribution to ospf2 [ instance VALUE ] from kernel network VALUE match-type range between VALUE and VALUE on
set route-redistribution to ospf2 [ instance VALUE ] from kernel network VALUE match-type refines on
set route-redistribution to ospf2 [ instance VALUE ] from kernel network VALUE off
set route-redistribution to ospf2 [ instance VALUE ] from ospf2 [ instance VALUE ] all-ipv4-routes [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from ospf2 [ instance VALUE ] all-ipv4-routes off
set route-redistribution to ospf2 [ instance VALUE ] from ospf2 [ instance VALUE ] network VALUE [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from ospf2 [ instance VALUE ] network VALUE action VALUE
set route-redistribution to ospf2 [ instance VALUE ] from ospf2 [ instance VALUE ] network VALUE match-type exact on
set route-redistribution to ospf2 [ instance VALUE ] from ospf2 [ instance VALUE ] network VALUE match-type normal on
set route-redistribution to ospf2 [ instance VALUE ] from ospf2 [ instance VALUE ] network VALUE match-type range between VALUE and VALUE on
set route-redistribution to ospf2 [ instance VALUE ] from ospf2 [ instance VALUE ] network VALUE match-type refines on
set route-redistribution to ospf2 [ instance VALUE ] from ospf2 [ instance VALUE ] network VALUE off
set route-redistribution to ospf2 [ instance VALUE ] from ospf2ase [ instance VALUE ] all-ipv4-routes [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from ospf2ase [ instance VALUE ] all-ipv4-routes off
set route-redistribution to ospf2 [ instance VALUE ] from ospf2ase [ instance VALUE ] network VALUE [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from ospf2ase [ instance VALUE ] network VALUE action VALUE
set route-redistribution to ospf2 [ instance VALUE ] from ospf2ase [ instance VALUE ] network VALUE match-type exact on
set route-redistribution to ospf2 [ instance VALUE ] from ospf2ase [ instance VALUE ] network VALUE match-type normal on
set route-redistribution to ospf2 [ instance VALUE ] from ospf2ase [ instance VALUE ] network VALUE match-type range between VALUE and VALUE on
set route-redistribution to ospf2 [ instance VALUE ] from ospf2ase [ instance VALUE ] network VALUE match-type refines on
set route-redistribution to ospf2 [ instance VALUE ] from ospf2ase [ instance VALUE ] network VALUE off
set route-redistribution to ospf2 [ instance VALUE ] from rip all-ipv4-routes [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from rip all-ipv4-routes off
set route-redistribution to ospf2 [ instance VALUE ] from rip network VALUE [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from rip network VALUE action VALUE
set route-redistribution to ospf2 [ instance VALUE ] from rip network VALUE match-type exact on
set route-redistribution to ospf2 [ instance VALUE ] from rip network VALUE match-type normal on
set route-redistribution to ospf2 [ instance VALUE ] from rip network VALUE match-type range between VALUE and VALUE on
set route-redistribution to ospf2 [ instance VALUE ] from rip network VALUE match-type refines on
set route-redistribution to ospf2 [ instance VALUE ] from rip network VALUE off
set route-redistribution to ospf2 [ instance VALUE ] from static-route VALUE [ metric VALUE ] on
set route-redistribution to ospf2 [ instance VALUE ] from static-route VALUE off
set route-redistribution to ospf2 [ instance VALUE ] off
set route-redistribution to ospf2 off

set route-redistribution to rip from aggregate VALUE metric VALUE on
set route-redistribution to rip from aggregate VALUE off
set route-redistribution to rip from bgp-as-number VALUE all-ipv4-routes metric VALUE on
set route-redistribution to rip from bgp-as-number VALUE all-ipv4-routes off
set route-redistribution to rip from bgp-as-number VALUE network VALUE action VALUE
set route-redistribution to rip from bgp-as-number VALUE network VALUE match-type exact on
set route-redistribution to rip from bgp-as-number VALUE network VALUE match-type normal on
set route-redistribution to rip from bgp-as-number VALUE network VALUE match-type range between VALUE and VALUE on
set route-redistribution to rip from bgp-as-number VALUE network VALUE match-type refines on
set route-redistribution to rip from bgp-as-number VALUE network VALUE metric VALUE on
set route-redistribution to rip from bgp-as-number VALUE network VALUE off
set route-redistribution to rip from bgp-as-number VALUE riptag VALUE
set route-redistribution to rip from bgp-as-path VALUE origin VALUE all-ipv4-routes metric VALUE on
set route-redistribution to rip from bgp-as-path VALUE origin VALUE all-ipv4-routes off
set route-redistribution to rip from bgp-as-path VALUE origin VALUE network VALUE action VALUE
set route-redistribution to rip from bgp-as-path VALUE origin VALUE network VALUE match-type exact on
set route-redistribution to rip from bgp-as-path VALUE origin VALUE network VALUE match-type normal on
set route-redistribution to rip from bgp-as-path VALUE origin VALUE network VALUE match-type range between VALUE and VALUE on
set route-redistribution to rip from bgp-as-path VALUE origin VALUE network VALUE match-type refines on
set route-redistribution to rip from bgp-as-path VALUE origin VALUE network VALUE metric VALUE on
set route-redistribution to rip from bgp-as-path VALUE origin VALUE network VALUE off
set route-redistribution to rip from bgp-as-path VALUE origin VALUE riptag VALUE
set route-redistribution to rip from interface VALUE [ metric VALUE ] on
set route-redistribution to rip from interface VALUE off
set route-redistribution to rip from kernel all-ipv4-routes metric VALUE on
set route-redistribution to rip from kernel all-ipv4-routes off
set route-redistribution to rip from kernel network VALUE action VALUE
set route-redistribution to rip from kernel network VALUE match-type exact on
set route-redistribution to rip from kernel network VALUE match-type normal on
set route-redistribution to rip from kernel network VALUE match-type range between VALUE and VALUE on
set route-redistribution to rip from kernel network VALUE match-type refines on
set route-redistribution to rip from kernel network VALUE metric VALUE on
set route-redistribution to rip from kernel network VALUE off
set route-redistribution to rip from ospf2 [ instance VALUE ] all-ipv4-routes metric VALUE on
set route-redistribution to rip from ospf2 [ instance VALUE ] all-ipv4-routes off
set route-redistribution to rip from ospf2 [ instance VALUE ] network VALUE action VALUE
set route-redistribution to rip from ospf2 [ instance VALUE ] network VALUE match-type exact on
set route-redistribution to rip from ospf2 [ instance VALUE ] network VALUE match-type normal on
set route-redistribution to rip from ospf2 [ instance VALUE ] network VALUE match-type range between VALUE and VALUE on
set route-redistribution to rip from ospf2 [ instance VALUE ] network VALUE match-type refines on
set route-redistribution to rip from ospf2 [ instance VALUE ] network VALUE metric VALUE on
set route-redistribution to rip from ospf2 [ instance VALUE ] network VALUE off
set route-redistribution to rip from ospf2 [ instance VALUE ] riptag VALUE
set route-redistribution to rip from ospf2ase [ instance VALUE ] all-ipv4-routes metric VALUE on
set route-redistribution to rip from ospf2ase [ instance VALUE ] all-ipv4-routes off
set route-redistribution to rip from ospf2ase [ instance VALUE ] network VALUE action VALUE
set route-redistribution to rip from ospf2ase [ instance VALUE ] network VALUE match-type exact on
set route-redistribution to rip from ospf2ase [ instance VALUE ] network VALUE match-type normal on
set route-redistribution to rip from ospf2ase [ instance VALUE ] network VALUE match-type range between VALUE and VALUE on
set route-redistribution to rip from ospf2ase [ instance VALUE ] network VALUE match-type refines on
set route-redistribution to rip from ospf2ase [ instance VALUE ] network VALUE metric VALUE on
set route-redistribution to rip from ospf2ase [ instance VALUE ] network VALUE off
set route-redistribution to rip from ospf2ase [ instance VALUE ] riptag VALUE
set route-redistribution to rip from static-route VALUE metric VALUE on
set route-redistribution to rip from static-route VALUE off
set route-redistribution to rip off

SET commands for IPv6:
Note - Enter set ipv6 route-redistribution [Esc][Esc].
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-number VALUE all-ipv6-routes [ metric VALUE ] on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-number VALUE all-ipv6-routes off
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-number VALUE network VALUE [ metric VALUE ] on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-number VALUE network VALUE action VALUE
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-number VALUE network VALUE match-type exact on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-number VALUE network VALUE match-type normal on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-number VALUE network VALUE match-type refines on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-number VALUE network VALUE off
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-path VALUE origin VALUE all-ipv6-routes [ metric VALUE ] on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-path VALUE origin VALUE all-ipv6-routes off
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-path VALUE origin VALUE network VALUE [ metric VALUE ] on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-path VALUE origin VALUE network VALUE action VALUE
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-path VALUE origin VALUE network VALUE match-type exact on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-path VALUE origin VALUE network VALUE match-type normal on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-path VALUE origin VALUE network VALUE match-type refines on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from bgp-as-path VALUE origin VALUE network VALUE off
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from interface VALUE [ metric VALUE ] on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from interface VALUE off
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from kernel all-ipv6-routes [ metric VALUE ] on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from kernel all-ipv6-routes off
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from kernel network VALUE [ metric VALUE ] on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from kernel network VALUE action VALUE
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from kernel network VALUE match-type exact on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from kernel network VALUE match-type normal on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from kernel network VALUE match-type refines on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from kernel network VALUE off
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3 [ instance VALUE ] all-ipv6-routes [ metric VALUE ] on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3 [ instance VALUE ] all-ipv6-routes off
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3 [ instance VALUE ] network VALUE [ metric VALUE ] on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3 [ instance VALUE ] network VALUE action VALUE
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3 [ instance VALUE ] network VALUE match-type exact on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3 [ instance VALUE ] network VALUE match-type normal on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3 [ instance VALUE ] network VALUE match-type refines on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3 [ instance VALUE ] network VALUE off
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3ase [ instance VALUE ] all-ipv6-routes [ metric VALUE ] on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3ase [ instance VALUE ] all-ipv6-routes off
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3ase [ instance VALUE ] network VALUE [ metric VALUE ] on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3ase [ instance VALUE ] network VALUE action VALUE
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3ase [ instance VALUE ] network VALUE match-type exact on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3ase [ instance VALUE ] network VALUE match-type normal on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3ase [ instance VALUE ] network VALUE match-type refines on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ospf3ase [ instance VALUE ] network VALUE off
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ripng all-ipv6-routes [ metric VALUE ] on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ripng all-ipv6-routes off
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ripng network VALUE [ metric VALUE ] on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ripng network VALUE action VALUE
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ripng network VALUE match-type exact on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ripng network VALUE match-type normal on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ripng network VALUE match-type refines on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from ripng network VALUE off
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from static-route VALUE [ metric VALUE ] on
set ipv6 route-redistribution to ospf3 [ instance VALUE ] from static-route VALUE off
set ipv6 route-redistribution to ospf3 [ instance VALUE ] off
set ipv6 route-redistribution to ospf3 off

set ipv6 route-redistribution to ripng from bgp-as-number VALUE all-ipv6-routes metric VALUE on
set ipv6 route-redistribution to ripng from bgp-as-number VALUE all-ipv6-routes off
set ipv6 route-redistribution to ripng from bgp-as-number VALUE network VALUE action VALUE
set ipv6 route-redistribution to ripng from bgp-as-number VALUE network VALUE match-type exact on
set ipv6 route-redistribution to ripng from bgp-as-number VALUE network VALUE match-type normal on
set ipv6 route-redistribution to ripng from bgp-as-number VALUE network VALUE match-type refines on
set ipv6 route-redistribution to ripng from bgp-as-number VALUE network VALUE metric VALUE on
set ipv6 route-redistribution to ripng from bgp-as-number VALUE network VALUE off
set ipv6 route-redistribution to ripng from bgp-as-path VALUE origin VALUE all-ipv6-routes metric VALUE on
set ipv6 route-redistribution to ripng from bgp-as-path VALUE origin VALUE all-ipv6-routes off
set ipv6 route-redistribution to ripng from bgp-as-path VALUE origin VALUE network VALUE action VALUE
set ipv6 route-redistribution to ripng from bgp-as-path VALUE origin VALUE network VALUE match-type exact on
set ipv6 route-redistribution to ripng from bgp-as-path VALUE origin VALUE network VALUE match-type normal on
set ipv6 route-redistribution to ripng from bgp-as-path VALUE origin VALUE network VALUE match-type refines on
set ipv6 route-redistribution to ripng from bgp-as-path VALUE origin VALUE network VALUE metric VALUE on
set ipv6 route-redistribution to ripng from bgp-as-path VALUE origin VALUE network VALUE off
set ipv6 route-redistribution to ripng from interface VALUE [ metric VALUE ] on
set ipv6 route-redistribution to ripng from interface VALUE off
set ipv6 route-redistribution to ripng from kernel all-ipv6-routes metric VALUE on
set ipv6 route-redistribution to ripng from kernel all-ipv6-routes off
set ipv6 route-redistribution to ripng from kernel network VALUE action VALUE
set ipv6 route-redistribution to ripng from kernel network VALUE match-type exact on
set ipv6 route-redistribution to ripng from kernel network VALUE match-type normal on
set ipv6 route-redistribution to ripng from kernel network VALUE match-type refines on
set ipv6 route-redistribution to ripng from kernel network VALUE metric VALUE on
set ipv6 route-redistribution to ripng from kernel network VALUE off
set ipv6 route-redistribution to ripng from ospf3 [ instance VALUE ] all-ipv6-routes metric VALUE on
set ipv6 route-redistribution to ripng from ospf3 [ instance VALUE ] all-ipv6-routes off
set ipv6 route-redistribution to ripng from ospf3 [ instance VALUE ] network VALUE action VALUE
set ipv6 route-redistribution to ripng from ospf3 [ instance VALUE ] network VALUE match-type exact on
set ipv6 route-redistribution to ripng from ospf3 [ instance VALUE ] network VALUE match-type normal on
set ipv6 route-redistribution to ripng from ospf3 [ instance VALUE ] network VALUE match-type refines on
set ipv6 route-redistribution to ripng from ospf3 [ instance VALUE ] network VALUE metric VALUE on
set ipv6 route-redistribution to ripng from ospf3 [ instance VALUE ] network VALUE off
set ipv6 route-redistribution to ripng from ospf3ase [ instance VALUE ] all-ipv6-routes metric VALUE on
set ipv6 route-redistribution to ripng from ospf3ase [ instance VALUE ] all-ipv6-routes off
set ipv6 route-redistribution to ripng from ospf3ase [ instance VALUE ] network VALUE action VALUE
set ipv6 route-redistribution to ripng from ospf3ase [ instance VALUE ] network VALUE match-type exact on
set ipv6 route-redistribution to ripng from ospf3ase [ instance VALUE ] network VALUE match-type normal on
set ipv6 route-redistribution to ripng from ospf3ase [ instance VALUE ] network VALUE match-type refines on
set ipv6 route-redistribution to ripng from ospf3ase [ instance VALUE ] network VALUE metric VALUE on
set ipv6 route-redistribution to ripng from ospf3ase [ instance VALUE ] network VALUE off
set ipv6 route-redistribution to ripng from static-route VALUE metric VALUE on
set ipv6 route-redistribution to ripng from static-route VALUE off
set ipv6 route-redistribution to ripng off