PPP+VPN综合实验

一、实验拓扑

二、实验划分

三、实验需求

四、实验结果

1.配置各端口和pc的IP:

pc1:

pc2:

pc3:

pc4:

R1:

[r1]inter g0/0/0
[r1-GigabitEthernet0/0/0]ip ad 192.168.1.2 24
[r1-GigabitEthernet0/0/0]int s4/0/0
[r1-Serial4/0/0]ip ad 15.1.1.1 24

R2:

[r2]inter g0/0/0
[r2-GigabitEthernet0/0/0]ip ad 192.168.2.2 24
[r2-GigabitEthernet0/0/0]int s4/0/0
[r2-Serial4/0/0]ip ad 25.1.1.2 24

R3:

[r3]int g0/0/0
[r3-GigabitEthernet0/0/0]ip ad 192.168.3.2 24
[r3-GigabitEthernet0/0/0]int s4/0/0
[r3-Serial4/0/0]ip ad 35.1.1.3 24

R4:

[r4]int g0/0/1
[r4-GigabitEthernet0/0/1]ip ad 192.168.4.2 24
[r4-GigabitEthernet0/0/1]int g0/0/0
[r4-GigabitEthernet0/0/0]ip ad 45.1.1.4 24

R5:

[r5]int s4/0/1
[r5-Serial4/0/1]ip ad 15.1.1.5 24
[r5-Serial4/0/1]int s3/0/1
[r5-Serial3/0/1]ip ad 25.1.1.5 24
[r5-Serial3/0/1]int s4/0/0
[r5-Serial4/0/0]ip ad 35.1.1.5 24
[r5-Serial4/0/0]int g0/0/0
[r5-GigabitEthernet0/0/0]ip ad 45.1.1.5 24
[r5]int LoopBack 0
[r5-LoopBack0]ip ad 5.5.5.1 24

2.实现公私网通

公网通,配置静态缺省路由:

R1:

[r1]ip route-static 0.0.0.0 0 15.1.1.5

R2:

[r2]ip route-static 0.0.0.0 0 25.1.1.5

R3:

[r3]ip route-static 0.0.0.0 0 35.1.1.5

R4:

[r4]ip route-static 0.0.0.0 0 45.1.1.5

3.R1和R5之间使用ppp的PAP认证,R5为主认证方;R2和R5之间使用ppp的CHAP认证,R5为主认证方;R3和R5之间使用HDLC封装

R1和R5之间:

R5:

[r5]aaa
[r5-aaa]local-user jio1 password cipher jio1123
[r5-aaa]local-user jio1 service-type ppp
[r5]inter s4/0/1
[r5-Serial4/0/1]ppp authentication-mode pap

R1:

[r1-Serial4/0/0]ppp pap local-user jiojio password cipher 123456

R2和R5之间:

R5:

[r5]aaa
[r5-aaa]local-user duer password cipher 123456
[r5-aaa]local-user duer service-type ppp
[r5]int s3/0/1
[r5-Serial3/0/1]ppp authentication-mode chap

R2:

[r2-Serial4/0/0]ppp chap user duer
[r2-Serial4/0/0]ppp chap password cipher 123456

R3和R5之间使用HDLC封装:

R3:

[r3-Serial4/0/0]link-protocol hdlc 
Warning: The encapsulation protocol of the link will be changed. Continue? [Y/N]
:y

R5:

[r5-Serial4/0/0]link-protocol hdlc 
Warning: The encapsulation protocol of the link will be changed. Continue? [Y/N]
:y

4.R1~R3构建MGRE

R1:

[r1]int Tunnel 0/0/0
[r1-Tunnel0/0/0]ip address 10.1.2.1 24
[r1-Tunnel0/0/0]tunnel-protocol gre p2mp 
[r1-Tunnel0/0/0]source 15.1.1.1
[r1-Tunnel0/0/0]nhrp network-id 100

R2:

