苏州思朋信息科技有限公司2014年02月21日下午15:34新报道显示:苏州思朋CCNA培训基本配置,思朋行业领导者。苏州思朋信息科技有限公司,联系人:何老师,电话:0512-80682876,公司地址:苏州市吴中区苏蠡路60号蠡盛大厦609室。
常见的几种模式
用户模式 router> 对我们路由器或者交换机的操作是有限的,
相当于PC的guest用户
特权模式 router# 可以对路由器或者交换进一步的操作和配置
相当拥有administrator的权限
全局配置模式 Router(config)#
接口模式 Router(config-if)#
line 模式 Router(config-line)#
router 模式 Router(config-router)#
模式切换
Router>enable 从用户模式进入特权模式
Router#configure terminal 从特权模式进入全局配置模式
Router(config)#interface fastEthernet 0/0从全局配置模式进入到接口模式
Router(config)#router rip 从全局配置模式进入到router模式
Router(config)#line console 0 从全局配置模式进入到line模式
ctrl+z=end 在任何模式底下做以上任何操作都会跳到特权模式
exit 敲exit它逐级逐级的退出
保存配置文件
Router#copy running-config startup-config=write
注意:是在特权模式底下保存
更改主机名 Router(config)#hostname XXX
banner 信息
XM_JM_ROUTER(config)#banner motd #
Enter TEXT message. End with the character '#'.
this is xiamen jimei router
welcome to this router
#
XM_JM_ROUTER(config)#
符号以什么样的符号开始就要以什么符号做为结束
在line模式底下的common
XM_JM_ROUTER(config)#line console 0
XM_JM_ROUTER(config-line)#exec-timeout 20(分钟) 30 (秒)会话不超时,相当我们电脑的屏幕保护
0 0 会话永不超时
XM_JM_ROUTER(config-line)#logging synchronous 让光标永远跟在#号后面
进入接口
interface type number 适用于非模块化的路由器 例子:interface serial 0
type 接口类型 serial, ethernet, token ring, fddi, hssi,
loopback, dialer, null, async, atm, bri, tunnel, 等
number 接口的编号
interface type slot/port 适用于模块化路由器 例子 interface serial 0/1
slot 槽位
port 接口编号
接口描述(相当备注)
XM_JM_ROUTER(config)#interface fastEthernet 0/0
XM_JM_ROUTER(config-if)#description ? (内容自己定义)
LINE Description that will be truncated to 240 characters.
show 查看 (在特权模式下)
show running-config 查看当前配置文件
show startup-config 查看已经保存命令
show ip interface brief 查看接口的基本参数或者有哪些接口
show interface XX(接口)查看接口相信信息
XM_JM_ROUTER#show interfaces fastEthernet 0/0
FastEthernet0/0 is up, line protocol is up 说明链路连接正常
FastEthernet0/0 is administratively down, line protocol is down 人为关闭接口,只需进入接口no shutdown
FastEthernet0/0 is down, line protocol is down 物理链路不正常 (接口坏、线缆有问题、模块坏等硬件问题)
FastEthernet0/0 is up, line protocol is down 说明protocol有问题(封装不匹配、clock rate、keepalive)
XM_JM_ROUTER(config)#interface serial 0/0 在DCE端配置
XM_JM_ROUTER(config-if)#clock rate ?
Speed (bits per second)
1200
2400
4800
9600
14400
19200
28800
32000
38400
56000
57600
64000
72000
115200
125000
128000
148000
192000
250000
256000
384000
500000
512000
768000
800000
1000000
1300000
2000000
4000000
8000000
<300-8000000> Choose clockrate from list above
XM_JM_ROUTER(config-if)#clock rate 只能在上述数值里面选择一个
路由器的启动过程
1、开电自检
2、查看有没有系统(IOS)
没有 进入rommom模式
有 查看有没有配置文件
没有 进入初始化对话配置模式(yes/no)
有 idle值 0x2102 加载配置文件
0x2142 忽略配置文件,进入初始化对话配置模式(yes/no)
[0] Go to the IOS command prompt without saving this config. 不保存配置,退出
[1] Return back to the setup without saving this config. 不保存配置,退出到setup模式
[2] Save this configuration to nvram and exit. 保存并退出
配置交换地址 :为了方便远程的管理,而且交换机(二层)的管理地址只能在vlan下配置,默认是vlan1
interface vlan1
ip address 地址+ 子网掩码
例子
interface vlan1
ip address 11.1.1.12 255.255.255.0
no shutdown
show version 查看版本
管理mac地址表
show mac-address-table 查看mac地址表
由 mac 、对应接口、vlan 组成
配置默认网关
ip default-gate 11.1.1.1 教你如何走
网关 从本网络到达外部网络所要经过出口-网关 ;相当我们的海关
!!!!! 表示网络连通没有问题
..... 表示网络可以到达但是回不来
UUUU 表示目标网络不可达
配置密码
设控制口(console)密码
line console 0
password cisco
login 必敲 启用或者调用密码
enable 密码 从用户模式进入特权模式 为了远程管理
enable password cisco 明文
secret 密码 从用户模式进入特权模式 经过加密
注:enable 和 secret不能一样在同时配置时。默认启用的是secret密码
虚拟终端(VTY)密码 (telnet密码)
line vty 0 4 (0 4 同时5个户连接,并需要相应password密码)
password cisco
login
要想可以远程控制设备,必须要先确保网络的连通是正常的
对console,enable,vty 进行加密
R1(config)#service password-encryption
使用用户名和密码对console和vty进行验证
创建本地的用户和密码
username cisco password cisco
在line 模式下调用
line console 0
login local 调用本地用户名和密码
line vty 0 4
login local
以上是苏州思朋
CCNA课程的一些相关基本配置,对大家应是有帮助的!
关闭域名查找
no ip domain-lookup
本站内容不得转载,违者必究!本站关键词:苏州CCNA,思朋苏州CCNA培训