明明白白学习PPPOE配置

网络 网络管理
这里我们主要讨论一下PPPOE server 和Cisco PPPOE的配置内容。那么我们会将每一个步骤进行一下讲解,具体代码也会进行分析。

在配置方面,PPPoE协议总是有很多可圈可点之处。下面我们就来了解一下PPPOE server 和Cisco PPPOE的配置内容。首先在自己的电脑上创建一个宽带连接,名为libin password libin,然后在ATM1上做配置 。

先在 R1上配,pppoe客户端

  1. R1(config)# vpdn enable 开启虚拟拨号网VPDN   
  2. R1(config)#vpdn-group CISCO 定义组 名为CISCO   
  3. R1(config-vpdn)#request-dialin   请求接入  
  4. R1(config-vpdn-req-in)#PROtocol pppoe  
  5. % PPPoE config from vpdn-group is converted to pppoe-profile based config.  
  6. % Continue PPPoE configuration under 'bba-group pppoe global'  
  7. R1(config-vpdn-req-in)#exit  
  8. R1(config-vpdn)#exit  
  9. R1(config-if)#no ip address  
  10. R1(config-if)#pppoe enable  
  11. R1(config-if)#pppoe-client dia  
  12. R1(config-if)#pppoe-client dial-pool-number 1  
  13. R1(config-if)#^Z  
  14. R1#conf t  
  15. R1(config-if)#ip add ?  
  16. A.B.C.D     IP address  
  17. dhcp        IP Address negotiated via DHCP  
  18. negotiated IP Address negotiated over PPP  
  19. pool        IP Address autoconfigured from a local DHCP pool  
  20. R1(config-if)#ip add negotiated  
  21. R1(config-if)#ip nat outside  
  22. R1(config-if)#encapsulation ppp  
  23. R1(config-if)#dialer pool 1  
  24. R1(config-if)#ppp chap hostname  
  25. R1(config-if)#ppp chap hostname cisco  
  26. R1(config-if)#ppp chap password 0 cisco  
  27. R1(config-if)#ip route 0.0.0.0 0.0.0.0 dialer0  

在R2上配置aggregation路由

  1. R2(config)#vpdn enable  
  2. R2(config)#vpdn-group 1  
  3. R2(config-vpdn)#accept-dialin  
  4. R2(config-vpdn-acc-in)#protocol pppoe   
  5. R2(config-vpdn-acc-in)#exit  
  6. R2(config-vpdn)#exit  
  7. R2(config)#username cisco password 0 cisco  
  8. R2(config)#bba-group pppoe global  
  9. R2(config-bba-group)#vir  
  10. R2(config-bba-group)#virtual-template 1  
  11. R2(config-bba-group)#int loo 0  
  12. R2(config-if)#ip add 1.1.1.1 255.0.0.0  
  13. R2(config-if)#int fastethernet 0/0  
  14. R2(config-if)#no ip address  
  15. R2(config-if)#pppoe enable  
  16. R2(config)#interface virtual-template 1  
  17. R2(config-if)#ip unnumbered loopback 0  
  18. R2(config-if)#peer default ip address pool cisco  
  19. R2(config-if)#ppp authentication chap  
  20. R2(config-if)#exit  
  21. R2(config)#ip local pool cisco 1.1.1.2 1.1.1.10 

配置ATM1

  1. ATM1#conf t  
  2. ATM1(config)#no ip routing  
  3. ATM1(config)#int fast0/0  
  4. ATM1(config-if)#no ip address  
  5. ATM1(config-if)#bridge-group 1  
  6. ATM1(config-if)#int atm1/0  
  7. ATM1(config-if)#no ip add  
  8. ATM1(config-if)#bri  
  9. ATM1(config-if)#bridge-group 1  
  10. ATM1(config-if)#pvc 1/100  
  11. ATM1(config-if-atm-vc)#encapsulation aal5snap  
  12. ATM1(config-if-atm-vc)#bridge 1 protocol ieee 

