hcip第一次实验

子网划分:
由实验要求图可知R1、R2、R4均需两个网段代表使用百兆和千兆时的不同环回,R5需要一个网段代表环回,同时为了路由表尽量少,因此只需将192.168.1.0/24分为8个网段:
192.168.1.0/27(主网段)
192.168.1.32/27(R1环回)
192.168.1.64/27(R1环回)
192.168.1.96/27(R2环回)
192.168.1.128/27(R2环回)
192.168.1.160/27(R4环回)
192.168.1.192/27(R4环回)
192.168.1.224/27(用于R3的DHCP配置)
其中192.168.1.0/27作为主网段,而子网段需要7个网段,对其进行子网划分:
192.168.1.0/30
192.168.1.4/30
192.168.1.8/30
192.168.1.12/30
192.168.1.16/30
192.168.1.20/30
192.168.1.24/30(保留)
192.168.1.28/30(保留)

实验步骤:

1.给路由器配置IP地址和环回

R1
<Huawei>sys
[Huawei]sys R1
[R1]int g 0/0/0
[R1-GigabitEthernet0/0/0]ip address 192.168.1.1 30
[R1-GigabitEthernet0/0/0]int g 0/0/1
[R1-GigabitEthernet0/0/1]ip address 192.168.1.5 30
[R1-GigabitEthernet0/0/1]int LoopBack 0
[R1-LoopBack0]ip address 192.168.1.33 27
[R1-LoopBack0]int LoopBack 1
[R1-LoopBack1]ip address 192.168.1.65 27

R2
<Huawei>sys
[Huawei]sys R2
[R2]int g 0/0/0
[R2-GigabitEthernet0/0/0]ip address 192.168.1.9 30
[R2-GigabitEthernet0/0/0]int g 0/0/01
[R2-GigabitEthernet0/0/1]ip address 192.168.1.2 30
[R2-GigabitEthernet0/0/1]int LoopBack 0
[R2-LoopBack0]ip address 192.168.1.97 27
[R2-LoopBack0]int LoopBack 1
[R2-LoopBack1]ip address 192.168.1.129 27
 

R3
<Huawei>sys
[Huawei]sys R3
[R3]int g 0/0/0
[R3-GigabitEthernet0/0/0]ip address 192.168.1.6 30
[R3-GigabitEthernet0/0/0]int g 0/0/1
[R3-GigabitEthernet0/0/1]ip address 192.168.1.13 30
[R3-GigabitEthernet0/0/1]int g 0/0/2
[R3-GigabitEthernet0/0/2]ip address 192.168.1.225 27

 

R4
<Huawei>sys
[Huawei]sys R4
[R4]int g 0/0/0
[R4-GigabitEthernet0/0/0]ip address 192.168.1.14 30
[R4-GigabitEthernet0/0/0]int g 0/0/1
[R4-GigabitEthernet0/0/1]ip address 192.168.1.10 30
[R4-GigabitEthernet0/0/1]int g 0/0/2
[R4-GigabitEthernet0/0/2]ip address 192.168.1.21 30
[R4-GigabitEthernet0/0/2]int e 0/0/0
[R4-Ethernet0/0/0]ip address 192.168.1.17 30
[R4-Ethernet0/0/0]int loopback 0
[R4-LoopBack0]ip address 192.168.1.161 27
[R4-LoopBack0]int loopback1
[R4-LoopBack1]ip address 192.168.1.193 27

 R5
<Huawei>sys 
[Huawei]sys R5
[R5]int g 0/0/0
[R5-GigabitEthernet0/0/0]ip address 56.1.1.1 24
[R5-GigabitEthernet0/0/0]int g 0/0/2
[R5-GigabitEthernet0/0/2]ip address 192.168.1.22 30
[R5-GigabitEthernet0/0/2]int e 0/0/0
[R5-Ethernet0/0/0]ip address 192.168.1.18 30
[R5-Ethernet0/0/0]int loopback0
[R5-LoopBack0]ip address 5.5.5.5 24

