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.

protocols ospfv3 process <process-id> address-family ipv4 unicast redistribute

Configures redistribute information from another routing protocol.

set protocols ospfv3 process process-id address-family ipv4 unicast redistribute [ bgp | connected | kernel | rip | static ] [ metric metric | metric-type type route-map map-name ]
delete protocols ospfv3 process process-id address-family ipv4 unicast redistribute [ bgp | connected | kernel | rip | static ] [ metric metric | metric-type type route-map map-name ]
show protocols ospfv3 process process-id address-family ipv4 unicast redistribute [ bgp | connected | kernel | rip | static ] [ metric metric | metric-type type route-map map-name ]

By default, only the IPv6 unicast address family is supported. Support for IPv4 unicast may be configured using this command.

process-id
An OSPFv3 process ID. Enter alphanumeric characters.
bgp
Specifies BGP routes.
connected
Specifies connected routes.
kernel
Specifies kernel routes.
static
Specifies static routes.
rip
Specifies Routing Information Protocol (RIP) routes.
metric
The OSPFv3 address-family metric to be applied to the default route. The range is 0 to 16777214. The default is 1.
type
The OSPFv3 metric type for address-family default routes. Supported values are as follows:

1: Type 1 external route.

2: Type 2 external route.

The default is 2.

map-name
A route map for which routes are redistributed.

Configuration mode

protocols {
	ospfv3 {
		process process-id {
			address-family {
						ipv4 unicast {
						redistribute {
								bgp {
									metric metric
									metric-type type
									route-map map-name
								} 
								connected {
									metric metric
									metric-type type
									route-map map-name
								}
								kernel {
									metric metric
									metric-type type
									route-map map-name
								}
								rip {
									metric metric
									metric-type type
									route-map map-name
								}
								static{
									metric metric
									metric-type type
									route-map map-name
								}
						}
					}
			}
	}
}

Use this command to import IPv4 routes from other routing protocols, or from another OSPFv3 instance, into OSPFv3 AS-external-LSAs.

Note: This command applies to IPv4 unicast routes only.

OSPFv3 advertises routes learned from other routing protocols or from other OSPFv3 instances, including static or connected routes. Each injected prefix is put into the AS-external-LSA with a specified metric and metric-type.

Use the set form of this command to import IPv4 routes from other routing protocols or from another OSPFv3 instance, into OSPFv3 AS-external-LSAs.

Use the delete form of this command to restore to the default parameter values.

Use the show form of this command to display redistribute information.