问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

cisco 配置

发布网友 发布时间:2023-07-14 12:44

我来回答

3个回答

热心网友 时间:2024-11-19 17:21

R1的配置:
r1#
r1#sh run
Building configuration...

Current configuration : 1521 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname r1
!
ip subnet-zero
!
ip audit notify log
ip audit po max-events 100
!
crypto isakmp policy 1
hash md5
authentication pre-share
group 2
crypto isakmp client configuration address-pool local pool192
!
crypto isakmp client configuration group vclient-group
key vclient-key
pool pool192
!
crypto ipsec transform-set vclient-tfs esp-des esp-md5-hmac
!
crypto dynamic-map template-map 1
set transform-set vclient-tfs
!
crypto map *map isakmp authorization list vclient-group
crypto map *map client configuration address respond
crypto map *map 1 ipsec-isakmp dynamic template-map
!
fax interface-type fax-mail
mta receive maximum-recipients 0
!
interface Ethernet0/0
ip address 10.1.1.100 255.255.255.0
half-plex
crypto map *map
!
interface Serial1/0
ip address 172.16.1.1 255.255.255.0
no fair-queue
!
router ospf 100
log-adjacency-changes
redistribute static
network 10.1.1.0 0.0.0.255 area 0
network 172.16.1.0 0.0.0.255 area 0
!
ip local pool pool192 192.168.1.1 192.168.1.254
ip classless
ip route 192.168.1.0 255.255.255.0 Ethernet0/0
ip http server
ip pim bidir-enable
!
call rsvp-sync
!
mgcp profile default
!
dial-peer cor custom
!
line con 0
line aux 0
line vty 0 4
login
!
end

r1#

R2的配置:
r2>en
r2#sh run
Building configuration...

Current configuration : 743 bytes
!
! Last configuration change at 09:45:04 UTC Thu Nov 4 2004
! NVRAM config last updated at 09:47:55 UTC Thu Nov 4 2004
!
version 12.3
service config
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname r2
!
boot-start-marker
boot-end-marker
!
no aaa new-model
ip subnet-zero
!
ip cef
!
interface FastEthernet0
ip address 172.16.2.1 255.255.255.0
speed auto
no keepalive
!
interface Serial0
ip address 172.16.1.2 255.255.255.0
clockrate 64000
no fair-queue
!
router ospf 100
log-adjacency-changes
network 172.16.1.0 0.0.0.255 area 0
network 172.16.2.0 0.0.0.255 area 0
!
ip classless
no ip http server
!
line con 0
line aux 0
line vty 0 4
login
!
end
r2#

R3的配置:
r3#sh run
Building configuration...

Current configuration : 1391 bytes
!
version 12.2
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname r3
!
logging queue-limit 100
!
ip subnet-zero
!
ip dhcp excluded-address 10.2.2.1
!
ip dhcp pool dhcppool
import all
network 10.2.2.0 255.255.255.0
default-router 10.2.2.1
!
mpls ldp logging neighbor-changes
!
crypto ipsec client ez* vclient
connect auto
group vclient-group key vclient-key
local-address FastEthernet0/0
mode network-extension
peer 10.1.1.100
!
no voice hpi capture buffer
no voice hpi capture destination
!
mta receive maximum-recipients 0
!
interface FastEthernet0/0
ip address 10.1.1.2 255.255.255.0
speed auto
half-plex
crypto ipsec client ez* vclient
!
interface FastEthernet0/1
ip address 10.2.2.1 255.255.255.0
plex auto
speed auto
no keepalive
crypto ipsec client ez* vclient inside
!
router ospf 100
log-adjacency-changes
network 10.1.1.0 0.0.0.255 area 0
network 10.2.2.0 0.0.0.255 area 0
!
router ospf 100
log-adjacency-changes
network 10.1.1.0 0.0.0.255 area 0
network 10.2.2.0 0.0.0.255 area 0
!
ip http server
no ip http secure-server
ip classless
!
call rsvp-sync
!
mgcp profile default
!
dial-peer cor custom
!
line con 0
line aux 0
line vty 0 4
login
!
!
end

