ToB企服应用市场:ToB评测及商务社交产业平台

标题: 小型企业网络组网与配置仿真实验 [打印本页]

作者: 飞不高    时间: 2024-6-19 10:17
标题: 小型企业网络组网与配置仿真实验
 实验要求如下:


 我这里以学号46为例

一、IP 地点规划表

(一)主类网络


(二)子网分别 

必要本身计算有效ip范围
在C类主网络192.168.46.0/24中,我们必要先相识这个网络的子网掩码为255.255.255.0,其二进制表示为11111111.11111111.11111111.00000000。这个网络包罗了从192.168.46.1到192.168.46.254的可用IP地点。
为了分别出5个子网,我们必要思量每个子网至少必要2个IP地点(一个用于网络地点,一个用于广播地点),但现实上,为了现实使用,每个子网至少应该分配3个或更多的IP地点(一个用于网络地点,一个用于广播地点,一个或更多用于主机)。
假如我们假设每个子网至少必要4个IP地点(出于简化的思量),我们可以从主机位中借用3位来分别子网。如许,我们可以得到2^3 = 8个子网掩码块,子网掩码/24 就变为 /27(255.255.255.224)(二进制: 11111111.11111111.11111111.11100000)了可以分别成 8 个子网,每个子网有 32 个地点,此中 30 个是有效的主机地点,但我们只必要5个子网掩码块,够用了。

有效IP范围

子网掩码

网络地点

广播地点


企业网1

VLAN-2

192.168.46.1 - 192.168.46.30

255.255.255.224

192.168.46.0

192.168.46.31

VLAN-3

192.168.46.33 - 192.168.46.62

255.255.255.224

192.168.46.32

192.168.46.63


企业网2

VLAN-2

192.168.46.65 - 192.168.46.94

255.255.255.224

192.168.46.64

192.168.46.95

VLAN-3

192.168.46.97 - 192.168.46.126

255.255.255.224

192.168.46.96

192.168.46.127

路由器

直连链路

192.168.46.129 - 192.168.46.158

255.255.255.224

192.168.46.128

192.168.46.159

(三)IP分配表


IP地点

子网掩码

网关地点




企业网1


VLAN-2

PC0

192.168.46.2

255.255.255.224

192.168.46.1

PC1

192.168.46.3

255.255.255.224

192.168.46.1


VLAN-3

PC2

192.168.46.34

255.255.255.224

192.168.46.33

PC3

192.168.46.35

255.255.255.224

192.168.46.33




企业网2


VLAN-2

PC4

192.168.46.66

255.255.255.224

192.168.46.65

PC5

192.168.46.67

255.255.255.224

192.168.46.65


VLAN-3

PC6

192.168.46.98

255.255.255.224

192.168.46.97

PC7

192.168.46.99

255.255.255.224

192.168.46.97



路由器1

VLAN-2子接口

192.168.46.1

255.255.255.224

-

VLAN-3子接口

192.168.46.33

255.255.255.224

-

与路由器2互联端口

192.168.46.129

255.255.255.224

-



路由器2

VLAN-2子接口

192.168.46.65

255.255.255.224

-

VLAN-3子接口

192.168.46.97

255.255.255.224

-

与路由器1互联端口

192.168.46.130

255.255.255.224

-

(四)VLAN端口分配表


VLAN名称(ID)
端口分配
企业网1
VLAN-2
fa0/0, fa0/1


VLAN-3
fa0/2,fa 0/3

企业网2
VLAN-2
fa0/4,fa 0/5


VLAN-3
fa0/6, fa0/7

二、网络拓扑及参数规划图 


 我方便使用反面的指令请留意连接方向温和序

ctrl+r勾选显示端口(ip地点什么的是我本身手动写的不消管)
 配置每个电脑的ip地点、子网掩码、网关地点


交换机VLAN配置

左边交换机(留意:指令中有关的ip都是本身表中对应的ip)

  1. Switch>enable
  2. Switch#config terminal
  3. Enter configuration commands, one per line.  End with CNTL/Z.
  4. Switch(config)#vlan 2
  5. Switch(config-vlan)#exit
  6. Switch(config)#int f0/1
  7. Switch(config-if)#switchport mode access
  8. Switch(config-if)#switchport access vlan 2
  9. Switch(config-if)#exit
  10. Switch(config)#int f0/2
  11. Switch(config-if)#switchport mode access
  12. Switch(config-if)#switchport access vlan 2
  13. Switch(config-if)#exit
  14. Switch(config)#vlan 3
  15. Switch(config-vlan)#exit
  16. Switch(config)#int f0/3
  17. Switch(config-if)#switchport mode access
  18. Switch(config-if)#switchport access vlan 3
  19. Switch(config-if)#exit
  20. Switch(config)#int f0/4
  21. Switch(config-if)#switchport mode access
  22. Switch(config-if)#switchport access vlan 3
  23. Switch(config-if)#exit
复制代码
  1. Switch(config)#int f0/5
  2. Switch(config-if)#switchport mode trunk
  3. Switch(config-if)#
