ppp协议和GRE

1.R5为ISP,只能进行IP地址配置;其所有的IP地址均为共有IP地址

2.R1和R5之间使用PPP的PAP认证,R5为主认证方

R2和R5之间使用PPP的chap认证,R5为主认证方

R3和R5之间使用HDLC封装

3.R1/R2/R3构建一个MGRE环境,R1为Hub;

R1/R4之间构建一个GRE环境

4.整个私有网络基于RIP全网可达

5.所有PC设置私有IP为源IP,可以访问R5环回

一 、配置IP地址

复制代码
R1:

[R1]int g 0/0/0

[R1-GigabitEthernet0/0/0]ip address 192.168.1.254 24

[R1]int s 1/0/0

[R1-Serial1/0/0]ip address 15.0.0.1 24



R2:

[R2]int g 0/0/0

[R2-GigabitEthernet0/0/0]ip address 192.168.2.254 24

[R2]int s 2/0/0

[R2-Serial2/0/0]ip address 25.0.0.2 24



R3:

[R3]int g 0/0/0

[R3-GigabitEthernet0/0/0]ip address 192.168.3.254 24

[R3]int s 3/0/0

[R3-Serial3/0/0]ip address 35.0.0.3 24



R4:

[R4]int g 0/0/1

[R4-GigabitEthernet0/0/1]ip address 192.168.4.254 24

[R4]int g 0/0/0

[R4-GigabitEthernet0/0/0]ip address 45.0.0.4 24



R5:

[R5]int s 1/0/0

[R5-Serial1/0/0]ip address 15.0.0.5 24

[R5]int s 2/0/0

[R5-Serial2/0/0]ip address 25.0.0.5 24

[R5]int s 3/0/0

[R5-Serial3/0/0]ip address 35.0.0.5 24

[R5]int g 0/0/0

[R5-GigabitEthernet0/0/0]ip address 45.0.0.5 24

[R5]int LoopBack 0

[R5-LoopBack0]ip address 5.5.5.5 32

二、 配置PAP,CHAP,HDLC封装

(1)R1和R5间使用PPP的PAP认证,R5为主认证方

复制代码
认证方 R5:

[R5]aaa

[R5-aaa]local-user hcip password cipher 123456

[R5-aaa]local-user hcip service-type ppp

[R5-Serial1/0/0]ppp authentication-mode pap



被认证方 R1:

[R1]int s 1/0/0

[R1-Serial1/0/0]ppp pap local-user hcip password cipher 123456

(2)R2与R5之间使用PPP的CHAP认证,R5为主认证方

复制代码
认证方R5:

[R5-aaa]

[R5-aaa]local-user huawei password cipher 654321

[R5-aaa]local-user huawei service-type ppp

[R5-Serial2/0/0]ppp authentication-mode chap



被认证方R2:

[R2-Serial2/0/0]ppp chap user huawei
[R2-Serial2/0/0]ppp chap password cipher 654321

(3)R3与R5之间使用HDLC封装

复制代码
R3:

[R3]int s 3/0/0

[R3-Serial3/0/0]link-protocol hdlc




R5:

[R5]int s 3/0/0

[R5-Serial3/0/0]link-protocol hdlc 

三、 配置MGRE,GRE

复制代码
[R1]ip route-static 0.0.0.0 0 15.0.0.5

[R2]ip route-static 0.0.0.0 0 25.0.0.5

[R3]ip route-static 0.0.0.0 0 35.0.0.5

[R4]ip route-static 0.0.0.0 0 45.0.0.5

(1)R1/R2/R3构建一个MGRE环境,R1为Hub

复制代码
Hub R1:

[R1]int Tunnel 0/0/0

[R1-Tunnel0/0/0]ip address 192.168.5.1 24

[R1-Tunnel0/0/0]tunnel-protocol gre p2mp

[R1-Tunnel0/0/0]source 15.0.0.1



Spoke R2:

[R2]int Tunnel 0/0/0

[R2-Tunnel0/0/0]ip add 192.168.5.2 24

[R2-Tunnel0/0/0]tunnel-protocol gre p2mp

[R2-Tunnel0/0/0]source Serial 2/0/0

[R2-Tunnel0/0/0]nhrp entry 192.168.5.1 15.0.0.1 register



Spoke R3:

