Complete the configuration of ADSL PPPoA in five simple steps

Source: Internet
Author: User

We have explained the PPPoE settings in the previous article. Here we will focus on the configuration of ADSL PPPoA. There are a total of five steps. I believe you can have a detailed understanding of this process after reading the article. ADSL PPPoA configuration environment: LAN ----- (e0) rom0 (atm0) ----- ISP communication line, which must be configured with an ADSL card.

ADSL PPPoA configuration 1. Configure the ATM interface

 
 
  1. The Router (config) # interface atm 0/0
  2. Router (config) # no ip address
  3. Router (config) # dsl operating-mode auto
  4. Router (config-if) # pvc 8/35 specifies the vpi/vci value. You can ask ISP)
  5. Router (config-if-atm-vc) # encapsulation aal5mux ppp dialer sets encapsulation for PPPoA and encapsulates it as adaptation layer 5AAL5) in mux mode)
  6. Router (config-if-atm-vc) # bind dialer pool-number 1 to dialer profile)
  7. Note: dsl operating-mode auto is enabled on the ATM interface by default. The signal modulation mode can be automatically negotiated.

ADSL PPPoA configuration 2. Define the Dialer Port

 
 
  1. Router (config) # interface dialer0
  2. Router (config) # ip address negotiated uses IPCP to negotiate with the router of the ISP to obtain the network address)
  3. Router (config) # ip nat outside PAT configuration section, which is detailed in section 4)
  4. Router (config) # encapsulation ppp
  5. Router (config) # dialer pool 1
  6. Router (config) # ip mtu 1492
  7. Router (config) # ppp chap hostname cisco
  8. Router (config) # ppp chap password cisco

ADSL PPPoA configuration 3. Define PAT

 
 
  1. Router(config)#interface ethernet0  
  2. Router(config-if)#ip address 10.0.0.1 255.0.0.0  
  3. Router(config-if)#ip nat inside  
  4. Router(config-if)#exit  
  5. Router(config)#interface dialer0  
  6. Router(config-if)#ip nat outside  
  7. Router(config-if)#exit  
  8. Router(config)#ip nat inside source list 101 interface dialer0 overload  
  9. Router(config)#access-list 101 permit ip 10.0.0.0 0.255.255.255 any 

ADSL PPPoA configuration 4. Define the DHCP server and assign an internal IP address

 
 
  1. Router (config) # ip dhcp pool subteam
  2. Router (config-pool) # import all the DNS and WIN addresses obtained through IPCP negotiation to the DHCP database for publishing to the Client)
  3. Router (config-pool) # network 10.0.0.0 255.0.0.0
  4. Router (config-pool) # default-router 10.0.0.1 gateway address, that is, the internal Ethernet port address of the Router)

ADSL PPPoA configuration 5. Define static routes

 
 
  1. Router(config)#ip route 0.0.0.0 0.0.0.0 dialer0  

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.