由于自己剛開始學習網(wǎng)絡(luò)及其設(shè)備方面的知識乙帮,基礎(chǔ)理論還非常貧乏,所以只能給出學習過程中記錄的命令
路由器命令
[toc]
普通模式
特權(quán)模式
- 進入
enable - 離開
disable
IP信息與接口
- 接口概要
show ip interface brief - 查看路由
show ip route - 查看協(xié)議信息
show ip protocols - 查看接口
show ip interface <interface>,example:show ip interface s0/0.
物理接口
- 查看特定端口
show interface <interface>,example:show interface s0/0
歷史命令
- 條數(shù)
terminal history size <#number> - 查看歷史命令
show history - 關(guān)閉/開啟歷史命令
terminal [no] history
配置文件及備份還原
- 查看運行配置
show running-config - 通過遠程文件服務(wù)器備份
copy <running-config> <tftp/ftp>[://ip-address/file-name] - 通過遠程文件服務(wù)器還原
copy <tftp/ftp>[://ip-address/file-name] <running-config>
CDP協(xié)議應(yīng)用
- 查看啟用接口連接的設(shè)備
show cdp neighbors - 查看配置
show cdp
調(diào)試
- 開啟/關(guān)閉ip
[no] debug ip <protocol name>, example:debug ip icmp/rip
全局配置模式
一般命令
- 配置模式調(diào)用特權(quán)模式命令
do <command> - 進入
configure terminal - 離開
end - 更名
hostname <name>
設(shè)置時間時區(qū)
- 時間日期
clock set <hh::mm::ss> [month] [year] - 時區(qū)
clock timezone <timezone>, example:clock timezone GMT +8
設(shè)置遠程虛擬終端登錄密碼
- 設(shè)置非安全密碼
enable password <passwd> - 設(shè)置安全密碼
enable secret <passwd>
物理接口配置模式
- 進入所需配置的接口
interface <serial/fastEthernet/loopback> <#number>,example:interface serial 1/1. - 設(shè)置ip地址
ip address <ip> <mask> - 開啟/關(guān)閉接口
[no] shutdown - 離開
end
網(wǎng)絡(luò)協(xié)議與路由操作
- 增加/刪除路由
[no] ip route <net address> <net mask> <interface/gateway/next nop address> -
默認路由
[no] ip route 0.0.0.0 0.0.0.0 <interface/gateway/next nop address>
RIP配置
- 進入
router rip - 宣告自己的直連路由到相鄰網(wǎng)絡(luò)
network <connected-route/gateway/net address> - 配置定時器
timer basic <send update timer> <invalid after timer> <hold down timer> <flushed after timer> - 負載均衡觅够,關(guān)閉快速交換,使用進程交換
no ip cef - 被動接口設(shè)置
passive-interface <interface> -
關(guān)閉所有接口
passive-interface default - 告知需要單播更新對端直連IP
neighbor <connected-ip-address>
CDP協(xié)議應(yīng)用
- 修改發(fā)現(xiàn)間隔時間
cdp timer <seconds> - 接口信息保持時間
cdp holdtime <seconds>
終端線路配置模式
- 進入虛終端
line vty <0-max> - 設(shè)置密碼
password <passwd> - 離開
end