R6
<Huawei>sys
[Huawei]sys R6
[R6]int g 0/0/0
[R6-GigabitEthernet0/0/0]ip address 56.1.1.2 24
[R6-GigabitEthernet0/0/0]int loopback0
[R6-LoopBack0]ip address 6.6.6.6 24

 R3
[R3]dhcp enable
[R3]ip pool 1
[R3-ip-pool-1]network 192.168.1.224 mask 27
[R3-ip-pool-1]gateway-list 192.168.1.225
[R3-ip-pool-1]dns-list 8.8.8.8 8.8.4.4
[R3-ip-pool-1]int g 0/0/2
[R3-GigabitEthernet0/0/2]dhcp select global

2.配置静态路由和缺省

 R1
[R1]ip route-static 0.0.0.0 0.0.0.0 192.168.1.2
[R1]ip route-static 0.0.0.0 0.0.0.0 192.168.1.6
[R1]ip route-static 192.168.1.96 27 192.168.1.2
[R1]ip route-static 192.168.1.128 27 192.168.1.2
[R1]ip route-static 192.168.1.160 27 192.168.1.2
[R1]ip route-static 192.168.1.8 30 192.168.1.2
[R1]ip route-static 192.168.1.12 30 192.168.1.6
[R1]ip route-static 192.168.1.192 27 192.168.1.6
[R1]ip route-static 192.168.1.224 27 192.168.1.6
[R1]ip route-static 192.168.1.32 27 NULL 0
[R1]ip route-static 192.168.1.64 27 NULL 0

 R2
[R2]ip route-static 0.0.0.0 0.0.0.0 192.168.1.10
[R2]ip route-static 192.168.1.32 27 192.168.1.1
[R2]ip route-static 192.168.1.64 27 192.168.1.1
[R2]ip route-static 192.168.1.4 30 192.168.1.1
[R2]ip route-static 192.168.1.224 27 192.168.1.1
[R2]ip route-static 192.168.1.224 27 192.168.1.10
[R2]ip route-static 192.168.1.96 27 NULL 0
[R2]ip route-static 192.168.1.128 27 NULL 0

 R3
[R3]ip route-static 0.0.0.0 0.0.0.0 192.168.1.14
[R3]ip route-static 192.168.1.32 27 192.168.1.5
[R3]ip route-static 192.168.1.64 27 192.168.1.5
[R3]ip route-static 192.168.1.0 30 192.168.1.5
[R3]ip route-static 192.168.1.96 27 192.168.1.5
[R3]ip route-static 192.168.1.128 27 192.168.1.14

 R4
[R4]ip route-static 0.0.0.0 0.0.0.0 192.168.1.22
[R4]ip route-static 0.0.0.0 0.0.0.0 192.168.1.18 preference 61
[R4]ip route-static 192.168.1.96 27 192.168.1.9
[R4]ip route-static 192.168.1.128 27 192.168.1.9
[R4]ip route-static 192.168.1.0 30 192.168.1.9
[R4]ip route-static 192.168.1.32 27 192.168.1.9
[R4]ip route-static 192.168.1.64 27 192.168.1.13
[R4]ip route-static 192.168.1.4 30 192.168.1.13
[R4]ip route-static 192.168.1.224 27 192.168.1.13
[R4]ip route-static 192.168.1.160 27 NULL 0
[R4]ip route-static 192.168.1.192 27 NULL 0
[R4]ip route-static 192.168.1.24 30 NULL 0
[R4]ip route-static 192.168.1.28 30 NULL 0

R5
[R5]ip route-static 0.0.0.0 0.0.0.0 56.1.1.2
[R5]ip route-static 192.168.1.0 24 192.168.1.21
[R5]ip route-static 192.168.1.0 24 192.168.1.17 preference 61

3.R5配置NAT 及端口映射

R5
nat配置
[R5]acl 2000
[R5-acl-basic-2000]rule permit source 192.168.1.0 0.0.0.255
[R5-acl-basic-2000]int g 0/0/0
[R5-GigabitEthernet0/0/0]nat outbound 2000
端口映射
[R5-GigabitEthernet0/0/0]int g 0/0/1
[R5-GigabitEthernet0/0/1]nat server protocol tcp global current-interface 23 ins
ide 192.168.1.33 23
Are you sure to continue?[Y/N]:y

