On Mon, Jul 12, 2010 at 13:41, Quentin Huberty <[email protected]> wrote: > Hi Marko, > > How are you ? > > I have a little question about running OSPF over PPPoE. > > Is it possible to run OSPF over PPPoE when IPCP address negociated is in use > ? > > I receive this output when I make some debug : > > area 0.0.0.0 : src not on the same network
It should be possible, let's take a look. I will configure R1 and R2 for PPPoE, with R2 being the server, assigining IP address to R1. Configurations: R1: ---------------------------------------------------------------------- interface Dialer1 encapsulation ppp ip address negotiated dialer pool 1 ip mtu 1492 no shutdown ! interface FastEthernet0/0 no ip address pppoe-client dial-pool-number 1 no shutdown ! router ospf 1 network 0.0.0.0 0.0.0.0 area 0 ! R2: ---------------------------------------------------------------------- bba-group pppoe global virtual-template 1 ! ip local pool R1 12.12.12.101 12.12.12.255 ! interface virtual-template1 encapsulation ppp ip address 12.12.12.2 255.255.255.0 peer default ip address pool R1 ! interface GigabitEthernet0/0 no ip address pppoe enable group global no shutdown ! router ospf 1 network 12.12.12.0 0.0.0.255 area 0 ! Verification: ---------------------------------------------------------------------- R1#show ip ospf neighbor Neighbor ID Pri State Dead Time Address Interface 12.12.12.2 0 FULL/ - 00:00:34 12.12.12.2 Dialer1 ------------------------------8<------------------------------ It looks like it works :-) -- Marko Milivojevic - CCIE #18427 Senior Technical Instructor - IPexpert YES! We include 400 hours of REAL rack time with our Blended Learning Solution! Mailto: [email protected] Telephone: +1.810.326.1444 Fax: +1.810.454.0130 Web: http://www.ipexpert.com/ _______________________________________________ For more information regarding industry leading CCIE Lab training, please visit www.ipexpert.com
