Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MPLS-vpn HELP

Status
Not open for further replies.

ogulcan

IS-IT--Management
Jan 2, 2004
17
0
0
TR
Dear colleques,
is there any way to make an mpls vpn "communucate " with a non mpls segment on the same wan eg e segment connectedto a different interface with no "vrf forwarding " configuration.

Because during the migration i dont want non mpls eigrp networks to disconnect communication-wise from mpls networks which i will have complated for migration.
until i finish the whole migration everyone must speak to each other.
please help...
thanks in advance.

ip cef
no ip domain lookup
ip vrf testvrf
rd 800:100
route-target export 800:1000
route-target import 800:1000
!
interface Serial1/0
description todtheleftbranch
ip address 10.240.1.2 255.255.255.0
clockrate 64000
!
interface Serial3/1
description notconnectedanywhere
ip vrf forwarding testvrf
ip address 10.240.3.2 255.255.255.0


router eigrp 201
network 10.0.0.0
auto-summary
!
address-family ipv4 vrf testvrf
redistribute bgp 800
network 10.240.0.0 0.0.255.255
default-metric 10000 1 255 1 1500
auto-summary
autonomous-system 201
exit-address-family
!
router bgp 800
no synchronization
no bgp fast-external-fallover
bgp always-compare-med
bgp log-neighbor-changes
network 10.190.10.0
network 10.240.0.0
redistribute static
neighbor 10.190.10.2 remote-as 800
neighbor 10.190.10.2 update-source Loopback3
neighbor 10.190.10.2 soft-reconfiguration inbound
no auto-summary
!
address-family vpnv4
neighbor 10.190.10.2 activate
neighbor 10.190.10.2 send-community extended
exit-address-family
!
address-family ipv4 vrf testvrf
redistribute connected
redistribute static
redistribute eigrp 201
default-information originate
no auto-summary
no synchronization
exit-address-family
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top