文档介绍:该【华为路由器的配置(实训) 】是由【7489238】上传分享,文档一共【22】页,该文档可以免费在线阅读,需要了解更多关于【华为路由器的配置(实训) 】的内容,可以使用淘豆网的站内搜索功能,选择自己适合的文档,以下文字是截取该文章内的部分文字,如需要获得完整电子版,请下载此文档到您的设备,方便您编辑和打印。实训二十一、华为路由器的配置
TITLE
重点内容
华为路由器的基本配置命令;
掌握华为路由器的配置;
实训一、华为路由器的基本配置
Console线
图21-1 华为路由器的基本配置
一、路由器的基本配置
<Quidwqy>system-view //从用户视图进入特权视图
password: //输入口令
[Quidway]sysname R2621 //更改路由器名称为R2621
[R2621] super password 123 //设置进入系统视图口令为123
[R2621]user-interface vty 0 4 //进入用户界面视图配置虚拟终端
[R2621-ui-vty0-4]authentication-mode password //设置验证方式为口令方式
[R2621-ui-vty0-4]set authentication-mode password simple 222 //设置口令为222
[R2621-ui-vty0-4]user privilege level 3 //设置用户级别为3
[R2621-ui-vty0-4]quit //退回上一级模式
[R2621]interface ethernet0 //进入e0端口
[R2621-Ethernet0]ip addr //配置该端口的IP地址
[R2621-Ethernet0]undo shutdown //激活该端口
[R2621-Ethernet0]quit //退回上一级模式
[R2621]int e1
[R2621-Ethernet1]ip addr
[R2621-Ethernet1]undo shutdown
[R2621-Ethernet1] quit
[R2621]
二、配置PC机的IP地址
HostA:IP: Sub-mask: gateway:
HostB:IP: Sub-mask: gateway:
三、测试连通性
HostA#ping (通) ;HostA#ping (通)
HostA#ping (通) ;HostB#ping (通)
HostB#ping (通) ;HostB#ping (通)
实训二、单臂路由的配置
一、配置PC机的IP地址
HostA:Ip::
HostB:Ip::
图21-2单臂路由的配置
二、配置路由器接口IP地址
<Quidway>system-view
password:
[Quidway]interface ethernet0 //进入路由器e0端口
[Quidway–Ethernet0]ip addr //配置IP地址
[Quidway–Ethernet0]int //进入e0端口的子接口
[Quidway–]ip addr //配置子接口IP地址
[Quidway–]encapsulation dot1q 1 //对子接口封装协议
[Quidway-]undo shut //激活端口
[Quidway-]int //进入e0端口的子接口
[Quidway-]ip addr
[Quidway-]encapsulation dot1q 2 //对接口封装协议
[Quidway-]undo shut
[Quidway]dis curr
三、配置交换机
<Quidway>system-view
password:
[Quidway]sysname s3026 //更改交换机名称为s3026
[s3026]vlan 2 //创建vlan2
[s3026-vlan2]port e0/3 //将交换机e0/3端口划分为vlan2
[s3026]vlan 3 //创建vlan3
[s3026-vlan3]port e0/6 //将交换机e0/6端口划分为vlan3
[s3026]int e0/1
[s3026-Ethernet0/1]port link-type trunk //设置e0/1端口为trunk模式
[s3026-Ethernet0/1]port trunk permit vlan all //允许该端口所有Vlan信息通过
[s3026-Ethernet0/1]port trunk encap dot1q //
[s3026]dis curr //显示交换机配置信息
HostA#ping (通)
实训三、静态路由的配置
配置PC机的IP地址
HostA:Ip::
HostB:Ip::
二、配置路由器
<Quidway>system-view
password:
[Quidway]sysname RouterA
[RouterA]interface ethernet0
[RouterA-Ethernet0]ip addrress
[RouterA-Ethernet0]undo shutdown
[RouterA-Ethernet0]int s0
[RouterA-Serial0]ip addrress
[RouterA-Serial0]undo shutdown
[RouterA-Serial0]clock rate 64000 //配置DCE端路由器的时钟频率
[RouterA-Serial0]quit
[RouterA]ip routing //启用路由功能
[RouterA]dis curr
[RouterB]interface ethernet0
[RouterB-Ethernet0]ip addrress
[RouterB-Ethernet0]undo shutdown
[RouterB-Ethernet0]int s0
[RouterB-Serial0]ip addrress
[RouterB-Serial0]undo shutdown
[RouterB-Serial0]quit
[RouterB]ip routing
[RouterB]dis curr
三、测试连通性
HostA#ping (通)
HostA#ping (通)
HostA#ping (通)
HostA#ping (不通)
HostA#ping (不通)
[RouterA]ip route-static //配置RouterA的静态路由
[RouterB]ip route-static //配置RouterB的静态路由
HostA#ping (通)
HostA#ping (通)
实训四、动态路由协议(RIP)的配置