Skip to content

Instantly share code, notes, and snippets.

@lholden
Created December 23, 2011 13:10
Show Gist options
  • Save lholden/1514171 to your computer and use it in GitHub Desktop.
Save lholden/1514171 to your computer and use it in GitHub Desktop.
PPPoE on Cisco IOS 15.2
! Or whatever your WAN interface is
interface fastethernet 4
no ip address
ip virtual-reassembly in
pppoe enable group global
pppoe-client dial-pool-number 1
exit
interface dialer 1
mtu 1492
ip address negotiated
ip virtual-reassembly in
encapsulation ppp
dialer pool 1
dialer-group 1
! Likely not needed. Specifies we authenticate only callin connections.. which we don't do anyhow.
ppp authentication pap callin
ppp pap sent-username USERNAME password 0 PASSWORD
ppp ipcp route default
no cdp enable
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment