一些簡單的思科命令
阿新 • • 發佈:2018-01-13
ios via 網關 strong down 數字 封裝 思科命令 range 記不住思科簡單配置命令的朋友們有福利了!!!
以下是關於思科設備一些簡單的配置命令,初學的朋友們沒記住的可以來看看哦!
以下是關於思科設備一些簡單的配置命令,初學的朋友們沒記住的可以來看看哦!
-
- CISCO:
- Switch>用戶模式
- Switch>**enable
* Switch#特權模式
- Switch#configure terminal
- Switch(config)#全局配置模式
- Switch(config)#interface fastEthernet 0/1
- Switch(config-if)#接口模式
- Exit返回上一模式
- 改主機名
- Switch>用戶模式
- Switch>enable
- Switch#特權模式
- Switch#configure terminal
- Switch(config)#全局配置模式
- Switch(config)#hostname+自定義用戶名
- Switch#show running-config 查看配置信息
- Switch#show mac-address-table查看mac地址
- Switch#show version 查看IOS版本信息
- Switch (config)#(+no 撤銷密碼)
- enable password(不用寫數字) 123 配置用戶進入特權模式的明文密碼
- Switch (config)#(+no 撤銷密碼)enable secret(不用寫數字) 456 配置用戶進入特權模式的密文密碼
-
- Switch#copy running-config startup-config/ write/wr 保存當前配置
- Switch(config-if)#no ip address 刪除ip地址,刪除命令用no
- Switch#reload 重啟
- Switch#show interfaces f0/1 switchport 查看接口參數(在交換機)
- Switch#show interfaces f0/1 查看接口參數(在路由器)
- Switch(config-if)#switchport mode trunk 把接口模式改成truck
- Switch(config-if)#switchport mode access 把接口模式改成access
- Switch#show ip route 查看路由表
- Router(config)#vlan +數字 創建vlan
- Switch#vlan database vlan數據庫(第二種創建vlan的方式)
- Switch(config-if)#switchport access vlan +數字 將某接口加入vlan
-
- 給三層交換機接口打802.1q封裝(二層交換機自動學)
- (可用三層與三層交換機之間的trunk連接)
- Switch(config-if)#switchport trunk encapsulation dot1q
- Switch(config-if)#switchport mode trunk
-
- Switch(config-if)#ip address+ip+子網掩碼 配置三層交換機ip
- Switch(config-if)#no switchport 把二層接口變成路由接口
- Switch(config)#ip routing 開啟三層交換機的路由功能
- Switch#show run 查看所有端口
- *R1(config)#no ip routing 關閉路由功能
- *R1(config)#?ip?default-gateway 192.168.0.254 在本設備設置要到達的網關
- 查看完路由表後 查看優先級
- Switch#show ip route
- S 192.168.3.0/24 [1(優先數值)/0] via 192.168.1.2 數值越小越優先
-
- *動態路由
- 先把接口ip和網關配好
- R6(config)#router rip (動態協議) 進入動態(rip)路由模式
- R6(config-router)#version 2(進入版本2)
- R6(config-router)#no auto-summary(自動協商)
- R6(config-router)#network 192.168.4.0(宣告所連網絡段)
- *使用本機回環接口在rip中傳遞路由信息(創建虛擬接口測試動態路由)
- 進入本機回環接口並設置ip (loopback接口依托物理接口;只要物理接口激活,loopback接口就能ping通)
- R6(config-router)#inter loopback 0 (用戶自定義)
- R6(config-if)#ip address 192.168.6.1 255.255.255.0
- 在rip中宣告回環接口所在網段
- R6(config-if)#router rip
- R6(config-router)#network 192.168.6.0
- *配置遠程登錄(在設備裏開啟遠程功能)
- R2(config)#line vty 0 4(0~4人管理)
- R2(config-line)#password 123(配置遠程登錄密碼)
- R2(config-line)#no login(遠程登錄時不需要密碼)(可有可無)
- R2(config-line)#exit
- R2(config)#enable password 456(配置進入特權密碼)
- *之後在pc機中使用telnet命令測試
- R1#telnet 192.168.4.2(要進入的設備接口ip)
- ==============================
- 1、連接wan網 DHCP
- 一個網段分配一個DHCP池
- DHCP(自動分配Ip)的配置:
- Router(config)#ip dhcp pool xx 創建地址池,名字為xx
- Router(dhcp-config)#network(網絡) 192.168.1.0 255.255.255.0 添加網段,(要給那個網段分配地址)
- Router(dhcp-config)#default-router 192.168.1.254 指定網關地址
- Router(dhcp-config)#dns-server 8.8.8.8 指定DNS地址
- Router(dhcp-config)#int f0/0 進入網關接口/vlan
- Router(config-if)#ip address 192.168.1.254 255.255.255.0 配置網關地址
- Router(config-if)#no shutdown 激活接口
- Switch(config)#ip routing 開啟三層交換機的路由功能
- 去pc機進入接口輸入R6(config-if)#ip address dhcp (才能獲得ip)
- 設置靜態路由(目標網段、子網掩碼、下一跳地址)
- Router(config)#ip route 192.168.1.0 255.255.255.0 192.168.3.1
- Router(config)#ip route 0.0.0.0 0.0.0.0 192.168.2.1 (配置默認路由)用於末梢網絡
- Router(config)#ip route 0.0.0.0 0.0.0.0 +(自己的端口)f0/0 (嚇一跳 在不知道對方接口ip時可用)
- 2、創建內部服務器
- 在三層交換機創建vlan池;DHCP地址保留一個地址為服務器用(員工獲取不到)
- Switch(config)#ip dhcp excluded-address (排除地址)192.168.10.1
- trunk是用在一條鏈路中多個vlan的通信,相當於一個物理鏈路中開了很多個虛擬的互不相幹的鏈路! 主要用在交換機與交換機之間,交換機與路由器之間(交換機端口配置trunk)。
- 在trunk鏈路中去除外來客戶使用的電腦所在的vlan(單線)
- Switch(config-if)#(no)switchport trunk allowed vlan remove(去掉) 外來客戶使用的電腦
Switch(config)#interface range(範圍)fastEthernet 0/1,f0/4(把多個接口加入同一個範圍)
Switch(config-if-range)#channel-group (通道組)1 (用戶自定義)mode on
Switch(config-if)#switchport mode trunk 把接口模式改成truck
在trunk鏈路聚合中去除外來客戶使用的電腦所在的vlan(多線)
Switch(config)#interface port-channel 1
Switch(config-if)#switchport trunk allowed vlan remove 2
一些簡單的思科命令