配置BBA-Group

  1. ATM1(config)#bba-group pppoe global   
  2. ATM1(config-bba-group)#virtual-template 1 虚拟摸版定义为1  
  3. ATM1(config-bba-group)#exit 

配置Virtual-Template

  1. ATM1(config)#interface virtual-template 1 进入  
  2. ATM1(config-if)#ip unnumbered loopback 0   借用loopback 0上的ip  
  3. ATM1(config-if)#encapsulation ppp 封状成ppp  
  4. ATM1(config-if)#ppp authentication chap 认证为 chap  
  5. ATM1(config-if)#peer de  
  6. ATM1(config-if)#peer default ip add pool cisco   从名为cisco 里分配ip 地址 

现在开始检查是否成功

  1. 在 PC ping 1.1.1.1 和ping 1.1.1.2  
  2. R1(config-vpdn-req-in)#PROtocol pppoe  
  3. R1(config-vpdn-req-in)#exit  
  4. R1(config-vpdn)#exit 
  1. ATM1 初始配置  
  2. ATM1(config)#username libin password libin   配置用户名和密码,必须和ATM1的相同  
  3. ATM1(config)#interface loopback 0   
  4. ATM1(config-if)#ip add 1.1.1.1 255.0.0.0  
  5. 配置 VPDN  
  6. ATM1(config-if)#EXIT  
  7. ATM1(config)#vpdn enable   开启虚拟拨号网VPDN  
  8. ATM1(config)#vpdn-group ADSL 定义组 名为ADSL   
  9. ATM1(config-vpdn)#request-dialin 请求接入  
  10. ATM1(config-vpdn-req-in)#proto  
  11. ATM1(config-vpdn-req-in)#protocol pppoe 协议配成 pppoe  
  12. % PPPoE config from vpdn-group is converted to pppoe-profile based config.  
  13. % Continue PPPoE configuration under 'bba-group pppoe global'  
  14. ATM1(config-vpdn-req-in)#exit  
  15. ATM1(config-vpdn)#exit  
  16. ATM1(config)#  
  17. 配置BBA-Group  
  18. ATM1(config)#bba-group pppoe global   
  19. ATM1(config-bba-group)#virtual-template 1 虚拟摸版定义为1  
  20. ATM1(config-bba-group)#exit  
  21. 配置Virtual-Template  
  22. ATM1(config)#interface virtual-template 1 进入  
  23. ATM1(config-if)#ip unnumbered loopback 0   借用loopback 0上的ip  
  24. ATM1(config-if)#encapsulation ppp 封状成ppp  
  25. ATM1(config-if)#ppp authentication chap 认证为 chap  
  26. ATM1(config-if)#peer de  
  27. ATM1(config-if)#peer default ip add pool cisco   从名为cisco 里分配ip 地址 

现在开始检查是否成功#p#

在 PC ping 1.1.1.1 和ping 1.1.1.2

  1. C:\Documents and Settings\norvel>ping 1.1.1.1  
  2.  
  3. Pinging 1.1.1.1 with 32 bytes of data:  
  4.  
  5. Reply from 1.1.1.1: bytes=32 time=2046ms TTL=255 
  6. Reply from 1.1.1.1: bytes=32 time=1220ms TTL=255 
  7. Reply from 1.1.1.1: bytes=32 time=2342ms TTL=255 
  8. Reply from 1.1.1.1: bytes=32 time=2760ms TTL=255 
  9.  
  10. Ping statistics for 1.1.1.1:  
  11.     Packets: Sent = 4Received = 4Lost = 0 (0% loss),  
  12. Approximate round trip times in milli-seconds:  
  13.     Minimum = 1220msMaximum = 2760msAverage = 2092ms 
  14.  
  15. C:\Documents and Settings\norvel>ping 1.1.1.2  
  16.  
  17. Pinging 1.1.1.4 with 32 bytes of data:  
  18.  
  19. Reply from 1.1.1.2: bytes=32 time<1ms TTL=128 
  20. Reply from 1.1.1.2: bytes=32 time<1ms TTL=128 
  21. Reply from 1.1.1.2: bytes=32 time<1ms TTL=128 
  22. Reply from 1.1.1.2: bytes=32 time<1ms TTL=128 
  23.  
  24. Ping statistics for 1.1.1.4:  
  25.     Packets: Sent = 4Received = 4Lost = 0 (0% loss),  
  26. Approximate round trip times in milli-seconds:  
  27.     Minimum = 0msMaximum = 0msAverage = 0ms 

