路由常用基本操作命令

2021-07-14 02:00:54 字數 1572 閱讀 4525

常用基本操作命令

1、裝置改名

hostname wolf     

2、進入全域性模式

configure terminal     

3、三條建議配置

no ip domain-lookup                   :關閉網域名稱查詢

logging synchronous                  :防止彈出資訊干擾輸入

exec-time 0 0 或 no exec-time  :設定控制台會話永不超時

4、設定登入密碼

設主控制台口令

line console 0

password cisco

login

設輔助控制台口令

line aux 0

password cisco

login

設遠端登入口令

line vty 0 4

privilege level 15   設定使用者等級15,可以在telnet時直接進入enable模式

password cisco

login

5、設定特權密碼

特權密碼分兩種,啟用口令和啟用加密口令

enable secret password                   //設定啟用加密口令

例:enable secret 12345

enable password password       //設定啟用口令(級別比啟用口令低)

enable secret level 1~15 password     //授權1-15級口令,15為最高端

6、設定所有口令加密

service password-encryption       //所有口令加密

7、在dce介面配時鐘速率

int s0

clock rate 1000000

8、常用檢查命令

show controllers serial 0            :檢視介面是dce還是dte用這一命令

show inte***ce inte***ce            :檢視介面資訊

show ip inte***ce inte***ce        :檢視介面的協議信

show cdp neighbors     :顯示鄰居裝置

show cdp neighbors detail  :顯示鄰居細節

no cdp enable    :關閉cdp通告

9、常用除錯命令

debug cdp packets

no debug cdp packets

no debug all      :關閉所有debug程序

undebug all      :關閉所有debug程序

10、時鐘與時區設定:

clock set hh:mm:ss day month year

例:clock set 12:30:00 may 1 2009

clock timezone zone hours-offset [minutes-offset]

例:clock timezone gst +8

SVN基本常用操作命令

開啟服務 svnserve d r var svnrepos建立倉庫 svnadmin create var svnrepos spider拉取檔案到當前目錄下 svn checkout svn 120.78 131 162 3690 spider henry從伺服器更新檔案到本地 svn upda...

git常用基本命令操作

輕車熟路,掌握基本流程,專案開發不擔心。至於這麼安裝git在這裡就不討論了,可以根據自己的使用平台進行安裝 首先拷貝專案下來 git clone 修改後的檔案進行新增到暫存區 git add 單個檔案新增 git add 所有修改的檔案一起新增再把暫存區 stage 裡的檔案提交到主分割槽 mast...

linux常用的基本操作命令

pwd 檢視當前目錄路徑 ls la 檢視目錄 rw r r 檔案 d目錄 rw 所有者許可權 r 組內使用者許可權 r 其他使用者許可權 r read w write x execute none rwx rw r x r wx w x 111 110101 100011 010001 000 資...