top of page

​​Summary:

​

1. Configure the Neo router fa0/0 to connect to the ISP with a PPPoE DSL connection

  - The Neo router should learn its public address dynamically

  - Use the hostname "ABC" with a password of "abc123" to authenticate

​

2. Configure a default route out the Dialer interface you create on your router

​

3. Use the proper show commands to verify the PPPoE connection is working

​

4. Ping 4.2.2.2 and 8.8.8.8 to test Internet connectivity

 

 

​

 

pp2.JPG

​

 

​

NEO:

 

Create a dialer interface, aka the head:


  int dialer 1
  mtu 1492
  encapsulation ppp
  ip address negotiated  !-----------------------getting an IP from DHCP
  ppp chap hostname ABC
  ppp chap password abc123
  dialer pool 1

 

Tie the head with the body (fa0/0) to a pool:


  int fa0/0 

  no shut
  pppoe enable
  pppoe-client dial-pool-number 1

​

Create a default route:

​

  ip route 0.0.0.0 0.0.0.0 dialer 1

​

​

ISP: (note this part if not required by CCNA)

​

hostname ISP
!
username CBTNuggets password IsQuiteFun
!
bba-group pppoe PPPoE_Group
 Virtual-template 1
!
interface FastEthernet0/0
 pppoe enable group PPPoE_Group
 no shutdown
!
interface Virtual-Template1
 ip address 201.5.9.1 255.255.255.0
 peer default ip address pool PPPoEClientPool
 ppp authentication chap callin
!
ip local pool PPPoEClientPool 201.5.9.100 201.5.9.150
!
interface loopback 1
 ip address 4.2.2.2 255.255.255.255

interface loopback 2
 ip address 8.8.8.8 255.255.255.255

​

 

 

​

 

pp1.jpg
bottom of page