络腮胡菲菲 发表于 2024-9-1 14:00:41

网络底子知识--网络硬件设备先容(含eNSP模仿器命令使用)

  华为 eNSP 模仿器安装教程可参考:华为 eNSP 模仿器安装教程(内含下载地址)_ensp下载-CSDN博客
   华为eNSP(Enterprise Network Simulation Platform)模仿器是一款由华为提供的免费网络仿真平台,主要用于模仿和测试华为的网络设备,如路由器、交换机、防火墙等。它允许网络工程师、学生和研究人员在虚拟环境中构建、配置和测试网络拓扑,而无需实际的硬件设备。

交换机

交换机可实现局域网内与多台主机通讯。
   交换机基于MAC地址(Media Access Control address)来决定数据包应该发往哪个端口。当设备毗连到交换机时,交换机会学习并记录设备的MAC地址和所毗连的端口,形成一个MAC地址表。当数据包到达交换机时,它会查找MAC地址表,将数据包直接转发到目的设备所在的端口,而不是广播到所有端口。
交换机企业中的主要应用:


[*] 局域网环境中的终端设备的接入
[*] 以太网数据帧的交换,根据目的mac地址转发数据帧
[*] 学习mac地址,并维护mac地址表
[*] 可以防止交换网络(局域网环境)产生环路
交换机识别数据地址信息:
利用交换机作为数据传输的中转设备,数据是否可以或许正常传输到目的终端设备上就会变得尤为关键;
其中交换机就会识别中转数据包链路层(二层)中的MAC头部信息,从而获取源目MAC地址信息;
MAC地址信息简介:


[*] MAC地址有48位,通常被表示为点分十六进制数;
[*] MAC地址环球唯一,由IEEE对OUI举行管理和分配;
[*] MAC地址由两部门组成,分别是供应商代码和序列号;
https://i-blog.csdnimg.cn/direct/d8788834fe984f8d851541d73932ffab.png
交换机通讯过程: 

设置PC1的IP:
https://i-blog.csdnimg.cn/direct/ec5994f80d324b5994dc8c7cf4eb6f1f.png
 设置PC2的IP:
https://i-blog.csdnimg.cn/direct/7fdf2877ca534486b27a7475af2e8fc6.png
开启设备:
https://i-blog.csdnimg.cn/direct/19d07727793147ebb87cb14a531b9c02.png用PC1主机pingPC2主机用来测试网络是否通,可以ping通;交换机(作为流量节点)右击选择【流量抓包】检察流量环境:
https://i-blog.csdnimg.cn/direct/80f13b77b69446c7a8157db612d5eba3.png
   1、Ethernet II, Src: HuaweiTe 00:40:64 (54:89:98:08:40:64), Dst: HuaweiTe 3c:1c:97 (54:89:98:3c:1c:97)
源MAC地址是54:89:98:08:40:64(PC1主机),目的MAC地址是54:89:98:3c:1c:97 (PC2主机)

2、Internet Protocol Version 4, Src: 192.168.10.1, Dst: 192.168.10.2
IPv4协议的信息,源IP地址192.168.10.1(PC1主机)和目的IP地址192.168.10.2(PC2主机)

3、Internet control Message Protocol
表示数据包使用的是ICMP协议
路由器

局域网与局域网之间通过路由器通讯;路由器就可以作为两个网络之间的网关,转发数据包。
路由器企业中的主要应用:


[*] 网络互连:路由器支持各种局域网和广域网接口,主要用于互连局域网和广域网,实现差别网络互相通讯;
[*] 数据处置处罚:提供包罗分组过滤、分组转发、优先级、复用、加密、压缩和防火墙等功能;
[*] 网络管理:路由器提供包罗路由器配置管理、性能管理、容错管理和流量控制等功能。
路由器识别数据地址信息:
利用路由器作为数据传输的中转设备,举行数据中转时不能再使用MAC地址作为目的终端的识别信息;
因为若仍旧利用MAC地址举行识别,会造成广播风暴标题的产生,本身路由器是可以有效隔离广播风暴的;
而且通过上面讲解的互联网数据通讯原理的过程,链路层封装的MAC地址信息会在跨网络环境通讯时厘革;
因此路由器主要会识别中转数据包网络层(三层)中的IP头部信息,从而获取源目IP地址信息;
IP地址信息简介:


[*] IP地址是由32位二进制数字序列组成的数字序列,采取点将32位数字举行分割为4段;
[*] IP地址在实际应用环境会分别为两种类型:公网地址和私网地址
[*] IP地址在信息的构成主要会包含网络地址部门和主机地址部门
https://i-blog.csdnimg.cn/direct/6a0c5e8eebda492895bd31173b492820.png
路由器在毗连设备之后构建路由表的方式主要常见的有三种环境:


[*] 直连路由信息构建:主要是路由器毗连哪个网络环境自动获取的网路路由条目信息;
[*] 静态路由信息构建:主要是路由器管理人员根据网络拓扑自行手动规划配置的信息;
[*] 动态路由信息构建:主要是路由器管理人员根据网络拓扑使设备自主学习路由信息;

 直连路由信息构建:

设置PC3的IP:https://i-blog.csdnimg.cn/direct/62874118115f4b6791d9cb89239e5c88.png
https://i-blog.csdnimg.cn/direct/81a7ab29e3494bf08ce2566605746255.png1、用PC1主机pingPC3主机用来测试网络是否通;未能ping通;ping网关(192.168.10.254)也未能ping通;需配置路由器信息。
https://i-blog.csdnimg.cn/direct/a33133c7ded645759ede2e092e827879.png
2、配置路由器接口信息:
eNSP常用命令:
   <Huawei>system-view(sys)                                 -- 进入特权模式  Ctrl+Z 返回普通模式 
Enter system view, return user view with Ctrl+Z
display current-configuration(dis cu)           -- 检察设备全部配置信息
display saved-configuration(dis save)         -- 检察设备磁盘中的配置
<Huawei>save                                                    -- 将内存中的配置信息生存到设备磁盘中
display ip interface brief(dis ip int br)          -- 检察设备网口的状态
display interface brief                                 -- 检察设备所有网口信息
display ip routing-table                                -- 检察体系路由表信息
sysname  R1                                          --修改设备名称(为R1)
网络设备接口地址配置: 
   PC3:
int g0/0/0
ip add 192.168.20.254 255.255.255.0
undo shutdown

PC1:
int g0/0/1
ip add 192.168.10.254 255.255.255.0
undo shutdown
 
 https://i-blog.csdnimg.cn/direct/1f67eeb348734c4990a8211db70cc67e.png
重新PC1主机pingPC3主机可以ping通:(如还不通大概主机网关配置错误导致)https://i-blog.csdnimg.cn/direct/6e044f7cea2b46568133bd5a913b33a1.png点击交换机(作为流量节点)右击选择【流量抓包】抓取【GE0/0/1】流量数据:
发送包:
https://i-blog.csdnimg.cn/direct/cca7b69e15ca483f8c2a9024eeae590f.png
返回包:https://i-blog.csdnimg.cn/direct/1c0f75f725214903a2b9687988424145.png
https://i-blog.csdnimg.cn/direct/47812c2bbe264763a065b8575cde3da3.png
配置多个路由器实现差别网络通讯
1、直连路由信息配置:在路由器接口上配置好地址,并激活路由器接口
   interface GigabitEthernet0/0/0
ip address 192.168.10.254 255.255.255.0 
interface GigabitEthernet0/0/1
ip address 192.168.20.254 255.255.255.0   

长处:配置通讯过程简朴
缺点:当两个网络超过多个路由器时,无法实现通讯