复制代码
上面指令提取出来如下 
  1. enable
  2. config terminal
  3. vlan 2
  4. exit
  5. int f0/1
  6. switchport mode access
  7. switchport access vlan 2
  8. exit
  9. int f0/2
  10. switchport mode access
  11. switchport access vlan 2
  12. exit
  13. vlan 3
  14. exit
  15. int f0/3
  16. switchport mode access
  17. switchport access vlan 3
  18. exit
  19. int f0/4
  20. switchport mode access
  21. switchport access vlan 3
  22. exit
  23. int f0/5
  24. switchport mode trunk
复制代码

右边交换机

  1. Switch>enable
  2. Switch#config terminal
  3. Enter configuration commands, one per line.  End with CNTL/Z.
  4. Switch(config)#vlan 2
  5. Switch(config-vlan)#exit
  6. Switch(config)#int f0/1
  7. Switch(config-if)#switchport mode access
  8. Switch(config-if)#switchport access vlan 2
  9. Switch(config-if)#exit
  10. Switch(config)#int f0/2
  11. Switch(config-if)#switchport mode access
  12. Switch(config-if)#switchport access vlan 2
  13. Switch(config-if)#exit
  14. Switch(config)#vlan 3
  15. Switch(config-vlan)#exit
  16. Switch(config)#int f0/3
  17. Switch(config-if)#switchport mode access
  18. Switch(config-if)#switchport access vlan 3
  19. Switch(config-if)#exit
  20. Switch(config)#int f0/4
  21. Switch(config-if)#switchport mode access
  22. Switch(config-if)#switchport access vlan 3
  23. Switch(config-if)#exitSwitch(config)#
复制代码

  1. Switch(config)#int f0/5
  2. Switch(config-if)#switchport mode trunk
  3. Switch(config-if)#
复制代码
 上面指令提取出来如下 
  1. enable
  2. config terminal
  3. vlan 2
  4. exit
  5. int f0/1
  6. switchport mode access
  7. switchport access vlan 2
  8. exit
  9. int f0/2
  10. switchport mode access
  11. switchport access vlan 2
  12. exit
  13. vlan 3
  14. exit
  15. int f0/3
  16. switchport mode access
  17. switchport access vlan 3
  18. exit
  19. int f0/4
  20. switchport mode access
  21. switchport access vlan 3
  22. exit
  23. int f0/5
  24. switchport mode trunk
复制代码
单臂路由配置 

左路由(此中涉及的地点写你本身路由器1的VLAN子接口的IP地点和子网掩码)

  1. Router>en
  2. Router#config terminal
  3. Enter configuration commands, one per line.  End with CNTL/Z.
  4. Router(config)#int fa0/0
  5. Router(config-if)#no shutdown
  6. Router(config-if)#
  7. %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
  8. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
  9. Router(config-if)#int fa0/0.2
  10. Router(config-subif)#
  11. %LINK-5-CHANGED: Interface FastEthernet0/0.2, changed state to up
  12. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.2, changed state to up
  13. Router(config-subif)#encapsulation dot1Q 2
  14. Router(config-subif)#ip add 192.168.46.1 255.255.255.224
  15. Router(config-subif)#int fa0/0.3
  16. Router(config-subif)#
  17. %LINK-5-CHANGED: Interface FastEthernet0/0.3, changed state to up
  18. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.3, changed state to up
  19. Router(config-subif)#encapsulation dot1Q 3
  20. Router(config-subif)#ip add 192.168.46.33 255.255.255.224
  21. Router(config-subif)#
复制代码
 上面指令提取出来如下  
  1. en
  2. config terminal
  3. int fa0/0
  4. no shutdown
  5. int fa0/0.2
  6. encapsulation dot1Q 2
  7. ip add 192.168.46.1 255.255.255.224
  8. int fa0/0.3
  9. encapsulation dot1Q 3
  10. ip add 192.168.46.33 255.255.255.224
复制代码

右边路由

  1. Router>en
  2. Router#config terminal
  3. Enter configuration commands, one per line.  End with CNTL/Z.
  4. Router(config)#int fa0/0
  5. Router(config-if)#no shutdown
  6. Router(config-if)#
  7. %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
  8. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
  9. Router(config-if)#int fa0/0.2
  10. Router(config-subif)#
  11. %LINK-5-CHANGED: Interface FastEthernet0/0.2, changed state to up
  12. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.2, changed state to up
  13. Router(config-subif)#encapsulation dot1Q 2
  14. Router(config-subif)#ip add 192.168.46.65 255.255.255.224
  15. Router(config-subif)#int fa0/0.3
  16. Router(config-subif)#
  17. %LINK-5-CHANGED: Interface FastEthernet0/0.3, changed state to up
  18. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.3, changed state to up
  19. Router(config-subif)#encapsulation dot1Q 3
  20. Router(config-subif)#ip add 192.168.46.97 255.255.255.224
  21. Router(config-subif)#
