- 相关推荐
CISCO路由器配置命令详解设置试题
思科认证的考试内容包括笔试和实验。笔试在全球认证的考试中心进行,时间为两个小时。下面是小编收集的CISCO路由器配置命令详解设置试题,希望大家认真阅读!
设置如下:
Router1:
interface Serial0
ip address 192.200.10.1 255.255.255.0
clockrate 1000000
Router2:
interface Serial0
ip address 192.200.10.2 255.255.255.0
!
3. 举例使用E1线路实现多个64K专线连接.
相关命令:
任务 命令
进入controller配置模式 controller {t1 | e1} number
选择帧类型 framing {crc4 | no-crc4}
选择line-code类型 linecode {ami | b8zs | hdb3}
建立逻辑通道组与时隙的映射 channel-group number timeslots range1
显示controllers接口状态 show controllers e1 [slot/port]2
注: 1. 当链路为T1时,channel-group编号为0-23, Timeslot范围1-24; 当链路为E1时, channel-group编号为0-30, Timeslot范围1-31.
2.使用show controllers e1观察controller状态,以下为帧类型为crc4时controllers正常的状态.
Router# show controllers e1
e1 0/0 is up.
Applique type is Channelized E1 - unbalanced
Framing is CRC4, Line Code is HDB3 No alarms detected.
Data in current interval (725 seconds elapsed):
0 Line Code Violations, 0 Path Code Violations
0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins
0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 0 Unavail Secs
Total Data (last 24 hours) 0 Line Code Violations, 0 Path Code Violations,
0 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins,
0 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 0 Unavail Secs
以下例子为E1连接3条64K专线, 帧类型为NO-CRC4,非平衡链路,路由器具体设置如下:
shanxi#wri t
Building configuration...
Current configuration:
!
version 11.2
no service udp-small-servers
no service tcp-small-servers
!
hostname shanxi
!
enable secret 5 $1$XN08$Ttr8nfLoP9.2RgZhcBzkk/
enable password shanxi
!
!
ip subnet-zero
!
controller E1 0
framing NO-CRC4
channel-group 0 timeslots 1
channel-group 1 timeslots 2
channel-group 2 timeslots 3
!
interface Ethernet0
ip address 133.118.40.1 255.255.0.0
media-type 10BaseT
!
interface Ethernet1
no ip address
shutdown
!
interface Serial0:0
ip address 202.119.96.1 255.255.255.252
no ip mroute-cache
!
interface Serial0:1
ip address 202.119.96.5 255.255.255.252
no ip mroute-cache
!
interface Serial0:2
ip address 202.119.96.9 255.255.255.252
no ip mroute-cache
!
no ip classless
ip route 133.210.40.0 255.255.255.0 Serial0:0
ip route 133.210.41.0 255.255.255.0 Serial0:1
ip route 133.210.42.0 255.255.255.0 Serial0:2
!
line con 0
line aux 0
line vty 0 4
password shanxi
login
!
end
Cisco路由配置基础知识
一、所处状态各类
router>
用户处于用户命令状态,可以查看网络和主机
router#
用户处于特权模式,可以查看状态,还可以看到和更改路由器的设置内容
router(config)#
全局配置状态,可以设置路由的全局参数
router(config-if)#;router(config-line)#;router(config-router)#.....
处于局部配置状态,可以设置路由的局部参数
二、配置端口ip
命令
en
configt//全局模式
interfacef0/0
ipaddress192.168.1.1255.255.255.0//设置端口ip
noshu//生效
exit
interfacef0/1
ipaddress192.168.10.1255.255.255.0
noshu
exit
end
disable
三、配置静态路由
命令
en
configt//全局模式
iproute192.168.100.0255.255.255.0192.168.10.2//到192.168.100.0/24通过192.168.10.2接口
end
showiproute//可以看到前面标明S,即为静态路由
四、配置动态路由(RIP)
命令
en
configt//全局模式
norouterip//禁止rip协议
routerip
work192.168.1.0//work参数为路由的两个端口对应的网络地址
work192.168.10.0
exit
end
disable
五、配置DHCP
命令
en
configt//全局模式
ipdhcpexcluded-address192.168.1.1//需要排除的ip地址
ipdhcppoolgr-dhcp-pool//ip地址池名
default-server192.168.1.1//指定dhcp服务器
work192.168.1.0255.255.255.0//配置网络
dns-server61.177.7.1//配置dns服务器
exit
end
disable
可以通过iphelper-address指定DHCP中继代理
interfaceFastEther0/1
ipaddress192.168.1.1255.255.255.0
iphelper-address192.168.10.2配置DHCP中继代理,DHCP
六、配置NAT
命令
en
configt//全局模式
interfacef0/0
ipaddress192.168.1.1255.255.255.0
ipnatinside//内部端口
noshu
exit
interfacef0/1
ipaddress192.168.10.1255.255.255.0
ipnatoutside//外部端口
noshu
exit
access-list1permitany//设置一个可访问列表
ipnatpoolgr-nat-pool192.168.10.3192.168.10.254mask255.255.255.0//设置分配池
ipnatinsideresourcelist1poolgr-nat-pooloverload
showipnattraslations
clearipnattraslation*
七、其它
shrunning-config//显示当前运行配置
shstartup-config//显示开机配置
shiproute//显示路由
shnattraslations//显示nat当前情况
【CISCO路由器配置命令详解设置试题】相关文章:
Cisco路由器配置命令大全04-06
CISCO路由器CHAP认证配置06-17
H3C路由器配置命令07-19
华为3COM交换机配置命令详解08-21
精简实用Ping命令详解10-27
思科交换机基本配置命令大全04-02
常用交换机典型配置详解12-30
思科路由器SSH配置案例04-06
h3c交换机清除配置命令01-27