1.PPPOE server 地址池配置
[R2]interface LoopBack 0
[R2-LoopBack0]ip address 2.2.2.2 32
[R2-LoopBack0]quit
//模拟公网
[R2]ip pool pppoe
//创建地址池用于分配IP地址
[R2-ip-pool-pppoe]network 12.1.1.0 mask 24
//设置地址池网络和掩码
[R2-ip-pool-pppoe]gateway-list 12.1.1.2
//设置该地址池的网关
[R2-ip-pool-pppoe]quit
2.创建虚拟接口
[R2]interface Virtual-Template 1
[R2-Virtual-Template1]ppp authentication-mode chap
//这里不是用串行链路,原则上是不能封装成chap
[R2-Virtual-Template1]ip address 12.1.1.2 24
[R2-Virtual-Template1]remote address pool pppoe
//指定为PPPoE Client分配IP地址的地址池
[R2-Virtual-Template1]quit
3.接口绑定虚拟接口模板
[R2]interface GigabitEthernet 0/0/0
[R2-GigabitEthernet0/0/0]pppoe-server bind virtual-template 1
//在端口上调用绑定虚模板
[R2-GigabitEthernet0/0/0]quit
4.配置AAA
[R2]aaa
[R2-aaa]local-user dsrw password cipher dsrw.com
[R2-aaa]local-user dsrw service-type ppp
//一个用户只能一个用户名和密码
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
请登录后查看评论内容