复制代码
 上面指令提取出来如下   
  1. en
  2. config terminal
  3. int fa0/0
  4. no shutdown
  5. int fa0/0.2
  6. encapsulation dot1Q 2
  7. ip add 192.168.46.65 255.255.255.224
  8. int fa0/0.3
  9. encapsulation dot1Q 3
  10. ip add 192.168.46.97 255.255.255.224
复制代码

 静态路由配置

(ip add 本路由器地点 子网掩码)
(ip route 目标地点 子网掩码 下一跳)
左边路由
  1. Router>en
  2. Router#config terminal
  3. Enter configuration commands, one per line.  End with CNTL/Z.
  4. Router(config)#int fa0/1
  5. Router(config-if)#ip address 192.168.46.129 255.255.255.224
  6. Router(config-if)#no shutdown
  7. Router(config-if)#
  8. %LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up
  9. Router(config-if)#ip route 192.168.46.96 255.255.255.224 192.168.46.130
  10. Router(config)#int fa0/1
  11. Router(config-if)#ip route 192.168.46.64 255.255.255.224 192.168.46.130
  12. Router(config)#
复制代码
 上面指令提取出来如下   
  1. en
  2. config terminal
  3. int fa0/1
  4. ip address 192.168.46.129 255.255.255.224
  5. no shutdown
  6. ip route 192.168.46.96 255.255.255.224 192.168.46.130
  7. int fa0/1
  8. ip route 192.168.46.64 255.255.255.224 192.168.46.130
复制代码
右边路由
  1. Router>en
  2. Router#config terminal
  3. Enter configuration commands, one per line.  End with CNTL/Z.
  4. Router(config)#int fa0/1
  5. Router(config-if)#ip address 192.168.46.130 255.255.255.224
  6. Router(config-if)#ip route 192.168.46.0 255.255.255.224 192.168.46.129
  7. Router(config)#int fa0/1
  8. Router(config-if)#ip route 192.168.46.32 255.255.255.224 192.168.46.129
  9. Router(config)#int fa0/1
  10. Router(config-if)#no shutdown
  11. Router(config-if)#
  12. %LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up
  13. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
  14. Router(config-if)#
复制代码
 上面指令提取出来如下   
  1. en
  2. config terminal
  3. int fa0/1
  4. ip address 192.168.46.130 255.255.255.224
  5. ip route 192.168.46.0 255.255.255.224 192.168.46.129
  6. int fa0/1
  7. ip route 192.168.46.32 255.255.255.224 192.168.46.129
  8. int fa0/1
  9. no shutdown
复制代码
三、交换机配置图

(一)VLAN配置

1、交换机1的VLAN配置图

  1. show vlan brief
复制代码

 2、交换机2的VLAN配置图

  1. show vlan brief
复制代码
 

(二)TRUNK配置

1、交换机1接口的TRUNK状态图

  1. show interface trunk
复制代码

 2、交换机2的VLAN配置图

  1. show interface trunk
复制代码


四、路由器配置图

(一)路由器1

1、路由器1端口配置图

  1. show ip interface brief
复制代码
2、路由器1的静态路由表项


  1. show ip interface brief
复制代码

(二)路由器2

1、路由器2端口配置图

  1. show ip route
复制代码
2、路由器2的静态路由表项


  1. show ip route
复制代码
 五、Ping通图



实验陈诉其他部分 

实验项目

实验3:小型企业网络组网与配置仿真实验

类别
验证性

£
实验目的
1.把握配置交换机VLAN和TRUNK链路的基本方法和步调;
2.把握规划和配置路由器接口IP地点的基本方法;
3.把握在路由器上配置单臂路由实现VLAN间通信的基本方法。
实验任务与要求
1.在Packet Tracer模仿情况下搭建一个小型企业网络;
2.规划并配置网络的IP参数、VLAN、TRUNK链路和单臂路由;
3.测试网络的连通性。
实验原理(技能)
小型企业网络组网与配置仿真实验通过单臂路由、VLAN分别、静态路由配置实现差别VLAN之间的通信。
单臂路由:在路由器的一个接口上通过配置子接口(逻辑接口)的方式,实现原来相互隔离的差别VLAN之间的互联互通。
VLAN(Virtual LAN,虚拟局域网):在交换式局域网的基础上,对连接到的第二层交换机端口的网络用户进行逻辑分组,不受网络用户物理位置的限定。各个VLAN逻辑分组之间彼此隔离,互相不能访问,不仅实现了广播域的分隔,而且增强了网络的安全性。
路由器差别接口的IP不能位于同一网段;路由器连接内网的网关接口IP应该与内网IP位于同一网段;路由器直连链路两端的IP应该位于同一网段。
实验仪器装备(情况条件)

硬件情况:PC终端或笔记本电脑一台
软件情况:Windows操纵系统和PT模仿软件

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 ToB企服应用市场:ToB评测及商务社交产业平台 (https://dis.qidao123.com/) Powered by Discuz! X3.4