https://i-blog.csdnimg.cn/direct/947badd14fe3457eba87bed268e09870.png
配置接口过程:
AR1路由器:(右击点击CLI)
<Huawei>sys
Enter system view, return user view with Ctrl+Z.
sysname AR1
int g0/0/0
ip add 12.0.0.1 255.255.255.0
Jul 11 2024 20:57:53-08:00 AR1 %%01IFNET/4/LINK_STATE(l):The line protocol IP
on the interface GigabitEthernet0/0/0 has entered the UP state.
int g0/0/1
ip add 192.168.10.254 255.255.255.0
Jul 11 2024 21:00:21-08:00 AR1 %%01IFNET/4/LINK_STATE(l):The line protocol IP
on the interface GigabitEthernet0/0/1 has entered the UP state.
undo shutdown
Info: Interface GigabitEthernet0/0/1 is not shutdown.
https://i-blog.csdnimg.cn/direct/2ae2b6096977400f8e733ff5274e4527.png
AR2路由器:(右击点击CLI)
<Huawei>
<Huawei>sys
Enter system view, return user view with Ctrl+Z.
sysname AR2
int g0/0/0
ip add 12.0.0.2 255.255.255.0
Jul 11 2024 21:09:09-08:00 AR2 %%01IFNET/4/LINK_STATE(l):The line protocol IP
on the interface GigabitEthernet0/0/0 has entered the UP state.
undo shutdown
Info: Interface GigabitEthernet0/0/0 is not shutdown.
int g0/0/1
ip add 23.0.0.3 255.255.255.0
Jul 11 2024 21:12:55-08:00 AR2 %%01IFNET/4/LINK_STATE(l):The line protocol IP
on the interface GigabitEthernet0/0/1 has entered the UP state.
undo shutdown
Info: Interface GigabitEthernet0/0/1 is not shutdown.
 AR3路由器:(右击点击CLI)
<Huawei>
<Huawei>sys
Enter system view, return user view with Ctrl+Z.
sysname AR3
int g0/0/0
ip add 23.0.0.4 255.255.255.0
Jul 11 2024 21:15:53-08:00 AR3 %%01IFNET/4/LINK_STATE(l):The line protocol IP
on the interface GigabitEthernet0/0/0 has entered the UP state.
undo shutdown
Info: Interface GigabitEthernet0/0/0 is not shutdown.
int g0/0/1
ip add 192.168.20.254 255.255.255.0
Jul 11 2024 21:17:35-08:00 AR3 %%01IFNET/4/LINK_STATE(l):The line protocol IP
on the interface GigabitEthernet0/0/1 has entered the UP state.
undo shutdown
Info: Interface GigabitEthernet0/0/1 is not shutdown.
https://i-blog.csdnimg.cn/direct/3b82825878164a11b44b13a726ebb3e5.png
测试每段网络是否通
PC1主机pingAR1路由测试: 通
https://i-blog.csdnimg.cn/direct/3fc84d0b393b4a8b8e04427fa4670165.png   AR1路由pingAR2测试:通https://i-blog.csdnimg.cn/direct/03f3aa9a7d3b43ce96f7d15d26fefb8e.png
  AR2路由pingAR3测试:通https://i-blog.csdnimg.cn/direct/98b465598a0144e08894e78de89176ca.png AR3路由pingPC3测试:通
https://i-blog.csdnimg.cn/direct/7f041acd303849e2b8a2e348dfba0c73.png
 PC1主机pingPC3主机测试:不通
https://i-blog.csdnimg.cn/direct/a9cf7e2c767042cbaab7e8ae827252e2.png
不通缘故原由:路由器中路由表中没有此网段信息
查询方式:(AR1路由器路由表)
sys--进入
display ip routing-table--查询 https://i-blog.csdnimg.cn/direct/adce3ba833db403997fbe6677fe4454f.png

实现超过多个路由器举行数据包转发的方法:


方法一:配置静态路由信息 (静态默认路由配置)
方法二:配置动态路由信息 (应用动态路由协议) 
方法一静态路由信息配置:1、手工在路由表中添加需要的路由信息

ip route-static 目标网段 掩码信息 下一跳地址
如:
ip route-static 192.168.20.0  255.255.255.0 12.0.0.2   AR1路由器 
192.168.20.0:(PC1>PC3)
ip route-static 192.168.20.0  255.255.255.0 12.0.0.2  PC1>PC3
AR2路由器 
192.168.20.0:(PC1>PC3)
ip route-static 192.168.20.0  255.255.255.0 23.0.0.4  
192.168.10.0:(PC3>PC1)
ip route-static 192.168.10.0  255.255.255.0 12.0.0.1
AR3路由器:
192.168.10.0:(PC3>PC1)
ip route-static 192.168.10.0  255.255.255.0 23.0.0.3
长处:配置好路由条目信息后,会立即见效
缺点:配置过程会非常复杂
配置过程:
AR1
sys
ip route-static 192.168.20.0  255.255.255.0 12.0.0.2
display ip routing-table https://i-blog.csdnimg.cn/direct/82d0dc229a2c42a9b273d1d90dee9c88.png AR2
sys
ip route-static 192.168.20.0  255.255.255.0 23.0.0.4
ip route-static 192.168.10.0  255.255.255.0 12.0.0.1
display ip couting-table https://i-blog.csdnimg.cn/direct/f2d7c486da40425aaec00c39b27aee2e.png
AR3
sys
ip route-static 192.168.10.0  255.255.255.0 23.0.0.3
display ip couting-table https://i-blog.csdnimg.cn/direct/5c839f6069e9407882da02e56c80fbd8.png ping测试:
PC1pingPC3通
https://i-blog.csdnimg.cn/direct/b8e587b13e834ff2b772324831445038.png
 PC3pingPC1通
