




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、Written by Aiko feat. Asuqa Http:/CISCOCERTIFIEDNETWORKASSOCIATELAB GUIDE思科认证网络工程师完全实验手册作者 红头发 CCIE#15101-1-Written by Aiko feat. Asuqa Http:/-2-Written by Aiko feat. Asuqa Http:/-3-Written by Aiko feat. Asuqa Http:/-4-Written by Aiko feat. Asuqa Http:/-5-Written by Aiko feat. Asuqa Http:/第一章 基础篇实验一
2、 - 路由器基本设置Lab Exercise 1.1目标:熟练掌握如何进入路由器各种模式并设置主机名.设备需求:Cisco 2501路由器一台.语法:1.从路由器用户模式进入特权模式:Aiko>enable2.从特权模式进入全局配置模式:Aiko#configure terminal3.为路由器设置主机名:Aiko(config)#hostname hostname4.退出到特权模式:Aiko(config)#end5.退出到用户模式:Aiko#disable6.退出控制台线路:Aiko>quit解释:路由器的模式大致可分为:1.用户模式:权限最低,通常只能使用少量查看性质的命令.
3、2.特权模式:可以使用更多查看性质的命令和一些少量修改路由器参数的命令.3.全局配置模式:不能使用查看性质的命令,但是确实做全局性修改和设置的模式,它还可以向下分为一些子模式,比如接口配置模式,线路配置模式,路由进程配置模式等等.配置实例一:Router>enableRouter#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Router(config)#hostname AikoAiko(config)#exitAiko#*Mar 1 00:04:30.815: %SYS-5-
4、CONFIG_I: Configured from console by consoleAiko#disableAiko>-6-Written by Aiko feat. Asuqa Http:/Lab Exercise 1.2目标:熟练掌握如何为路由器设置时间.设备需求:Cisco 2501路由器一台.语法:在特权模式下设置路由器时间:Aiko#clock set hh:mm:ss day month year解释:路由器本地的时间标识.配置实例一:Aiko#clock set 16:16:16 25 September 2005Aiko#show clock16:16:24.503
5、UTC Sun Sep 25 2005Aiko#Lab Exercise 1.3目标:熟练掌握如何设置空闲超时时间.设备需求:Cisco 2501路由器一台语法:1.从全局配置模式进入线路配置模式,进入控制台口线路:Aiko(config)#line console number2.启用光标跟随:Aiko(config-line)#logging synchronous3.设置当键盘多少时间内无动作,自动被路由器弹出到用户模式以外,即退出.如果设置为0分0秒代表永不超时:Aiko(config-line)#exec-timeout minute second解释:所谓光标跟随,是指当我们在输入
6、命令的时候,不会被一些日志信息或debug命令产生的调试命令所冲断.模式该特性是没有启用的.配置实例一:Aiko(config)#exitAiko#-7-Written by Aiko feat. Asuqa Http:/ *Mar 1 00:20:11.231: %SYS-5-CONFIG_I: Configured from console by consoleconfigure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko(config)#line console 0Aiko(config
7、-line)#logging synchronousAiko(config-line)#endAiko#*Mar 1 00:20:38.123: %SYS-5-CONFIG_I: Configured from console by consoleAiko#configure terminalAiko(config)#配置实例二:Aiko#show clock*15:32:12.747 UTC Mon Jul 28 2005Aiko#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aik
8、o(config)#line console 0Aiko(config-line)#exec-timeout 20 0Aiko(config)#endAiko#exit*Mar 1 00:24:33.643: %SYS-5-CONFIG_I: Configured from console by consoleAiko#Aiko#show clock*15:52:12.747 UTC Mon Jul 28 2005Aiko#Aiko con0 is now availablePress RETURN to get started.Aiko>Lab Exercise 1.4目标:熟练掌握如
9、何为路由器设置标语信息和描述信息.设备需求:Cisco 2501路由器一台.语法:1.进入全局配置模式,设置标语信息:Aiko(config)#banner motd # text #2.进入接口配置模式:Aiko(config-if)#interface type number-8-Written by Aiko feat. Asuqa Http:/3.为路由器接口设置描述信息:Aiko(config-if)#description text解释:在设置标语信息的时候,以#号做为分隔符,并按下回车键.描述语句的本地的一个标识,它只在本地可见,并且Cisco IOS执行命令的时候会跳过它.配置
10、实例一:Aiko(config)#banner motd #Enter TEXT message. End with the character '#'.hello!#Aiko(config)#endAiko#exitAiko con0 is now availablePress RETURN to get started.hello!Aiko>配置实例二:Aiko(config-if)#description LAN SalesAiko(config-if)#endAiko#*Mar 1 02:05:48.919: %SYS-5-CONFIG_I: Configured
11、 from console by consoleAiko#show running-config interface ethernet 0Building configuration.Current configuration : 75 bytes!interface Ethernet0description LAN Salesno ip addressshutdownendAiko#Lab Exercise 1.5目标:熟练掌握如何为路由器特权模式设置密码.-9-Written by Aiko feat. Asuqa Http:/设备需求:Cisco 2501路由器一台.语法:进入全局配置模
12、式,设置密码:Aiko(config)#enable password|secret password解释:两种密码的区别在于,前者是一些低版本Cisco IOS软件的认证方式,并且密码是基于明文的;后者是目前Cisco IOS软件最常用的认证方式,它是基于MD5加密的.如果同时设置了这两种认证方式,他们的口令必须不一样.但是,我们推荐使用后者进行认证,并且如果同时设置了两种认证方式,只有后者生效.密码区分大小写.配置实例一:Aiko(config)#enable password AikoAiko(config)#enable secret AikoThe enable secret you
13、 have chosen is the same as your enable password.This is not recommended. Re-enter the enable secret.Aiko(config)#enable secret AsuqaAiko(config)#exitAiko#*Mar 1 02:16:48.067: %SYS-5-CONFIG_I: Configured from console by consoleAiko#exitAiko con0 is now availablePress RETURN to get started.Aiko>en
14、ablePassword:AsuqaAiko#show running-configBuilding configuration.Current configuration : 609 bytes!version 12.2service timestamps debug datetime msecservice timestamps log datetime msecno service password-encryption!hostname Aiko!-10-Written by Aiko feat. Asuqa Http:/ logging queue-limit 100enable s
15、ecret 5 $1$NTU5$EEYi0qfB1pGENzuPxDCyz.enable password Aiko!-More-Lab Exercise 1.6目标:熟练掌握如何为路由器各个配置模式设置密码.设备需求:Cisco 2501路由器一台.语法:1.从全局配置模式进入线路配置模式,进入控制台口线路:Aiko(config)#line console|aux|vty start-number end-number2.设置密码:Aiko(config-line)#password password3.启用登陆:Aiko(config-line)#login解释:当设置密码之后,如果不启
16、用登陆命令,退出之后,路由器是不会提示输入密码的.控制台线路密码为控制台线路所用;辅助接口(AUX)线路密码为辅助接口线路所用;虚拟终端线路(VTY)是为telnet会话所用,路由器根据Cisco IOS软件版本不同,支持多条VTY会话数目也不同.所有密码是以明文方式保存在DRAM(running-config)文件里的.配置实例一:Aiko(config)#line console 0Aiko(config-line)#password AikoAiko(config-line)#loginAiko(config-line)#line aux 0Aiko(config-line)#passw
17、ord AikoAiko(config-line)#loginAiko(config-line)#exitAiko(config)#line vty 0 4Aiko(config-line)#password AikoAiko(config-line)#loginAiko(config-line)#end*Mar 1 03:04:43.491: %SYS-5-CONFIG_I: Configured from console by consoleAiko#exitAiko con0 is now available-11-Written by Aiko feat. Asuqa Http:/ P
18、ress RETURN to get started.User Access VerificationPassword:AikoAiko>Lab Exercise 1.7目标:熟练掌握如何为路由器关闭DNS查询功能.设备需求:Cisco 2501路由器一台.语法:全局配置模式下,关闭DNS查询功能:Aiko(config)#no ip domain lookup解释:默认情况下,路由器的DNS查询是启用的,即当你错误的输入一条Cisco IOS软件无法识别的命令的时候,路由器会把这个命令当成主机名,然后向DNS服务器进行查询.一般实验性的环境中,如果我们没有DNS服务器,因为输入错误的命
19、令而造成无用的查询,是非常耗时的.因此我们可以关闭这一功能.配置实例一:Aiko#AikoTranslating "Aiko".domain server (55)Translating "Aiko".domain server (55)Translating "Aiko".domain server (55)% Unknown command or computer name, or unable to find computer addressAiko#
20、configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko(config)#no ip domain lookupAiko(config)#endAiko#*Mar 1 03:13:12.371: %SYS-5-CONFIG_I: Configured from console by consoleAiko#AikoTranslating "Aiko"% Unknown command or computer name, or unable to find comput
21、er addressAiko#实验二 - 路由器连通性设置-12-Written by Aiko feat. Asuqa Http:/Lab Exercise 2.1目标:熟练掌握如何连通路由器并进行相互间ping和telnet的测试.设备需求:Cisco 2501路由器两台.语法:1.进入接口配置模式:Aiko(config)#interface type number2.为接口设置IP地址信息:Aiko(config-if)#ip address ip-address mask3.根据需要,如果接口为串行接口,要为DCE端设置时钟频率:Aiko(config-if)#clock rate
22、speed4.开启接口:Aiko(config-if)#no shutdown解释:默认所有接口都是处于关闭状态的,对于一般的以太网接口,设置了IP地址信息之后,只需要开启该接口即可;对于串行接口,还要注意在DCE端设置时钟频率,以便为DTE端提供时钟频率进行同步.当然这一般用于实验室背对背环境中,真正现实环境中,DCE是由CSU/DSU来提供,无须用户设置.另外要注意的是,端到端(end-to-end)的连接,直连的接口必须处于同一子网.配置实例一:路由器Aiko配置如下:Aiko#configure terminalEnter configuration commands, one per
23、 line. End with CNTL/Z.Aiko(config)#interface serial 0Aiko(config-if)#ip address 52Aiko(config-if)#no shutdown*Mar 1 00:13:45.839: %LINK-3-UPDOWN: Interface Serial0, changed state to down Aiko(config-if)#endAiko#*Mar 1 00:14:24.511: %LINK-3-UPDOWN: Interface Serial0, changed st
24、ate to upAiko#*Mar 1 00:14:25.515: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to upAiko#路由器Asuqa配置如下:-13-Written by Aiko feat. Asuqa Http:/ Asuqa#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Asuqa(config)#interface serial 0Asuqa(config-if)
25、#ip address 52Asuqa(config-if)#clock rate 56000Asuqa(config-if)#no shutdownAsuqa(config-if)#endAsuqa#Sep 25 16:24:25.347: %SYS-5-CONFIG_I: Configured from console by consoleAsuqa#Sep 25 16:24:25.787: %LINK-3-UPDOWN: Interface Serial0, changed state to upAsuqa#Sep 25 16:24:26.79
26、1: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to upAsuqa#测试一:Aiko#ping Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/40 msAiko#Asuqa#ping Ty
27、pe escape sequence to abort.Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/40 msAsuqa#测试二:Aiko#telnet Trying . OpenPassword required, but none setConnection to closed by foreign hostAiko#解释
28、:在telnet到远端路由器的时候,如果对方的VTY线路没有设置密码和启用登陆,将拒绝本地路由器telnet.-14-Written by Aiko feat. Asuqa Http:/解决方案:是在远端路由器设置VTY线路的密码和启用登陆.路由器Asuqa配置如下:Asuqa#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Asuqa(config)#line vty 0 4Asuqa(config-line)#password AikoAsuqa(config-line)#login
29、Asuqa(config-line)#endAsuqa#测试三:Aiko#telnet Trying . OpenUser Access VerificationPassword:AikoAsuqa>exitConnection to closed by foreign hostAiko#Lab Exercise 2.2目标:熟练掌握如何创建主机列表,并使用ping和telnet测试.设备需求:Cisco 2501路由器两台.准备工作:确保两台路由器已经预先的端到端的连通.语法:全局配置模式下创建静态的IP地址到主机名的映射:Aiko(
30、config)#ip host hostname ip-address配置实例一:路由器Aiko配置如下:Aiko(config)#ip host Asuqa Aiko(config)#end-15-Written by Aiko feat. Asuqa Http:/ Aiko#测试一:Aiko#AsuqaTrying Asuqa (). OpenUser Access VerificationPassword:AikoAsuqa>exitConnection to Asuqa closed by foreign hostAiko#测试二:Aiko#pin
31、g AsuqaType escape sequence to abort.Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 36/40/48 msAiko#实验三 - 路由器恢复性设置Lab Exercise 3.1目标:熟练掌握如何快速和恢复路由器到出厂设置.设备需求:Cisco 2501路由器一台.准备工作:确保路由器之间有所配置.语法:1.进入全局配置模式,快速恢复路由器的接口配置到出厂配
32、置:Aiko(config)#default interface type number2.特权模式下删除启动配置文件,路由器下次启动将全局恢复到出厂设置:Aiko#erase startup-config配置实例一:Aiko#show running-config interface serial 0-16-Written by Aiko feat. Asuqa Http:/ Building configuration.Current configuration : 62 bytes!interface Serial0ip address 52e
33、ndAiko#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko(config)#default interface serial 0Building configuration.Interface Serial0 set to default configurationAiko(config)#endAiko#show running-config interface serial 0Building configuration.Current configuration : 4
34、0 bytes!interface Serial0no ip addressendAiko#Lab Exercise 3.2目标:熟练掌握如何重启路由器和计划性的重启路由器.设备需求:Cisco 2501路由器一台.语法:在特权模式下,重启或计划性的重启路由器:Aiko#reload at hh:mm day year|in minutes text解释:可以定义路由器,立即重启或在多少分钟之后,或在具体的时间里重启,还可以指定重启原因.如果在重启之前,路由器配置文件被修改过,系统会提醒你是否保存修改.配置实例一:Aiko#reload in 1 the Administrator's
35、 mad-17-Written by Aiko feat. Asuqa Http:/ System configuration has been modified. Save? yes/no: nReload scheduled in 56 secondsReload reason: the Administrator's madProceed with reload? confirmAiko#*Mar 1 00:50:49.787: %SYS-5-SCHEDULED_RELOAD: Reload requested for 00:51:42 UTC Mon Mar 1 1993 at
36、 00:50:42 UTC Mon Mar 1 1993 by console. Reload Reason: the Administrator's mad.Aiko#测试:Aiko#show reloadReload scheduled in 47 seconds by consoleReload reason: the Administrator's madAiko#* - SHUTDOWN NOW -*-18-Written by Aiko feat. Asuqa Http:/第二章 路由篇实验一 - 静态路由基本配置Lab Exercise 1.1目标:熟练掌握如何配
37、置静态路由.设备需求:Cisco 2501路由器两台.准备工作:确保路由器之间接口IP地址信息已经设置好,能够端到端的ping通.语法:进入全局配置模式,定义目标网络号,目标网络的子网掩码和下一跳地址或接口:Aiko(config)#ip route network mask next-hop-address|exit-interface distance解释:选用下一跳地址和选择下一跳路由器的接口做为到达目标网络的出口的区别在于管理距离.选择前者,管理距离为1;选择后者,管理距离为0还可以在定义静态路由的时候指定管理距离.配置实例一:路由器Asuqa配置如下:Asuqa#configure
38、terminalEnter configuration commands, one per line. End with CNTL/Z.Asuqa(config)#ip route Asuqa(config)#endAsuqa#-19-Written by Aiko feat. Asuqa Http:/路由器Aiko配置如下:Aiko#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko(config)#ip rou
39、te serial 0Aiko(config)#end测试:Asuqa#show ip route staticS /24 1/0 via Asuqa#ping Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 32/3
40、5/36 msAsuqa#Aiko#show ip route staticS /24 is directly connected, Serial0Aiko#ping Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/36 msAiko#Lab Exercise 1.2目标:
41、熟练掌握如何配置默认路由.设备需求:Cisco 2501路由器两台.准备工作:确保路由器之间接口IP地址信息已经设置好,能够端到端的ping通.语法:进入全局配置模式,定义目标网络号,目标网络的子网掩码分别为,并定义下一跳地址或接口: Aiko(config)#ip route next-hop-address|exit-interface distance解释: 代表所有网络.选用下一跳地址和选择下一跳路由器的接口做为到达目标网络的出口的区-20-Written by Aiko feat. Asuqa Http:/ 别
42、在于管理距离.选择前者,管理距离为1;选择后者,管理距离为0还可以在定义静态路由的时候指定管理距离.配置实例一:路由器Aiko配置如下:Aiko#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko(config)#ip route Aiko(config)#endAiko#测试:Aiko#show ip route staticS* /0 1/0 via Aiko#实验二 - 距离矢量路由协议基本配置La
43、b Exercise 2.1目标:熟练掌握如何配置RIP.设备需求:Cisco 2501路由器两台.准备工作:确保路由器之间接口IP地址信息已经设置好,能够端到端的ping通.语法:1.进入全局配置模式,启用RIP:Aiko(config)#router rip-21-Written by Aiko feat. Asuqa Http:/2.定义要宣告的直连主类网络号:Aiko(config-router)#network network-number解释:启用了RIP路由协议之后,只需要宣告主类直连网络号,即可完成RIP的配置.配置实例一:路由器Asuqa配置如下:Asuqa#configur
44、e terminalEnter configuration commands, one per line. End with CNTL/Z.Asuqa(config)#router ripAsuqa(config-router)#network Asuqa(config-router)#network Asuqa(config-router)#endAsuqa#路由器Aiko配置如下:Aiko#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko
45、(config)#router ripAiko(config-router)#network Aiko(config-router)#network Aiko(config-router)#endAiko#测试:Asuqa#show ip route ripR /24 120/1 via , 00:00:21, Serial0Asuqa#ping Type escape sequence to abort.-22-Written by Aiko feat. Asuqa Http:/ Sending
46、 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 32/35/36 msAsuqa#Aiko#show ip route ripR /24 120/1 via , 00:00:02, Serial0Aiko#ping Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to
47、, timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 32/35/36 msAiko#Lab Exercise 2.2目标:熟练掌握如何配置RIPv2.设备需求:Cisco 2501路由器两台.准备工作:确保路由器之间接口IP地址信息已经设置好,能够端到端的ping通.语法:1.进入全局配置模式,启用RIP:Aiko(config)#router rip2.启用RIP版本2(RIPv2):Aiko(config-router)#version 23.定义要宣告
48、的直连主类网络号:Aiko(config-router)#network network-number解释:启用了RIPv2路由协议之后,只需要宣告主类直连网络号,即可完成RIPv2的配置.配置实例一:-23-Written by Aiko feat. Asuqa Http:/路由器Asuqa配置如下:Asuqa#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Asuqa(config)#router ripAsuqa(config-router)#version 2Asuqa(conf
49、ig-router)#network Asuqa(config-router)#network Asuqa(config-router)#endAsuqa#路由器Aiko配置如下:Aiko#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko(config)#router ripAiko(config-router)#version 2Aiko(config-router)#network Aiko(config-route
50、r)#network Aiko(config-router)#endAiko#测试:Asuqa#show ip route ripR /24 120/1 via , 00:00:21, Serial0Asuqa#ping Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/av
51、g/max = 32/35/36 msAsuqa#-24-Written by Aiko feat. Asuqa Http:/ Aiko#show ip route ripR /24 120/1 via , 00:00:02, Serial0Aiko#ping Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round
52、-trip min/avg/max = 32/35/36 msAiko#实验三 - 链路状态路由协议基本配置Lab Exercise 3.1目标:熟练掌握如何配置单区域的OSPF.设备需求:Cisco 2501路由器两台.准备工作:确保路由器之间接口IP地址信息已经设置好,能够端到端的ping通.语法:1.启用OSPF进程:Aiko(config)#router ospf process-id2.定义参与OSPF进程的接口和网络:Aiko(config-router)#network ip-address wildcard-mask area area-id解释:OSPF进程ID可以使用1到6
53、5535中任何一个整数,该ID只是本地的一个标识,即一个OSPF网络,每台OSPF路由器的进程ID是否一样,和OSPF网络能否正常运行无关.在定义OSPF路由器要宣告的区域的时候,反掩码用来控制要宣告的范围,0表示精确匹配,255表示任意匹配.OSPF网络中骨干区域为区域0,因此必须要有区域0.配置实例一:-25-Written by Aiko feat. Asuqa Http:/路由器Asuqa配置如下:Asuqa#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Asuqa(confi
54、g)#router ospf 1Asuqa(config-router)#network area 0Asuqa(config-router)#network 55 area 0Asuqa(config-router)#endAsuqa#路由器Aiko配置如下:Aiko#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko(config)#router ospf 65535Aiko(config-router)#network area
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 印度军力教学课件
- 乍浦小学口试题目及答案
- 广告设计师证书考试用户反馈分析试题及答案
- 助理广告师活动策划能力试题及答案
- 愚人节起源和发展-英文版
- 比熊犬智商测试题及答案
- 简易气压计试题及答案
- 甲状腺考试题目及答案
- 2024年设计师考试专业知识试题及答案
- 广西高考一模试题及答案
- 涉案虚拟货币刑事处置的全流程方案与正当程序
- 热力管道吊装专项方案
- JBQGTGST9000控制器说明书
- 水下探测技术发展-洞察分析
- UL2595标准中文版-2015电池驱动设备的要求中文版
- DB21T 3508-2021 旅游景区木栈道设置与维护规范
- 扁桃体癌护理查房
- 医疗质量及医疗安全
- 烧伤治疗和护理
- 医疗技术销售技巧
- 2024专利代理人考试真题及答案
评论
0/150
提交评论