[r2]int Tunnel 0/0/0	
[r2-Tunnel0/0/0]ip ad 10.1.2.2 24
[r2-Tunnel0/0/0]tunnel-protocol gre p2mp 
[r2-Tunnel0/0/0]source s4/0/0
[r2-Tunnel0/0/0]nhrp network-id 100
[r2-Tunnel0/0/0]nhrp entry 10.1.2.1 15.1.1.1 register

R3:

[r3]int Tunnel 0/0/0
[r3-Tunnel0/0/0]ip ad 10.1.2.3 24
[r3-Tunnel0/0/0]tunnel-protocol gre p2mp 
[r3-Tunnel0/0/0]source s4/0/0
[r3-Tunnel0/0/0]nhrp network-id 100
[r3-Tunnel0/0/0]nhrp entry 10.1.2.1 15.1.1.1 register

5.R1到R4之间配置GRE VPN

R1:

[r1]int Tunnel 0/0/1
[r1-Tunnel0/0/1]ip ad 10.1.1.1 24
[r1-Tunnel0/0/1]tunnel-protocol gre
[r1-Tunnel0/0/1]source 15.1.1.1
[r1-Tunnel0/0/1]destination 45.1.1.4

R4:

[r4]int t0/0/1
[r4-Tunnel0/0/1]ip ad 10.1.1.4 24
[r4-Tunnel0/0/1]tunnel-protocol gre 
[r4-Tunnel0/0/1]source 45.1.1.4
[r4-Tunnel0/0/1]destination 15.1.1.1

6.RIP配置

R1:

[r1]rip 1
[r1-rip-1]version 2
[r1-rip-1]undo summary
[r1-rip-1]network 192.168.1.0
[r1-rip-1]network 10.0.0.0

R2:

[r2]rip 1
[r2-rip-1]v 2
[r2-rip-1]undo summary
[r2-rip-1]network 192.168.2.0
[r2-rip-1]network 10.0.0.0

R3:

[r3]rip 1
[r3-rip-1]v 2
[r3-rip-1]undo summary
[r3-rip-1]network 192.168.3.0
[r3-rip-1]network 10.0.0.0

R4:

[r4]rip 1
[r4-rip-1]v 2
[r4-rip-1]undo summary
[r4-rip-1]network 192.168.4.0
[r4-rip-1]network 10.0.0.0

7.关闭水平分割

R1:

[r1]int Tunnel 0/0/0
[r1-Tunnel0/0/0]nhrp entry multicast dynamic 
[r1-Tunnel0/0/0]undo rip split-horizon 

R2:


[r2]int Tunnel 0/0/0
[r2-Tunnel0/0/0]nhrp entry multicast dynamic 
[r2-Tunnel0/0/0]undo rip split-horizon 

R3:

[r3]int Tunnel 0/0/0
[r3-Tunnel0/0/0]nhrp entry multicast dynamic 
[r3-Tunnel0/0/0]undo rip split-horizon 

8.配置ACL

R1:

[r1]acl 2000
[r1-acl-basic-2000]rule permit source 192.168.1.1 0.0.0.255
[r1]int s4/0/0
[r1-Serial4/0/0]nat outbound 2000

R2:

[r2]acl 2000
[r2-acl-basic-2000]rule permit source 192.168.2.1 0.0.0.255
[r2]int s4/0/0
[r2-Serial4/0/0]nat outbound 2000

R3:

[r3]acl 2000
[r3-acl-basic-2000]rule permit source 192.168.3.1 0.0.0.255
[r3]int s4/0/0
[r3-Serial4/0/0]nat outbound 2000

R4:


[r4]acl 2000
[r4-acl-basic-2000]rule permit source 192.168.4.1 0.0.0.255
[r4]int g0/0/0
[r4-GigabitEthernet0/0/0]nat outbound 2000

9.测试

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/585945.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

网站HTTPS证书是什么?有用吗?

什么是HTTPS证书? HTTPS证书,全称为安全套接层证书或传输层安全证书,是数字证书的一种。它由受信任的证书颁发机构签发,用于证明网站的身份,并为网站启用HTTPS(超文本传输安全协议)。 HTTPS证书…

天生强运的属龙人,在本命年要非常谨慎