好了!可以看到,可以通了

然后PC上在ipconfig/all

  1. C:\Documents and Settings\norvel>ipconfig/all  
  2.  
  3. Windows IP Configuration  
  4.  
  5.         Host Name . . . . . . . . . . . . : AC713A0BC024420  
  6.         Primary Dns Suffix . . . . . . . :  
  7.         Node Type . . . . . . . . . . . . : Unknown  
  8.         IP Routing Enabled. . . . . . . . : No  
  9.         WINS Proxy Enabled. . . . . . . . : No  
  10.         DNS Suffix Search List. . . . . . : Testbed  

Ethernet adapter 本地连接:

  1.         Connection-specific DNS Suffix . : Testbed  
  2.         Description . . . . . . . . . . . : Realtek RTL8139/810x Family Fast Et  
  3. ernet NIC  
  4.         Physical Address. . . . . . . . . : 00-80-45-29-91-0D  
  5.         Dhcp Enabled. . . . . . . . . . . : Yes  
  6.         Autoconfiguration Enabled . . . . : Yes  
  7.         IP Address. . . . . . . . . . . . : 172.16.0.12  
  8.         Subnet Mask . . . . . . . . . . . : 255.255.0.0  
  9.         Default Gateway . . . . . . . . . : 172.16.0.1  
  10.         DHCP Server . . . . . . . . . . . : 172.16.0.1  
  11.         DNS Servers . . . . . . . . . . . : 218.30.19.40  
  12.                                             61.134.1.4  
  13.         NetBIOS over Tcpip. . . . . . . . : Disabled  
  14.         Lease Obtained. . . . . . . . . . : 2008年3月21日 星期五 17:00:29  
  15.         Lease Expires . . . . . . . . . . : 2008年3月22日 星期六 17:00:29 

PPP adapter 宽带连接 2:

  1. Connection-specific DNS Suffix . :  
  2. Description . . . . . . . . . . . : WAN (PPP/SLIP) Interface  
  3. Physical Address. . . . . . . . . : 00-53-45-00-00-00  
  4. Dhcp Enabled. . . . . . . . . . . : No  
  5. IP Address. . . . . . . . . . . . : 1.1.1.2 可以看到已经分配到了  
  6. Subnet Mask . . . . . . . . . . . : 255.255.255.255  
  7. Default Gateway . . . . . . . . . : 1.1.1.2 默认网关也成了次ip  
  8. NetBIOS over Tcpip. . . . . . . . : Disabled 

 

责任编辑:佟健 来源: hi.baidu.com
相关推荐

2020-02-10 19:42:01

CPIP 协议,

2011-04-27 17:05:39

2010-10-08 15:05:00

无线路由设置

2012-02-20 21:59:08

无线路由设置

2011-11-04 16:49:26

Action BarAndroid

2010-08-03 09:17:00

2010-06-29 14:38:14

Linux服务器

2021-09-26 07:38:39

组合问题数据结构算法

2013-05-23 11:16:28

大数据技术大数据AdTime

2010-01-13 17:07:21

防辐射机箱选购

2010-07-05 15:33:49

2021-02-23 08:10:18

Nginx反向代理负载均衡器

2021-09-30 09:59:23

OSPF网络协议网络技术

2010-08-06 10:00:05

负载均衡

2010-10-15 10:01:19

无线网络构建

2010-09-09 09:52:03

Linux服务器

2010-07-14 09:55:12

2010-08-25 09:09:58

2020-12-22 10:57:36

DockerLinux程序员

2020-11-18 09:25:39

Docker
点赞
收藏

51CTO技术栈公众号