Concept Guide

Table Of Contents
metric value: The value is from 0 to 16777215. The default is 0.
route-map map-name: Specify the name of a configured route map to be consulted before adding the ISIS route.
Include specific OSPF routes into BGP.
ROUTER BGP or CONF-ROUTER_BGPv6_ AF mode
redistribute ospf process-id [match external {1 | 2} | match internal] [metric-type
{external | internal}] [route-map map-name]
Configure the following parameters:
ospf: Indicates that you are redistributing OSPF routes in BGP.
process-id: the range is from 1 to 65535.
match internal, external1, and external2: Specify the type of OSPF routes to be redistributed into BGP.
metric-type: external or internal.
route-map map-name: Specify the name of a configured route map to be consulted before adding the OSPF route.
DellEMC# configure terminal
DellEMC(conf)# ip route 10.0.0.0 255.0.0.0 null 0
DellEMC(conf)# router bgp 400
DellEMC(conf-router_bgp_af)# redistribute static
DellEMC(conf-router_bgp_af)# exit
The above configuration example show how to create a static route and redistribute the static routes into the BGP routing
table.
Redistributing iBGP Routes into IGP
Dell EMC Networking OS supports redistributing iBGP routes into an Internal Gateway Protocol (IGP), such as, OSPF and IS-IS.
NOTE:
When you enable redistribution of iBGP routes into an IGP, ensure that you use route maps to control what
prefixes are redistributed. Redistributing all iBGP routes can create a loop in the network. After configuring the bgp
redistribute-internal command, use the clear ip BGP * command to clear all BGP sessions.
Redistribute iBGP routes.
ROUTER BGP, ROUTER BGP-address-family, ROUTER BGP-address-family-IPv6, IPv4 VRF mode, and IPv6 Unicast VRF mode
bgp redistribute-internal
The following is an example configuration of redistributing iBGP routes into OSPF with the default VRF:
!
router ospf 100
router-id 1.1.1.1
network 10.10.10.0/24 area 0
redistribute bgp 65535 route-map bgp2ospf4
!
ipv6 router ospf 1
router-id 1.1.1.1
redistribute bgp 65535 route-map bgp2ospf6
!
router bgp 65535
maximum-paths ibgp 8
bgp redistribute-internal
neighbor 20.20.20.2 remote-as 65535
neighbor 20.20.20.2 no shutdown
neighbor 20.20.20.3 remote-as 65535
neighbor 20.20.20.3 no shutdown
neighbor 20::2 remote-as 65535
neighbor 20::2 no shutdown
neighbor 20::3 remote-as 65535
neighbor 20::3 no shutdown
!
address-family ipv6 unicast
bgp redistribute-internal
Border Gateway Protocol (BGP)
211