Cisco IOS 基本命令集

2021-04-06 20:42:57 字數 2995 閱讀 1770

一、 基本路由器的檢驗命令

show version

show processes

show protocols

show mem

show ip route

show startup-config

show running-config

show flash

>show inte***ces

二、 基本路由配置命令

進入:config terminal/memory/network

配置網路時常採用的命令:copy和load

1. 標識:hostname 標識名

2. 啟動標識:banner 啟動標識

3. 介面:inte***ce 埠號

4. 密碼:line 0 6

login

passwd 口令

enable password/secret 口令

5. 介面:

1)配置埠

inte***ce 埠號

clock rate 時鐘速率(64000)/* 在串列埠中配置 */

bandwidth 頻寬(預設56) /* 在串列埠中配置 */

media-type 介質型別 /* 在乙太網口上 */

early-token release /* 在令牌環網口上 */

ring-speed 16 /* 在令牌環網口上 */

no shutdown

write memory

2)檢驗埠

show inte***ces

show controllers

6. 配置環境

1) 引導方式

boot system flash ios-filename

boot system tftp ios-filename tftp-address

boot system rom

2) 配置register值

config-register 0x2102

7. 檢視鄰居路由

show cdp inte***ce

show cdp neighbors [detail]

show cdp entry routera

8. ip address 配置

ip address 網路位址 掩碼

ip host 主機名 address

ip name-server 伺服器位址1 伺服器位址2 。。。

ip domain-lookup nsap

show hosts

ping 主機名/ip位址

trace 主機名/ip位址

[page]

三、 ip 路由

1. 靜態路由

ip routing

ip route 目標網路號 掩碼 埠號 [permanent]

2. 預設路由

ip default-network 網路號

3. 動態路由

1) rip配置

router rip

network 網路號

show ip route

show ip protocol

debug ip

2) ospf 配置

router ospf 程序號

redistribute 其它路由協議

network 埠網路 反掩碼 area 區域號

area 區域號 range 網路號 掩碼

area 區域號 default-cost 花銷值

ip ospf priority number

ip ospf cost 花銷值

show ip ospf database

3) bgp 配置

router bgp 自治域號

redistribute 其它路由協議

network 網路號 /* 自治域內 */

aggregate-address 網路號 掩碼 summary-only 彙總網路

neighbor 相鄰網路號 remote-as 自治域號 /* 自治域間的網路 */

四、 流量控制

1) 被動埠

passive inte***ce 埠號

2) 預設路由

ip default 網路號/埠網路

3) 靜態路由

ip route 目標網路號 掩碼 埠號

4)acl過濾表

(全域性上) access-list 訪問號1 反掩碼號 [ established]

access-list 訪問號2 ip/tcp協議 源網路 目的網路

操作符 引數

(埠上)access-group 訪問號 in|out

distribute-list 訪問號 in|out 埠號

4) null 0 inte***ce

ip route address mask null 0

[page]

五、 廣義網配置

1) ppp

ppp pap sent-usename 封裝

ppp chap hostname

ppp chap password

2)x.25

encapsulation x25 [dce]

x25 address

x25 map 協議位址 /*svc */

x25 pvc pvc號 ip位址 x25位址 /*pvc */

ip switching

x25 route x.121位址 介面 x.121對映位址

2) framerelay

frame-relay local-dlci ip網路號

frame-relay map 協議位址

frame-relay lmi-type ansi

gitbash 基本命令集合

workspace 工作區 index 暫存區 repository 本地版本庫 remote 遠端倉庫 2.常用git命令 git version 檢視版本 git config l 檢視配置資訊 修改name和email git config global user.name ddd git c...

Redis基本命令 集合 Set

redis 的 set 是 string 型別的無序集合。集合成員是唯一的,這就意味著集合中不能出現重複的資料。redis 中集合是通過雜湊表實現的,所以新增,刪除,查詢的複雜度都是 o 1 集合中最大的成員數為 2的32次方 1 4294967295,每個集合可儲存40多億個成員 2.1 sadd...

MySQL下命令集 mysql命令集

一 連線mysql。1 連線到本機上的mysql。首先開啟dos視窗,然後進入目錄mysql bin,再鍵入命令mysql u root p,回車後提示你輸密碼.注意使用者名稱前可以有空格也可以沒有空格,但是密碼前必須沒有空格,否則讓你重新輸入密碼.如果剛安裝好mysql,超級使用者root是沒有密...