[R3]int Tunnel 0/0/0

[R3-Tunnel0/0/0]ip address 192.168.5.3 24

[R3-Tunnel0/0/0]tunnel-protocol gre p2mp

[R3-Tunnel0/0/0]source Serial 3/0/0

[R3-Tunnel0/0/0]nhrp entry 192.168.5.1 15.0.0.1 register 

(2)R1/R4之间构建一个GRE环境

复制代码
R1:

[R1]int Tunnel 0/0/1

[R1-Tunnel0/0/1]ip address 192.168.6.1 24

[R1-Tunnel0/0/1]tunnel-protocol gre

[R1-Tunnel0/0/1]source 15.0.0.1

[R1-Tunnel0/0/1]destination 45.0.0.4



R4:

[R4]int Tunnel 0/0/1

[R4-Tunnel0/0/1]ip address 192.168.6.4 24

[R4-Tunnel0/0/1]tunnel-protocol gre

[R4-Tunnel0/0/1]source 45.0.0.4

[R4-Tunnel0/0/1]destination 15.0.0.1

四、 配置RIP协议

复制代码
R1:

rip 1
 version 2
 network 192.168.1.0
 network 192.168.5.0
 network 192.168.6.0

[R1-Tunnel0/0/0]nhrp entry multicast dynamic 

[R1-Tunnel0/0/0]undo rip split-horizon 

[R1-Tunnel0/0/1]undo rip split-horizon
复制代码
R2:

rip 1
 version 2
 network 192.168.2.0
 network 192.168.5.0

[R2-Tunnel0/0/1]undo rip split-horizon
复制代码
R3:

rip 1
 version 2
 network 192.168.3.0
 network 192.168.5.0

[R3-Tunnel0/0/1]undo rip split-horizon
复制代码
R4:

rip 1
 version 2
 network 192.168.4.0
 network 192.168.6.0

[R4-Tunnel0/0/1]undo rip split-horizon

五、 配置NAT

复制代码
R1:

[R1]acl number 2000

[R1-acl-basic-2000]rule permit source 192.168.1.0 0.0.0.255

[R1]int Serial 1/0/0

[R1-Serial1/0/0]nat outbound 2000



R2:

[R2]acl 2000

[R2-acl-basic-2000]rule permit source 192.168.2.0 0.0.0.255

[R2]int Serial 2/0/0

[R2-Serial2/0/0]nat outbound 2000



R3:

[R3]acl 2000

[R3-acl-basic-2000]rule permit source 192.168.3.0 0.0.0.255

[R3]int Serial 3/0/0

[R3-Serial3/0/0]nat outbound 2000



R4:

[R4]acl 2000

[R4-acl-basic-2000]rule permit source 192.168.4.0 0.0.0.255

[R4]int g 0/0/0

[R4-GigabitEthernet0/0/0]nat outbound 2000
相关推荐
我星期八休息10 分钟前
扩展— TCP 全连接队列与 tcpdump 抓包
linux·服务器·开发语言·前端·网络·tcp/ip·tcpdump
RisunJan37 分钟前
Linux命令-skill(发送信号给进程)
linux·运维·服务器
潘正翔37 分钟前
k8s基础_kubeadm搭建k8s集群
linux·运维·docker·云原生·容器·kubernetes
changjiahong42 分钟前
lvs总结
服务器·数据库·lvs
Echo flower1 小时前
Docker 容器中 Puppeteer 僵尸进程排查与修复
运维·docker·容器·puppeteer
骊城英雄1 小时前
彩笔运维勇闯机器学习--逻辑回归
运维·机器学习·逻辑回归
孪生质数-1 小时前
AI 应用实践篇——让大模型真正开始工作
linux·运维·服务器·人工智能·深度学习·语言模型·llama
Splashtop高性能远程控制软件1 小时前
连锁零售多门店远程运维指南:从故障响应到批量运维的四项能力
运维·零售·远程控制·splashtop
瞬间&永恒~1 小时前
【MySQL】 InnoDB 锁等待排查与并发压测实验
运维·数据库·mysql
zcmodeltech2 小时前
智能矿井沙盘模型多系统协同控制系统设计:基于STM32与Modbus RTU的感知-传输-控制一体化方案
服务器·数据库·分布式·stm32·单片机·嵌入式硬件