RAM- 路由器的工作存儲器,存儲活動的配置文件(running-config)
NVRAM- 非易失性RAM,存儲路由器的備份/啟動配置文件(statup-config)
FLASH- 閃存,存儲路由器的操作系統
命令格式:
Router#show running-config 查看當前配置
Router#show startup-config 查看備份配置
Router#copy running-config startup-config 將RAM存儲至NVRAM
Router#copy startup-config running-config 將NVRAM存儲至RAM
Router#erase startup-config 刪除備份配置
二。 路由器狀態命令:
Router#show version 顯示系統的硬件配置,軟件版本,配置文件的名稱和來源,啟動映象以及最近一次系統重啟的原因
Router#show processes 顯示有關活動進程的信息
Router#show protocols 顯示已經配置的協議。該命令能顯示所配的任何一種第3層(網絡層)協議的狀態
Router#show memory 顯示路由器內存的統計信息,包括內存空間的統計信息
Router#show stacks 監視進程和終端例所只用的堆棧
Router#show buffers 提供有關路由器緩沖空間的統計信息
Router#show flash 顯示關於閃存設備的信息
Router#show interface 顯示路由器上進行配置的所有端口的統計信息
Router#show clock 查看路由器時間
Router#clock set hh:mm:ss d/m/y 設置路由器時間
Router#hsow history 查看路由器已命令歷史記錄
Router#terminal history size <0-256> 設置歷史緩沖區
Router#terminal editing 開命令快捷鍵
Router#terminal no editing 關命令快捷鍵
Router#hostname XXX 修改路由器名字
Router#disable 特許模式退到用戶模式
Router#config t 進入全局配置模式
Router(config)#exit/end/ctrl+z 全局模式退到特許模式
Router(config)#interface Ethernet 0 全局模式進入接口模式
Router(config)#end/ctrl+z 接口退到特許模式
Router(config)#setup 配置路由器
Router(config)#enable secret XXXX 用戶模式進特許模式
Router(config)#no enable secret 刪除加密的用戶到特許密碼
Router(config)#no enable password 刪除不加密的用戶到特許密碼
Router#reload 重新啟動路由器
三。 路由器與TFTP服務器間相關的通訊命令
Router#copy running-config tftp 將RAM中的配置文件拷到tftp服務器中
Router#copy startup-config tftp 將NVRAM中的配置文件拷的tftp服務器中
Router#copy flash tftp 將flash中的IOS拷到tftp服務器中
Router#copy tftp running-config 將 tftp服務器中的配置文件拷到RAM中
Router#copy tftp startup-config 將tftp服務器中的配置文件拷到NVRAM中
Router#copy tftp flash 將tftp服務器中的IOS拷到flash中
Router(config)#boot system rom 改為下次啟動從ROM中引導
Router(boot) (config)#no boot system rom 刪除從ROM中引導
Router(boot) (config)#boot system flash 改成下次從FLASH中引導
Router(boot) (config)#no boot system flash 刪除從FLASH中引導
Router(boot) (config)#write memory 低版本中保存命令
Router(boot) (config)#boot system tftp filename ipaddress 從TFTP中引導
Router(boot) #erase flash 刪除路由器flash中的IOS
四。 控制列表(ACL)相關命令
Router(config)#access-list 1 deny 192.168.0.101 0.0.0.0
Router(config)#access-list 1 deny 192.168.0.101
Router(config)#access-list 1 deny host 192.168.0.101
//以上3中方法都是拒絕192.168.0.101這一台主機的
Router(config)#access-list 1 deny 192.168.0.0 0.0.0.255
Router(config)#access-list 1 deny 172.16.0.0 0.0.0.255
//以上2種情況都是拒絕一個網段的情況
Router(config)#access-list 1 permit any 允許所有數據包
Router(config)#ip access-group 1 in 將規則應用到接口中
Router(config)#show access-lists 查看ACL的定義