Friday, September 25, 2009

ISCW PPPoE Lab sim

Scenario:-
CiscoSims is a small export company .This firm has an existing enterprise network that is made up exclusively of routers that are using EIGRP as the IGP. Its network is up and operating normally. As part of its network expansion, CiscoSims has decided to connect to the internet by a broadband cable ISP. Your task is to enable this connection by use of the information below.



Connection Encapsulation: PPP
Connection Type: PPPoE client
Connection Authentication: None
Connection MTU: 1492 bytes
Address: Dynamically assigned by the ISP
Outbound Interface: E0/0

You will know that the connection has been successfully enabled when you can ping the simulated Internet address of 172.16.1.1

Note: Routing to the ISP: Manually configured default route


Configuration Solution:

Step 1. Configure the Ethernet interface e0/0 (outbound interface) of the router R with a PPPoE client configuration :-

R(config)#int e0/0
R(config-if)#pppoe enable

R(config-if)#pppoe-client dial-pool-number 1
R(config-if)#no shut
R(config-if)#exit

Step 2. Create and configure the dialer interface of the router R for PPPoE with a maximum transmission unit (MTU) size of 1492 and a negotiated IP address (dynamically assigned) :-

R(config)#int dialer 1
R(config-if)#encapsulation PPP

R(config-if)#ip mtu 1492

R(config-if)#dialer pool 1
R(config-if)#ip address negotiated
R(config-if)#exit

Step 3. Configure a static default route on the router R :-

R(config)#ip route 0.0.0.0 0.0.0.0 dialer 1
R(config)#exit

Step 4. Save your configuration:-

R#copy run start

Test your configuration by pinging the provided Internet address :-

R#ping 172.16.1.1

.............................................................................................................................

8 comments:

  1. hi,
    in the testinside this lab appears otherwise. Add this command. What is de correct ??
    thanks

    config# vpdu enable
    config# vpfu-group 1
    config-vpdu# request-dialin
    config-vpdu-req-in# protocol pppoe

    ReplyDelete
  2. Does the commands needs to be executed in the same sequence in the exam?

    R(config)#int dialer 1
    R(config-if)#encapsulation PPP
    R(config-if)#ip mtu 1492
    R(config-if)#dialer pool 1
    R(config-if)#ip address negotiated
    R(config-if)#exit

    Can't I do it like this

    R(config-if)#ip mtu 1492
    R(config-if)#encapsulation PPP
    R(config-if)#ip address negotiated
    R(config-if)#dialer pool 1
    R(config-if)#exit

    ReplyDelete
  3. Becosue VPDN config only done if you are using the dialup connection to dial. but for broadband, no need to dialr teh connection. it always active. that y no need to do the VPDN config

    2nd quation. yes it should be under the diler pool 1 command

    ReplyDelete
  4. Depending on the Cisco Router for ex..2600, needs vpdn configuration to enable support for PPPoE protocol even while doing PPPoE client configuration. Be aware

    ReplyDelete
  5. i passed the exam with dialer configuration, you dont need vpdn

    ReplyDelete
  6. How about this configuration ... ??



    interface e0/0
    no ip address
    pppoe enable
    pppoe-client dial-pool-number 1
    no shut

    inter dialer 1
    ip add negotiated
    encapsulation ppp
    dialer pool 1
    ip mtu 1492
    ip nat outside
    no shut

    inter e0/1
    ip add 192.168.1.1 255.255.255.0 (show run to verify IP !!!)
    ip nat inside
    no shut


    ip route 0.0.0.0 0.0.0.0 dialer 1
    ip nat inside source list 1 interface dialer 1 overload

    access-list 1 permit 192.168.1.0 0.0.0.255 (again show run to verify IP !!!)
    copy run start

    ReplyDelete
  7. yesterday i passed exam but unfortunatly pppoe lab unable to execute fully, bcoz this command was not executing,unrecognised command,
    tried in all possible ways to execute this command using ? also but no way. please let me know y it is happen, pppoe-client dial-pool-number 1

    ReplyDelete
  8. Hi guys, thanks for the good job you are doing in this site. I just passed my 642-892 composite exam today. The exam had 4 simulations and 3 hotspot. I got 975 marks. Keep doing the good works. Cheers

    ReplyDelete

Note: Only a member of this blog may post a comment.