ensp模拟器:华为AR路由器配置作为PPPoE Server与配置PPPoE Client示例(路由器拔号上网)

ensp模拟器:华为AR路由器配置作为PPPoE Server与配置PPPoE Client示例(路由器拔号上网)

R1_2022.07.20.00时52分49秒.txt

R2_2022.07.20.00时53分09秒.txt

R3_2022.07.20.00时53分24秒.txt

(1)拓扑图

图片.png

(2)基础配置

R1:
interface GigabitEthernet0/0/0
 ip address 12.12.12.1 255.255.255.0
#
ip route-static 23.23.23.0 255.255.255.0 12.12.12.2

R2:
interface GigabitEthernet0/0/0
 ip address 12.12.12.2 255.255.255.0
#
interface GigabitEthernet0/0/1
 ip address 23.23.23.2 255.255.255.0
#

R3:
interface GigabitEthernet0/0/0
 ip address 192.168.1.254 255.255.255.0
#
interface GigabitEthernet0/0/2
 ip address 23.23.23.3 255.255.255.0

(3)在R1上配置PPPoE服务器

R1:
dhcp enable
#配置全局地址池pool1
ip pool pool1
 gateway-list 1.1.1.254
 network 1.1.1.0 mask 255.255.255.0
#配置PPPoE认证用户
aaa
    authentication-scheme pppoe-1
    authorization-scheme pppoe-1
    domain zh-cjh.com  
           authentication-scheme pppoe-1
           authorization-scheme pppoe-1
     local-user u1@zh-cjh.com password cipher 12345678
     local-user u1@zh-cjh.com service-type ppp
#创建并配置VT
interface Virtual-Template1
 ppp authentication-mode chap domain zh-cjh.com
 remote address pool pool1
 ppp ipcp dns 223.5.5.5 223.6.6.6
 ip address 1.1.1.254 255.255.255.0
#在接口上启用PPPoE Server功能
interface GigabitEthernet0/0/1
 pppoe-server bind Virtual-Template 1

(4)配置拔号客户端

R3:
#配置Dialer接口
interface Dialer1
 link-protocol ppp
 ppp chap user u1@zh-cjh.com
 ppp chap password cipher 12345678
 ip address ppp-negotiate
 dialer user a1
 dialer bundle 1
#建立PPPoE会话
 interface GigabitEthernet0/0/2
 pppoe-client dial-bundle-number 1
#配置局域网用户通过NAT转换将私网地址转换为公网地址,进行拨号上网
 acl number 3001  
     rule 5 permit ip source 192.168.1.0 0.0.0.255
#
 interface Dialer1
     nat outbound 3001
#配置到PPPoE Server的静态路由
 ip route-static 0.0.0.0 0.0.0.0 Dialer 1

(5)查看结果
 验证配置结果
 # 在PPPoE Client上执行命令display pppoe-client session summary,查看PPPoE会话状态和配置信息。根据显示信息判断会话状态是否正常(状态为UP表示正常)。
 [R3]display pppoe-client session summary
PPPoE Client Session:
ID   Bundle   Dialer    Intf                  Client-MAC         Server-MAC       State
2    1              1         GE0/0/2          00e0fc0c1590     00e0fc5e3c20     UP    
[R3]
  # 在PPPoE Server上可以执行display pppoe-server session all命令,显示PPPoE会话的状态信息和配置信息。根据显示信息判断会话状态是否正常(状态为UP表示正常。
 <R2>display pppoe-server session all
SID     Intf                                 State     OIntf            RemMAC                 LocMAC
2         Virtual-Template1:1         UP        GE0/0/1        00e0.fc0c.1590      00e0.fc5e.3c20

<R2>

图片.png

测试:PC1 ping 12.12.12.1没有成功

图片.png

R3 ping 12.12.12.1也没有成功

图片.png

在R1上抓包查看:

图片.png

不管是PC1 ping 12.12.12.1 还是R3 ping 12.12.12.1,通过抓包查看,源ip都是R3拔号接口的地址,证明源NAT也是生效的,而流量已经到了R1,所以需要检查下R1的路由表,看看是否有回程路由。

图片.png

没有回程路由,所以需要配置上,可以直接配置默认路由:

R1:

ip route-static 0.0.0.0 0.0.0.0 12.12.12.2

图片.png

再次测试:PC1与R3都可以ping通 12.12.12.1了。

图片.png

图片.png


PPPoE服务器与PPPoE客户端不需要提前网络通。
提前把他们之间的接口的ip地址删除,再进行测试。
[R3]
interface GigabitEthernet0/0/2
 pppoe-client dial-bundle-number 1
 ip address 23.23.23.3 255.255.255.0
#
[R3-GigabitEthernet0/0/2]undo ip address
[R3-GigabitEthernet0/0/2]dis this
interface GigabitEthernet0/0/2
 pppoe-client dial-bundle-number 1
#
[R2]
interface GigabitEthernet0/0/1
 pppoe-server bind Virtual-Template 1
 ip address 23.23.23.2 255.255.255.0
#
[R2-GigabitEthernet0/0/1]undo ip address
dis this
interface GigabitEthernet0/0/1
 pppoe-server bind Virtual-Template 1
 测试:

 图片.png

 PPPoE(英语:Point-to-Point Protocol Over Ethernet),以太网上的点对点协议,是将点对点协议(PPP)封装在以太网(Ethernet)框架中的一种网络隧道协议。由于协议中集成PPP协议,所以实现出传统以太网不能提供的身份验证、加密以及压缩等功能,也可用于缆线调制解调器(cable modem)和数字用户线路(DSL)等以以太网协议向用户提供接入服务的协议体系。



PPPoE(列表、list、全)PPPoE拔号list、PPPoElist
http://www.zh-cjh.com/wenzhangguilei/2535.html
文章归类、所有文章列表、LISTLIST
http://www.zh-cjh.com/wangzhangonggao/2195.html

1、本站资源长期持续更新。
2、本资源基本为原创,部分来源其他付费资源平台或互联网收集,如有侵权请联系及时处理。
3、本站大部分文章的截图来源实验测试环境,请不要在生产环境中随意模仿,以免带来灾难性后果。

转载请保留出处:  www.zh-cjh.com珠海陈坚浩博客 » ensp模拟器:华为AR路由器配置作为PPPoE Server与配置PPPoE Client示例(路由器拔号上网)

作者: cjh


手机扫一扫,手机上查看此文章:

一切源于价值!

其他 模板文件不存在: ./template/plugins/comment/pc/index.htm

未雨绸缪、居安思危!

数据安全、有备无患!

注意操作、数据无价!

一切源于价值!