https://i-blog.csdnimg.cn/direct/a1b0eacbb14b43e2b84caa133297a720.png
仅两台主机直接的通讯配置完成。
方法一静态路由信息配置:2、静态默认路由配置(保举)

当有多个通讯的节点之间需要互通时(PC1 PC3 PC4....),配置信息如下(赤色字体):
   
AR1路由器(企业路由器) 
192.168.10.0-->20 30 ...
ip route-static 目的网段 掩码信息 下一跳地址
ip route-static 192.168.20.0  255.255.255.0 12.0.0.2
ip route-static 192.168.30.0  255.255.255.0 12.0.0.2
....
ip route-static 0.0.0.0 0.0.0.0  12.0.0.2  ----静态默认配置(直接一条命令替代)

AR3路由器(企业路由器)  
192.168.20.0-->10 30 ...
ip route-static 目的网段 掩码信息 下一跳地址
ip route-static 192.168.10.0  255.255.255.0 23.0.0.3
ip route-static 192.168.30.0  255.255.255.0 23.0.0.3
...
ip route-static 0.0.0.0 0.0.0.0  23.0.0.3  ----静态默认配置(直接一条命令替代)

AR4路由器(企业路由器)  
192.168.30.0-->10 20 ...
ip route-static 目的网段 掩码信息 下一跳地址
ip route-static 192.168.10.0  255.255.255.0 24.0.0.5
ip route-static 192.168.20.0  255.255.255.0 24.0.0.5
...
ip route-static 0.0.0.0 0.0.0.0  24.0.0.5  ----静态默认配置(直接一条命令替代)

AR2路由器(运营商路由) 
ip route-static 目的网段 掩码信息 下一跳地址
ip route-static 192.168.10.0  255.255.255.0 12.0.0.1
ip route-static 192.168.20.0  255.255.255.0 23.0.0.4
ip route-static 192.168.30.0  255.255.255.0 24.0.0.6
 
静态默认路由配置 -- 简化企业级路由器的路由配置
 拓补图:
https://i-blog.csdnimg.cn/direct/c9478f69ae5744b5bf8da3315691d213.png
AR2 静态默认配置:
https://i-blog.csdnimg.cn/direct/ff7e4b724c8641e3bc5eb22668507ce7.png
AR2路由配置GE2/0/0 接口信息: 
int g2/0/0
ip add 24.0.0.5 255.255.255.0
Jul 12 2024 17:59:33-08:00 AR2 %%01IFNET/4/LINK_STATE(l):The line protocol IP
on the interface GigabitEthernet2/0/0 has entered the UP state.
undo shutdown
Info: Interface GigabitEthernet2/0/0 is not shutdown. 按拓补图PC4设置IP: 
https://i-blog.csdnimg.cn/direct/453de8cd08ed43f8a4d1ac84b9e28d54.png 按拓补图配置AR4路由接口信息:(其他路由器已配置)
<Huawei>sys
sysname AR4
int g0/0/0
ip add 24.0.0.6 255.255.255.0
undo shutdown
int g0/0/1
ip add 192.168.30.254 255.255.255.0
undo shutdown 清除之前手动添加的路由表信息: 
   AR1:
dis current-configuration | include static
undo ip route-static 192.168.20.0 255.255.255.0 12.0.0.2
AR3:
dis current-configuration | include static
undo ip route-static 192.168.20.0 255.255.255.0 12.0.0.2
AR4:
dis current-configuration | include static
未设置
 设置静态默认路由配置过程:

AR1路由器(企业路由器) :

1、配置路由接口信息(已配置)
2、配置默认下一跳地址:
ip route-static 0.0.0.0 0.0.0.0  12.0.0.2 display ip routing-table --查询路由表  
https://i-blog.csdnimg.cn/direct/74dbde4c70954fff9a604a6be68f8916.png
 AR1路由配置原理:
https://i-blog.csdnimg.cn/direct/983e53ab0d7743fca6b9c47ad2139366.png
 AR3路由器(企业路由器) :

1、配置路由接口信息(已配置)
2、配置默认下一跳地址:
ip route-static 0.0.0.0 0.0.0.0  23.0.0.3 display ip routing-table --查询路由表  
https://i-blog.csdnimg.cn/direct/ecd4d86f387d4835ba1674141eaba0c3.png
AR4路由器(企业路由器) :

1、配置路由接口信息(已配置)
2、配置默认下一跳地址:
ip route-static 0.0.0.0 0.0.0.0  24.0.0.5 display ip routing-table --查询路由表 
https://i-blog.csdnimg.cn/direct/3ce379f167eb4044bb90443cb73204bb.png
AR2路由器(运营商路由) :

1、配置路由接口信息(已配置)
2、配置默认下一跳地址:
ip route-static 192.168.10.0  255.255.255.0 12.0.0.1
ip route-static 192.168.20.0  255.255.255.0 23.0.0.4
ip route-static 192.168.30.0  255.255.255.0 24.0.0.6 display ip routing-table --查询路由表  
https://i-blog.csdnimg.cn/direct/5899977fc3e44129965cf94eb6bbec18.png
ping测试:

PC1pingPC3、PC4:通
https://i-blog.csdnimg.cn/direct/1bed79c98503454ca15a4e7f0d1836df.png
PC3pingPC1、PC4:通 
https://i-blog.csdnimg.cn/direct/e696779a12f745509b4ec63a06e65a7f.png
 PC4pingPC1、PC3:通 https://i-blog.csdnimg.cn/direct/a7e9a120add745c588bf93aa946df21b.png
多设备通讯配置完成。
 方法二:配置动态路由信息 (应用动态路由协议) 

动态路由的出现主要为相识决静态路由在大型网络架构中配置过于复杂的标题;
并且利用动态路由可以实现路由器之间自主学习路由条目信息;
总之通过在路由器上运行动态路由协议,使得路由器之间可以或许交互“用于路由计算的信息”;
从而使路由器之间动态的“学习”到网络中的路由。
原理:

动态路由学习过程:

步骤一:
在没有举行动态路由协议配置时,路由器之间只能获取直连路由条目信息:
https://i-blog.csdnimg.cn/direct/2c45e1a7f0a248af8393cfa937aacbed.png
步骤二:
在已经举行动态路由协议配置后,路由器之间初次举行路由信息交换过程(路由学习过程):
 https://i-blog.csdnimg.cn/direct/cfb5c9da497e40c08f344fe77f95eebe.png
步骤三:
初次举行路由信息交换过程后,再下一个路由更新到来会,会再次学习未知的路由信息,只到没有可学习的为止。
   https://i-blog.csdnimg.cn/direct/86abe303e6d74881ad6faec47b28814c.png
动态路由配置过程: 

1、清除之前添加的路由表信息: 
   AR1:
dis current-configuration | include static
ip route-static 0.0.0.0 0.0.0.0 12.0.0.2
undo ip route-static 0.0.0.0 0.0.0.0 12.0.0.2

AR2:
dis current-configuration | include static
ip route-static 192.168.10.0 255.255.255.0 12.0.0.1
ip route-static 192.168.20.0 255.255.255.0 23.0.0.4
ip route-static 192.168.30.0 255.255.255.0 24.0.0.6
undo ip route-static 192.168.10.0 255.255.255.0 12.0.0.1
undo ip route-static 192.168.20.0 255.255.255.0 23.0.0.4
undo ip route-static 192.168.30.0 255.255.255.0 24.0.0.6

AR3:
dis current-configuration | include static
ip route-static 0.0.0.0 0.0.0.0 23.0.0.3
undo ip route-static 0.0.0.0 0.0.0.0 23.0.0.3

AR4:
dis current-configuration | include static
ip route-static 0.0.0.0 0.0.0.0 24.0.0.5
undo ip route-static 0.0.0.0 0.0.0.0 24.0.0.5
拓补图:
https://i-blog.csdnimg.cn/direct/251369eef83a4419b9c06c9c32d75a56.png