r3#
测试:
1. 配置好R3上的* client后,自动进行*连接。可以通过debug cry isa、deb cry ip client ez*、deb cry ip等debug命令输出的信息查看过程与结果。
2. 在R1上扩展ping,source 10.1.1.100 destination 10.2.2.1,通过。
查看show cry ip sa,可以发现数据没有进行加密。
3. 在R1上扩展ping,source 172.16.1.1 destination 10.2.2.1,通过。
查看show cry ip sa,可以发现数据通过加密进行传输。
4. 在R3上扩展ping,source 10.2.2.1 destination 172.16.1.1,通过。
查看show cry ip sa,可以发现数据通过加密进行传输。
5. 在R3上扩展ping,source 10.1.1.2 destination 172.16.1.1,?通过。
查看show cry ip sa,可以发现数据不通过加密。
6. 启动pc * client,ping 172.16.1.1,通过。
在1720上查看show cry ip sa,可以看到数据通过加密进行传输。
7. 在pc * client,ping 10.2.2.1,通过。
在R1和R3上查看show cry ip sa,可以看到数据通过加密进行传输。在R1上show cry isa sa,可以看到两个*连接。
8. 在R3上扩展ping,source 10.2.2.1 destination 192.168.1.10(pc * client获得的ip),通过。查看show cry ip sa,可以发现数据通过加密进行传输。

热心网友 时间:2024-11-19 17:21

PC不能ping通R2的原因是,R2上没有去往PC的路由,应该要在R2上添加两条路由,以便能到达PC。不过这是做VPN,要ping通R2意义不大吧?NAT用不上。通常情况下,全网互通,R1、R2和R3都得有4条路由(全网就4个网段)。

热心网友 时间:2024-11-19 17:22

当然不同,因为R2没有回去的路由。建议把录用弄清楚再来 做这些。

如果什么都不配置的话必须做NAT。并且还要做分离。

按我说的去做吧,不会的再问。
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
年终会活动策划方案 深度解析:第一财经回放,探索财经新风向 逆水寒手游庄园怎么邀请好友同住 逆水寒手游 逆水寒不同区可以一起组队吗? 逆水寒手游 逆水寒怎么进入好友世界? 逆水寒手游 逆水寒怎么去别人的庄园? 使用puppeteer实现将htmll转成pdf 内卷时代下的前端技术-使用JavaScript在浏览器中生成PDF文档 【译】将HTML转为PDF的几种实现方案 变形金刚08动画怎么样 比较C6H5CH2COR与R2C=O发生亲核加成的反应活性(R为简单烷基链)_百度... 德语das Feverwehrauto是什么意思? ...沉淀形式为Al(OH)3,称量形式为Al2O3,则换算因数(F)的表达式是... 在友谊关去越南可以到关口直接办签证吗? 友谊关去越南会不会劝返 女孩扶摔倒老人反被讹,女孩硬核做法让网友点赞,她到底是怎么做的? 我和他的厨艺(cook)一样好 用英语怎么说 英语翻译翻译;我妈妈的厨艺很好,她总能做许多美味的食物,让家人健康... 好厨艺,如何用英文说? 用英语怎么夸奖厨艺不错 他们厨艺都很好。英文句 什么花的花语是厌世 什么花代表讨厌? 新中式怎么搭配有甜酷风?求性价比高的推荐? 台铃电动三轮车是贴牌车吗 台铃电动三轮车有限速吗? 台铃三轮电动车质量怎么样 台铃电动三轮车如何三包 电动车三包有哪些 台铃m1电动三轮车长宽高是多少 人生本来就有很多事是毫无意义的 苯环上的亲电取代反应活性大小怎么分(有苯、甲苯、氯苯、硝基苯)_百 ... 春熙路到郭家桥南公交路线 王府井旁边的锦艺城棉纺西路到二七广场公交路线 甲苯、苯、氯苯和硝基苯哪个活性最强? 苯环上取代基越多,活性越大吗? 从六里桥东(西行)到地铁八宝山站怎么坐公交车,最快 达管营到八大处公交路线 饮品差评怎么写 我从周一到周五都上课用英语怎么说 what days do you have english class?用英语怎么回答? 我们有英语课要么星期一要么星期五 大咖漫画登陆就免费了吗 净水器不换有什么危害 在书包的下面 英语句子怎么写 一级公路 双向四车道 设计时速100km/h路基宽26米 最终宽占地多少米... ...知道治疗结膜炎的眼药水,一天一支的是什么眼药水吗?一天要滴完的... 何署坤书法值钱吗 迪丽热巴和鞠婧祎的颜值谁的更高一点呢? qq炫舞最受欢迎的英文歌曲 买的同人志扣在武汉海关了