​ 辰龙是十二生肖之一,地支的第五位。龙是一个神化了的象征,气宇轩昂,威武智慧,代表着神圣与无上、尊严与强大是不可战胜的。多数生肖属龙的人都是温文尔雅,风度翩翩的。无论在什么场合只要得到肯定,他们…

【Redis】redis集群模式

概述 Redis集群,即Redis Cluster,是Redis 3.0开始引入的分布式存储方案。实际使用中集群一般由多个节点(Node)组成,Redis的数据分布在这些节点中。集群中的节点分为主节点和从节点:只有主节点负责读写请求和集群信息的维护&#…

正则表达式引擎库汇合

1.总览表格 一些正则表达式库的对比 index库名编程语言说明代码示例编译指令1Posix正则C语言是C标准库中用于编译POSIX风格的正则表达式库 posix-re.cgcc posix-re.c 2PCRE库C语言提供类似Perl语言的一个正则表达式引擎库。 一般系统上对应/usr/lib64/libpcre.so这个库文件&am…

【css】文本过长溢出一行不换行普通css以及antd实现

.text-box { white-space: nowrap; /* 防止文字换行 */ overflow: hidden; /* 隐藏超出div的内容 */ text-overflow: ellipsis; /* 当内容超出时,显示省略号 */ max-width: calc(100% - 80px); /* 假设按钮宽度为80px,则设置div的最大宽度为容器宽度…

ts 中数据约束类型

在 swagger 等接口文档中,查看 json代码,复制 将其导入到 json.cn,便于查看 在api文件夹下,新建一个定义ts类型的文件 type.ts。 定义数据类型 ---> export interface Bbb {} 调用数据类型----> export type Xxx Bbb[]…

《编程菜鸟学 Python 数据分析》让工作自动化起来!

随着我国企业数字化和信息化的深入,企业对办公自动化的效率和灵活性要求越来越高。Python作为一种开源的软件应用开发方式,通过提供强大丰富的库文件包,极大地简化了应用开发过程,降低了技术门槛。Python开发有哪些优势、挑战以及…

【PFA树脂交换柱】实验室高纯PFA材质过滤柱耐受电子级氢氟酸含氟树脂层析柱

PFA离子交换柱,也叫PFA层析柱、PFA过滤柱等,其原理是利用吸附剂对不同化合物有不同吸附作用和不同化合物在溶剂中的不同溶解度,用适应溶剂使混合物在填有吸附剂的柱内通过,使复杂的混合物达到分离和提纯的目的。 柱体为透明PFA材…

165.乐理基础-关系大小调、同主音调、小调的调号判断

如果到这五线谱还没记住还不认识的话去看102.五线谱-高音谱号与103.五线谱-低音谱号这两个里,这里面有五线谱对应的音名,对比着看 如果不认识调号去看112.五线谱的调号(一)113.五线谱的调号(二)114.快速识…

软件测试用例(1)

测试用例的基本要素 回顾一下测试用例的概念: 测试用例是为了实施测试而向被测试的系统提供的一组集合, 这组集合包含: 测试环境, 操作步骤, 测试数据, 预期结果等要素. 好的测试用例是一个不熟悉业务的人也能依据用例来很快的进行测试. 评价测试用例的标准: 对比好坏用例…

XGB回归预测

关键代码 import numpy as np import matplotlib.pyplot as plt from xgboost import XGBRegressor #pip install xgboost -i https://pypi.tuna.tsinghua.edu.cn/simple import pandas as pd import joblib#处理中文字体 plt.rcParams[font.family] [sans-serif] plt.rcPar…

真正的奢侈在于自由!如果要写春天,就可以写上春山——早读(逆天打工人爬取热门微信文章解读)

真正的奢侈在于自由 引言Python 代码第一篇 人民日报 如果你要写春天,就不能只写春天第二篇 人民日报 来啦,新闻早班车要闻社会政策 结尾 真正的奢侈在于自由 一辆跑车固然能带来风驰电掣的激情 然而一辆两千不到的山地车 亦能承载骑行者对自然的亲近 对…