cancel
Showing results for 
Search instead for 
Did you mean: 
cancel

Who Me Too'd this topic

PPPoE client on subinterface

benherman77
Level 1
Level 1

I had a config working great on my 2811, so I thought it should work on a 2821 . Below is the config 

Router#sh run
Building configuration...

Current configuration : 1858 bytes
!
! Last configuration change at 04:51:34 UTC Mon Sep 25 2017
!
version 15.1
service timestamps debug datetime msec
service timestamps log datetime msec
service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
!
enable secret 5 xxxxxxxxxxxxxxxxxxxxxxxxxx
!
no aaa new-model
memory-size iomem 25
!
dot11 syslog
ip source-route
!
!
ip cef
!
ip dhcp excluded-address 192.172.0.1
ip dhcp excluded-address 192.172.0.10
!
ip dhcp pool Lab-Network
network 192.172.0.0 255.255.255.224
default-router 192.172.0.1
dns-server 8.8.8.8
domain-name Herman

!
!
ip dhcp update dns
multilink bundle-name authenticated
!
vpdn enable
!
!
crypto pki token default removal timeout 0
!
!
!
!
license udi pid CISCO2811 sn xxxxxxxxxxxxxxxx
!
!
!
!
!
interface FastEthernet0/0
description WAN Interface
no ip address
duplex full
speed 100
no cdp enable
!
interface FastEthernet0/0.1
encapsulation dot1Q 201
pppoe enable group global
pppoe-client dial-pool-number 1
!
interface FastEthernet0/1
description LAN Interface
ip address 192.172.0.1 255.255.255.224
ip nat inside
ip virtual-reassembly in
duplex full
speed 100
no cdp enable
!
interface Dialer1
description WAN Dialer
ip address negotiated
ip mtu 1492
ip nat outside
ip virtual-reassembly in
encapsulation ppp
ip tcp adjust-mss 1452
dialer pool 1
dialer-group 1
ppp chap hostname xxxxxxxxxxxxxxxxxxxxxx
ppp chap password 7 xxxxxxxxxxxxxxxxxxx
ppp ipcp dns request accept
ppp ipcp address accept
no cdp enable
!
ip forward-protocol nd
!
no ip http server
no ip http secure-server
!
ip nat inside source list 10 interface Dialer1 overload
ip route 0.0.0.0 0.0.0.0 Dialer1
!
access-list 10 permit 192.172.0.0 0.0.0.255
!
!
control-plane
!
!
!
line con 0
line aux 0
line 1/0 1/31
line vty 0 4
login
transport input all
!
scheduler allocate 20000 1000
end

 

I copied it line by line, but I'm not able to establish a connection with the Centurylink ONT on the 2821.  I forgot how I was able to establish a pppoe client on the fa0/0.1...so I believe that is the problem..below is the config for the 2821

 

Router#sh run
Building configuration...

Current configuration : 1626 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
!
resource policy
!
ip subnet-zero
!
!
ip cef
no ip dhcp use vrf connected
ip dhcp excluded-address 192.172.0.1
!
ip dhcp pool Lab-Network
network 192.172.0.0 255.255.255.224
default-router 192.172.0.1
dns-server 8.8.8.8
domain-name Herman
!
!
ip dhcp update dns
vpdn enable
!
!
!
!
!
!
!
!
!
!
interface GigabitEthernet0/0
no ip address
duplex auto
speed auto
pppoe enable
pppoe-client dial-pool-number 1
!
interface GigabitEthernet0/0.1
encapsulation dot1Q 201
no snmp trap link-status
pppoe enable
pppoe max-sessions 10
!
interface GigabitEthernet0/1
description LAN Interface
ip address 192.172.0.1 255.255.255.224
ip nat inside
ip virtual-reassembly
duplex full
speed auto
!
interface GigabitEthernet1/0
ip address pool Lab-Network
!
interface Dialer1
description WAN Dialer
ip address negotiated
ip mtu 1492
ip virtual-reassembly
encapsulation ppp
ip tcp adjust-mss 1452
dialer pool 1
no cdp enable
ppp chap hostname xxxxxxxx
ppp chap password 0 xxxxxxxxxxxxx
!
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1
!
no ip http server
no ip http secure-server
ip nat inside source list 10 interface Dialer1 overload
!
access-list 10 permit 192.172.0.0 0.0.0.255
!
!
control-plane
!
!
!
line con 0
line aux 0
line 66
no activation-character
no exec
transport preferred none
transport input all
transport output all
line vty 0 4
login
!
scheduler allocate 20000 1000
!
end

 

Who Me Too'd this topic