华为的路由器模拟器及实验内容
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
华为的路由器模拟器及实验内容
2009-12-21 20:27:53| 分类:默认分类| 标签:|字号大中小订阅
实验一:基本命令实验
实验二:配置端口聚合
实验三:基本VLAN设置
实验四:配置primary VLAN和secondary VLAN
实验五:其它功能
实验六:路由器BootROM升级
实验七:直联路由
实验八:单臂路由
实验九:静态路由实验
实验十:动态路由实验
实验十一:访问控制列表
实验十二:地址转换配置
华为的路由器模拟器下载地址(右键迅雷下载)
实验一基本命令实验
添加一个交换机,一个计算机,双击交换机,进入终端配置:
system
password:
[Quidway]sysname S3026 交换机命名
[S3026]super password 111 修改特权用户密码
[S3026]user-interface vty 0 4
[S3026-ui-vty0-4]authentication-mode password
[S3026-ui-vty0-4]set authentication-mode password simple 222 [S3026-ui-vty0-4]user privilege level 3
[S3026-ui-vty0-4]quit
[S3026]quit
sys
password:111
[S3026]display currect-config
[S3026]dis curr
[S3026]vlan 2
[S3026-vlan2]port ethernet0/2
[S3026-vlan2]port e0/4 to et0/6
[S3026-vlan2]quit
[S3026]dis vlan
[S3026]int e0/3
[S3026-Ethernet1]port access vlan 2
[S3026-Ethernet1]quit
[S3026]dis vlan
[S3026]dis curr
[S3026]interface vlan 1 进入接口视图[S3026-Vlan-interface1]ip address 10.65.1.1 255.255.0.0
[S3026-Vlan-interface1]quit
[S3026]ip route-static 0.0.0.0 0.0.0.0 10.65.1.2
[S3026]ip default-gateway 10.65.1.2
[S3026]dis curr
[S3026]save
双击小电脑:
login:root
password:linux
[root@PCA root]#ifconfig eth0 10.65.1.1 netmask 255.255.0.0 [root@PCA root]#ping 10.65.1.2
[root@PCA root]#telnet 10.65.1.2
实验二配置端口聚合
要求聚合的端口工作在全双工,速度一致,在同一槽口且连续,ingress:源MAC, both:源和目的MAC
对于SwitchA:
[SwitchA]interface ethernet0/1
[SwitchA-Ethernet0/1]duplex full
[SwitchA-Ethernet0/1]speed 100
[SwitchA-Ethernet0/1]int e0/2
[SwitchA-Ethernet0/2]duplex full
[SwitchA-Ethernet0/2]speed 100
对于SwitchB:
[SwitchB]interface ethernet0/1
[SwitchB-Ethernet0/1]duplex full
[SwitchB-Ethernet0/1]speed 100
[SwitchB-Ethernet0/1]int e0/2
[SwitchB-Ethernet0/2]duplex full
[SwitchB-Ethernet0/2]speed 100
聚合操作:
[SwitchA]link-aggregation ethernet0/1 to ethernet0/2 both [SwitchB]link-aggregation ethernet0/1 to ethernet0/2 both
[SwitchA]display link-aggregation ethernet0/1
[SwitchA]undo link-aggregation all
实验三基本VLAN设置
[SwitchA]vlan 2
[SwitchA-vlan2]port e0/3 to e0/4
[SwitchA]vlan 3
[SwitchA-vlan3]port e0/5 to e0/6
[SwitchB]vlan 2
[SwitchB-vlan2]port e0/3 to e0/4
[SwitchB]vlan 3
[SwitchB-vlan3]port e0/5 to e0/6
设置计算机的IP为:
PCA:10.65.1.1 PCB:10.65.1.2 PCC:10.65.1.3 PCD:10.65.1.4 [root@PCA root]#ping 10.65.1.1 通
[root@PCA root]#ping 10.65.1.2 不通
[root@PCA root]#ping 10.65.1.3 不通
[root@PCA root]#ping 10.65.1.4 不通
将PCA改接到SwitchA E0/2, PCC改接到SwitchB E0/2
[root@PCA root]#ping 10.65.1.3 通(这时都在vlan 1)
再改回来:
[S3026A]interface ethernet 0/8
[S3026A-Ethernet0/8]port link-type trunk
[S3026A-Ethernet0/8]port trunk permit vlan all
[S3026B]interface ethernet 0/1
[S3026B-Ethernet0/1]port link-type trunk
[S3026B-Ethernet0/1]port trunk permit vlan all
[root@PCA root]#ping 10.65.1.3 通
[root@PCA root]#ping 10.65.1.4 不通
[root@PCB root]#ping 10.65.1.4 通
即:PCA和PCC同在vlan 2 是通的。