前言:
最近整理一些之前的學習筆記(有部分缺失,會有些亂,往後再補)。
過去都是存儲在本地,這次傳到網絡留待備用。算法
Switch> 用戶模式 Switch> enable #進入特權模式 Switch# 特權模式 Switch# configure terminal #進入全局配置模式 Switch(config)# 全局配置模式 Switch(config)# interface fastEthernet 0/1 #進入接口模式,接口 接口號 Switch(config-if)# 接口模式
exit
end
Switch(config)# hostname S1 //修改主機名爲S1
# show mac-address-table
Switch# show running-config //查看交換機配置信息 或 簡寫 Swich# show run
Switch# show version //查看IOS版本信息
config)# enable password 123
(config)# enable secret 456 #全局模式能夠配置口令 (config-if)# enable secret 456 #接口模式也能夠配置口令
# copy running-config startup-config 或# write
(config)# erase startup-config (config)# reload
(config)# interface 接口 //進入接口 (config-if)# shutdow //禁用此接口
switch(config)#no ip domain-lookup
switch(config)# line console 0 //進入行控制檯 switch(config-line)# exec-timeout 分鐘 秒 //
(config)# line console 0 (config-line)# logging synchronous
switch(config-if)# duplex {full | half | auto} #duplex,雙重
switch(config-if)# speed {10 | 100 | 1000 | auto}
switch# show interface fastethernet 0/24
全局模式:ip default-gateway 網關ip地址
(config)# vlan 編號 //編號1-1005 (config-vlan)# Name 名字 //給vlan命名
(config)# interface 接口名 //進入要加入vlan的接口 (config-if)# switchport access vlan 編號 //交換機接口接入vlan
(config)# interface range f0/1–10 //進入連續的接口 (config)# interface range fastEthernet0/1,fa0/3, ... //進入不連續的接口 (config-if-range)# switchport access vlan 編號 //多接口加入
# show vlan
(config)# no vlan 編號
(config)# 進入接口模式 (config-if)# switchport mode trunk ( 配置爲trunk中繼鏈路) #交換機端口 模式 trunk (config-if)# switchport mode access ( 配置爲access接入鏈路)
(config)# interface fastEthernet trunk的端口名 #進入trunk所在端口 (config-if)# switchport trunk allowed vlan remove vlan編號
(config)# interface trunk的接口 //進入trunk鏈路接口 (config-if)# switchpot trunk allowd vlan add vlan編號 //
# show interface 接口名 switchport # show interfaces fastEthernet 0/24 switchport
(config)# ip route 目標網絡ip 目標網絡子網掩碼 下一跳ip(經由點:進入對方網絡的門戶ip)
(config)# ip route 192.168.1.1 255.255.255.0 200.0.0.1 10 全局模式# ip route 目標ip 子網掩碼 下一跳ip 優先級(1-255)
(config)# ip route 0.0.0.0 0.0.0.0 下一跳地址 全局模式# ip 路由 任意網絡ID 任意子網掩碼 下一跳地址
# show ip route //思科 # display //華爲 // C直連路由 //connected route // S靜態路由 //static route // S*默認路由
①防火牆未關閉 ====== 關閉防火牆 ②主機不在相同網段 == ③網關地址錯誤 ====== 配置正確網關,ping網關是否能通 ④DNS配置 ========== 配置正確DNS,DNS是否能正常解析域名
根據網絡拓樸或流量變化,由路由器經過路由協議自動設置緩存
適合ISP服務商、廣域網、園區網等大型網絡安全
動態路由是網絡中的路由器之間相互通訊,傳遞路由信息,利用收到的路由信息更新路由表的過程,是基於某種路由協議來實現的。網絡
AS:自治系統(Autonomous System)dom
一、按應用範圍的不一樣,路由協議可分爲兩類:學習
- 正在使用的內部網關路由協議: OSPF:極爲經常使用 //開放式最短路徑優先 IS-IS:經常使用 RIP:基本廢棄,RIP-1,RIP-2, IGRP(思科私有)、EIGRP(IGRP加強版)。
- 外部網關協議:域間路由協議(EGP=External Gateway Protocol) - 域間路由協議有兩種:邊界網關協議(BGP)和外部網關協議(EGP被淘汰)。
- 當你須要從一個AS發送流量到另外一個AS時;
二、按照路由執行的算法動態路由協議的分類 :ui
1)距離矢量路由協議 :RIP、IGRP.net
2)鏈路狀態路由協議 :OSPF、IS-IS計算機網絡
(config)# ip routing
(config)# interface vlan 編號 //進入虛擬接口 (config-if)# ip address ip地址 子網掩碼 //配置ip (config-if)# no shutdown //啓動端口
(config)# interface fastEthernet 接口 //進入接口 (config-if)# no switchport //轉換爲非交換機接口
(config-if)# switchport trunk encapsulation dot1q //封裝802.1q (config-if)# switchport mode trunk //修改模式爲trunk