4.R1 配置登录账号和密码

R1
[R1]aaa
[R1-aaa]local-user root privilege level 3 password cipher root
[R1-aaa]local-user root service-type telnet
[R1-aaa]q
[R1]user-interface vty 0 4
[R1-ui-vty0-4]authentication-mode aaa

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

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

相关文章

中小企业实施MES管理系统需要注意的问题

在当今高度自动化的制造业环境中&#xff0c;MES管理系统发挥着越来越重要的作用。作为车间制造运营的核心&#xff0c;MES系统提供了一个集中的平台&#xff0c;使制造商能够实时监控、管理和优化其生产线。本文将深入探讨MES管理系统的定义、实施的好处以及在实施过程中可能遇…

hcip第四天实践

配置地址 【R1】 [r1-Serial4/0/0]ip address 15.0.0.2 24 [r1-GigabitEthernet0/0/0]ip address 192.168.1.1 24 【R2】 [r2-Serial4/0/0]ip address 25.0.0.2 24 [r2-GigabitEthernet0/0/0]ip address 192.168.2.1 24 【R3】 [r3-Serial4/0/0]ip address 35.0.0.2 24 [r3-Gig…

hcip第五天实践

配置缺省路由&#xff1a; [R1]ip route-static 0.0.0.0 0 16.0.0.2 [R1]ip route-static 0.0.0.0 0 116.0.0.2 [R2]ip route-static 0.0.0.0 0 26.0.0.2 [R3]ip route-static 0.0.0.0 0 36.0.0.2 [R4]ip route-static 0.0.0.0 0 46.0.0.2 [R5]ip route-static 0.0.0.0 0 56.0…

JTAG 案例

摘要&#xff1a; 以前看datasheet&#xff0c;到了JTAG一章&#xff0c;一直奇怪为啥需要这么多篇幅来进行介绍。这段时间碰到两个JTAG问题&#xff0c;才把章节浏览了一遍。才理解了 TAP其实由TMS,TCK控制&#xff0c;有时候能扫描器件&#xff0c;但是不能下载是因为TMS,TCK…

hcip第七天笔记

类型LS ID通告者作用范围携带信息 Type-1LSA Router 通告者的RID区域内所有运行单区域本地接口的直连拓扑 Typr-2LSA Network DR接口的地址单个MA网络中DR所在路由器的RID单区域单个MA网络拓扑信息的补充信息 Typr-3LSA Sum-Net(summary) 路由信息的目标网络号ABR&#xff0c;在…

第七次实验hcip

第一步:地址划分 172.16.0.0/16 172.16.0.0/19(area0) 172.16.0.0/24(P2P骨干) 172.16.0.0/30 172.16.0.4/30 172.16.0.8/30 172.16.1.0/24(MA骨干) 172.16.1.0/29 172.16.1.8/29 …

第8天hcip

OSPF的防环 1&#xff0c;域间防环 1&#xff0c;OSPF因为区域之间也传递的是路由信息&#xff0c;所有&#xff0c;存在区域水平分割机制。路由信息是从哪个区域学习到的则将不再回传到这个区域。 2&#xff0c;星型拓扑的区域划分要求本身也是一种防环机制。 2&#xff0c;域…

第10天笔记hcip

BGP --边界网关协议 AS -自治系统---由单- -机构或组织管理的一-些列IP网络及其设备的集合。 1&#xff0c;网络范围太大&#xff0c;协议跑不过来&#xff0c;需要进行划分; 2&#xff0c;自治管理. 为了方便区分和标定不同的AS,我们给每个自治系统设计了- -个编号--- AS号…

hcip第11天笔记

6&#xff0c;BGP的基本配置 1&#xff0c;BGP建邻的基本关系 1&#xff0c;EBGP对等体关系直接建邻 [r1]bgp 1----启动BGP进程---后面的1不是进程号&#xff0c;而是配置路由器所在AS的AS号 [r1-bgp] [r1-bgp]router-id 1.1.1.1---配置RID [r1-bgp]peer 12.0.0.2 as-number-…

ContentProvider和Uri详解

一、使用ContentProvider&#xff08;内容提供者&#xff09;共享数据 ContentProvider在android中的作用是对外共享数据&#xff0c;也就是说你可以通过ContentProvider把应用中的数据共享给其他应用访问&#xff0c;其他应用可以通过ContentProvider对你应用中的数据进行添删…

第13天笔记hcip

1,BGP的路由过滤 1&#xff0c;通过路由策略来进行过滤 1&#xff0c;抓取流量 [r1]ip ip-prefix aa permit 172.16.1.0 24 2配置路由策略 3&#xff0c;在BGP进程中进行调用 2&#xff0c;通过前缀列表进行过滤 1&#xff0c;配置前缀列表 2&#xff0c;在BGP进程中进行调用 3…

android Fragments详解一:概述

Fragment是activity的界面中的一部分或一种行为。你可以把多个Fragment们组合到一个activity中来创建一个多面界面并且你可以在多个activity中重用一个Fragment。你可以把Fragment认为模块化的一段activity&#xff0c;它具有自己的生命周期&#xff0c;接收它自己的事件&#…

hcip第12天笔记

8&#xff0c;路由反射器 Router Reflector --- 路由反射器 --- RR ---- 我们可以通过配置&#xff0c;将某些设备在一定的条件下设置称为路由反射器&#xff0c;之后&#xff0c;该设备将可以反射所学习到的IBGP路由信息。 我们在指定一台路由器称为路由反射器&#xff08;RR&…

BGP联邦实验

一&#xff0c;首先根据要求进行子网划分 172.16.0.0/16 172.16.0.0/24 ---P2P网络 172.16.1.0/24 ---MA网络 172.16.1.0/29 172.16.1.8/29 172.16.1.16/29 172.16.1.24/29 172.16.1.32/29 …

停止坐井观天,是时候让“我个人认为”见鬼去了!

不知道从什么时候开始&#xff0c;在互联网BBS上、在和同学交流一些涉及到强烈个人立场或看法时&#xff0c;我都习惯性的在每句话的前面或后面加上一句&#xff1a;“我个人认为...”。今天反思一下这个习惯是怎么养成的以及这个习惯有没有存在的必要。 跟任何习惯一样&…

第14天hcip笔记

LDP----标签分发协议---主要应用在MPLS的控制层面 MPLS控制器层面需要完成的工作只要就是分配标签。分配标签的前提是本地路由表中得先 存在标签&#xff0c;传递标签的前提也是得具备路由基础。所有&#xff0c;LDP想要正常工作&#xff0c;则需要IGP作为基础 1&#xff0c;分…

FileSystemObject和Folders使用详细介绍

创建FileSystemObject 我们可以利用FileSystemObject来读取文件。一般的步骤如下&#xff1a; 1&#xff09;利用CreateObject来创建FileSystemObject对象 2&#xff09;利用GetFolder来指定搜索的文件夹 3&#xff09;利用Files命令显示文件 4&#xff09;利用For each来遍历整…

hcip第15天笔记

企业网的三层架构 --- 企业网搭建时的一个参考建议方案 园区 --- 工厂&#xff0c;政府机关&#xff0c;商场&#xff0c;写字楼&#xff0c;校园&#xff0c;公园等这些公共场所为了实现数据互通而搭 建的网络我们都可以称为园区网 ---- “城市&#xff0c;除了街道&#xff0…

android 动态壁纸

引用&#xff1a;http://www.ophonesdn.com/article/show/278 http://developer.android.com/resources/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube1/CubeWallpaper1.html 标签 : 动态壁纸 Live Wallpapers 时间壁纸 TimeWall 随着三星Oscar的上市&…

第十五天实验-VLAN

一&#xff0c;创建VLAN [sw1]vlan batch 2 to 6 [sw2]vlan batch 2 to 6 [sw3]vlan batch 2 to 6 二&#xff0c;通过需求修改接口 SW1&#xff1a; [sw1]int g0/0/2 [sw1-GigabitEthernet0/0/2]port link-type access ---将接口设置为access [sw1-GigabitEthernet0/0/2]…