动态路由信息配置:自动学习路由信息(RIP)
rip                      --- rip协议;定义用什么方法,实现学习其他路由器中路由信息
network 192.168.10.0     --- 通知其他路由器,我的直连路由信息
network 12.0.0.0             --- 通知其他路由器,我的直连路由信息
   AR1:
rip                
network 192.168.10.0  
network 12.0.0.0  

AR2:
rip                  
network 12.0.0.0
network 23.0.0.0
network 24.0.0.0

AR3: 
rip                  
network 192.168.30.0
network 24.0.0.0

AR4:
rip
network 192.168.30.0
network 24.0.0.0
长处:可以简化网络管理难度(大型网络布局)
缺点:网络发生变更后,恢复网络时间比较长

2、路由器配置过程:
AR1:
display ip routing-table  --查询路由表信息找到直连路由信息:
https://i-blog.csdnimg.cn/direct/bf42d01fa1e0462b945b2546fe013a06.png
<AR1>sys
rip
display ip routing-table
network 192.168.10.0
network 12.0.0.0
AR2:
display ip routing-table  --查询路由表信息找到直连路由信息:
https://i-blog.csdnimg.cn/direct/1523d8dbadc84526aa095e40d23abd9a.png
<AR1>sys
rip
display ip routing-table
network 12.0.0.0
network 23.0.0.0
network 24.0.0.0 https://i-blog.csdnimg.cn/direct/4426ac3ad3044f64a759ed0e3a74cf28.png
AR3:
display ip routing-table  --查询路由表信息找到直连路由信息:
https://i-blog.csdnimg.cn/direct/ed7600ceae514839a2f974236ace55f4.png
<AR3>sys
rip
display ip routing-table
network 192.168.20.0
network 23.0.0.0
AR4:
display ip routing-table  --查询路由表信息找到直连路由信息:
https://i-blog.csdnimg.cn/direct/d38f11a29f7c4018a672aab49966b1c1.png
<AR4>sys
rip
display ip routing-table
network 192.168.30.0
network 24.0.0.0
ping测试:

都可以ping通
https://i-blog.csdnimg.cn/direct/88f234d5337b4af7937e77361ccec925.png
https://i-blog.csdnimg.cn/direct/94091a08a8be4a25bd21d757bc87ec7b.png
https://i-blog.csdnimg.cn/direct/136212461e1743539173c56cb0a5133f.png
假设AR3路由器变更网段需调整的配置信息:

接口GE 0/0/1 变更网段为50网段;即192.168.50.254
https://i-blog.csdnimg.cn/direct/69a1da9be88d4f14839bd3859c8c2d81.png
 PC3重设ip地址:
https://i-blog.csdnimg.cn/direct/0f2e1d3ffc6c4ca88f2d3b37f52c10db.png
 AR3路由器修改信息:
<AR3>sys   --进入

int g0/0/1--选择路由器接口

ip add 192.168.50.254 255.255.255.0--添加新网关信息

dis ip int br--查看路由器上所有接口的简要IP配置信息

rip 1 --进入rip 1 (进入入RIP路由协议的配置模式,编号为1)

undo network 192.168.20.0--删除原20网段信息(从RIP路由协议中移除了192.168.20.0网络的通告)

network 192.168.50.0--添加20网段信息(将192.168.50.0网络加入到RIP协议中,以便该网络的信息可以通过RIP协议与其他路由器共享。)

quit--退出

<AR3>save--保存 https://i-blog.csdnimg.cn/direct/e8a4eb8c1db34d569f0ac234075ea8ef.png
https://i-blog.csdnimg.cn/direct/c39ab09c38ce43e1a6a9dd887a21fec9.pnghttps://i-blog.csdnimg.cn/direct/e586cc76b5c44e1eb83ee36c8c265be5.png
检察其他路由器是否自动变更网段:

打开AR4路由器检察:
display ip routing-table  --查询路由表信息;已自动变更50段信息。
https://i-blog.csdnimg.cn/direct/59d9bab3a3ce4a1780d48dea20873a95.png
ping测试: 

PC1pingPC3通;
https://i-blog.csdnimg.cn/direct/a05772ab140f4086bef169b8a799fbbe.png


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: 网络底子知识--网络硬件设备先容(含eNSP模仿器命令使用)