當前位置:首頁 » 數據倉庫 » 思科交換機如何配置日誌
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

思科交換機如何配置日誌

發布時間: 2022-01-30 02:32:30

① 如何記錄思科交換機配置過的命令象H3C可以在LOG日誌中顯示曾經配置過的命令,思科交換機是否可以也這樣

思科只能記錄埠狀態、協議上發生的變化,遠程登錄進行了操作達到的一些結果。無法直接記錄命令,通過堡壘機跳轉就能進行命令監控

② 怎麼查看CISCO交換機日誌

1、在用戶模式下輸入」en「進入特權模式」Sw#「,如圖所示。

③ Cisco4503交換機日誌,請問如何設置可以避免flapping thanks!!

cisco官網上的解釋是:網路中存在環路,解決辦法是,啟用spanning-tree或者確保網路無環。原文:
A spanning tree loop is the most common cause of this condition. All traffic from
the specified host is temporarily dropped. After 15 seconds, forwarding is
reenabled. If the problem persists, the traffic from the problem host continues
to be dropped indefinitely.
Recommended Action Make sure that spanning
tree is enabled to prevent spanning tree loops. If you have spanning tree
disabled, make sure that you have no spanning tree loops in your network.

處理步驟:
1、首先重啟了兩台cisco4503交換機(其實網路上還連接了兩台IBM小型機通過HACMP做了雙機,由於雙機對共享資源的保護,對備機發出了 shutdown命令;正確的做法,應該先關閉一台交換機,或者將備機的hacmp停止後再關閉兩台交換機),啟動後,cpu利用率下降,業務得以正常進行;
2、接下來,根據報錯信息上提到的各個埠檢查網路中是否存在環路。經檢查,出了兩台4006之間有環路外,不存在其他環路,各命令檢查結果正常,所用到的命令有:show spantree active,show trunk,show config,show vlan,show port 等。
3、使用埠鏡像方式對流經交換機上的數據進行抓包,看是否有可疑的arp包,是否為arp病毒導致網路出現環路。檢查結果未發現。使用的命令為:set
span;使用的工具為:sniffer。
4、考慮到曾經遇到過cisco STP演算法出現bug的情況,決定對兩台交換機之間的配置做一個改動,將1/1-2兩個光纖埠做成一個channel,然後在做trunk,這樣既保持了兩台交換機之間的連接冗餘,又可以消除環路。使用的命令為:set port channel 1/1-2 53set port channel 1/1-2 mode on兩邊做完後,通過show
portchannel查看狀態,其中4006-2為notconnect,另一邊4006-1為errdisable;在4006-1上執行命令:setport
1/1-2 enable;在使用show port channel查看,兩邊的狀態均為connected;在其中一台交換機上設置trunk:set trunk 1/1-2 on 1使用show trunk命令查看狀態正常;使用show spantree active 查看正常:4006-2> (enable) show spantreeVLAN 1Spanning tree enabledSpanning tree type ieeeDesignated Root 00-05-32-db-b0-00Designated Root Priority 32768Designated Root Cost 3Designated Root Port 1/1-2 (agPort 13/1)Root Max Age 20 sec Hello Time 2 sec Forward Delay 15 secBridge ID MAC ADDR 00-05-32-db-b4-00Bridge ID Priority 32768Bridge Max Age 20 sec Hello Time 2 sec Forward Delay 15 secPort Vlan Port-State Cost Prio Portfast Channel_id------------------------ ---- ------------- --------- ---- -------- ----------1/1-2 1 forwarding 3 32 disabled 769這樣,在STP計算時,會將1/1-2當成一個埠在計算,從而消除了環路。

④ 思科交換機路由器日誌問題

應該先在命令行中開啟日誌!
set logging server enable
set logging server 192.168.2.3
後面的地址就是你的伺服器也就是PC的地址。

你在網路上查下具體的配置。
反正要設置一大堆的參數。

CISCO交換機基本配置:Console埠連接
用戶模式hostname# ;
特權模式hostname(config)# ;
全局配置模式hostname(config-if)# ;

交換機口令設置:
switch>enable ;進入特權模式
switch#config terminal ;進入全局配置模式
switch(config)#hostname csico ;設置交換機的主機名
switch(config)#enable secret csico1 ;設置特權加密口令
switch(config)#enable password csico8 ;設置特權非密口令
switch(config)#line console 0 ;進入控制台口
switch(config-line)#line vty 0 4 ;進入虛擬終端
switch(config-line)#login ;虛擬終端允許登錄
switch(config-line)#password csico6 ;設置虛擬終端登錄口令csico6
switch#exit ;返回命令

交換機VLAN創建,刪除,埠屬性的設置,配置trunk埠,將某埠加入vlan中,配置VTP:
switch#vlan database ;進入VLAN設置
switch(vlan)#vlan 2 ;建VLAN 2
switch(vlan)#vlan 3 name vlan3 ;建VLAN 3並命名為vlan3
switch(vlan)#no vlan 2 ;刪vlan 2
switch(config)#int f0/1 ;進入埠1
switch(config)#speed ? 查看speed命令的子命令
switch(config)#speed 100 設置該埠速率為100mb/s (10/auto)
switch(config)#plex ? 查看plex的子命令
switch(config)#plex full 設置該埠為全雙工(auto/half)
switch(config)#description TO_PC1 這是該埠描述為TO_PC1
switch(config-if)#switchport access vlan 2 ;當前端口加入vlan 2
switch(config-if)#switchport mode trunk ;設置為trunk模式(access模式)
switch(config-if)#switchport trunk allowed vlan 1,2 ;設置允許的vlan
switch(config-if)#switchport trunk encap dot1q ;設置vlan 中繼
switch(config)#vtp domain vtpserver ;設置vtp域名相同
switch(config)#vtp password ;設置發vtp密碼
switch(config)#vtp server ;設置vtp伺服器模式
switch(config)#vtp client ;設置vtp客戶機模式

交換機設置IP地址,默認網關,域名,域名伺服器,配置和查看MAC地址表:
switch(config)#interface vlan 1 ;進入vlan 1
switch(config-if)#ip address 192.168.1.1 255.255.255.0 ;設置IP地址
switch(config)#ip default-gateway 192.168.1.6 ;設置默認網關
switch(config)#ip domain-name cisco.com 設置域名
switch(config)#ip name-server 192.168.1.18 設置域名伺服器
switch(config)#mac-address-table? 查看mac-address-table的子命令
switch(config)#mac-address-table aging-time 100 設置超時時間為100ms
switch(config)#mac-address-table permanent 0000.0c01.bbcc f0/3 加入永久地址在f0/3埠
switch(config)#mac-address-table restricted static 0000.0c02.bbcc f0/6 f0/7 加入靜態地址目標埠f0/6源埠f0/7
switch(config)#end
switch#show mac-address-table 查看整個MAC地址表
switch#clear mac-address-table restricted static 清除限制性靜態地址

交換機顯示命令:
switch#write ;保存配置信息
switch#show vtp ;查看vtp配置信息
switch#show run ;查看當前配置信息
switch#show vlan ;查看vlan配置信息
switch#show interface ;查看埠信息
switch#show int f0/0 ;查看指定埠信息
switch#show int f0/0 status;查看指定埠狀態
switch#dir flash: ;查看快閃記憶體

http://www.netexpert.cn/thread-2000-1-1.html

⑤ 思科交換機如何設置!!

erase startup-config
reload

⑥ 思科交換機配置操作記錄到syslog

logging host a.b.c.d 指定日誌伺服器,可達
logging trap 發送的日誌級別

⑦ cisco3650三層交換機,如何查看用戶登陸和用戶修改配置日誌

用戶登錄 就show users 用戶修改配置要開啟logging on 在把日誌的等級 logging trap notification

⑧ 如何記錄思科交換機配置過的命令 象H3C可以在LOG日誌中顯示曾經配置過的命令,思科交換機是否可以也這樣.

執行命令show run,然後把回顯出來的內容復制粘貼到某個文件里保存就行了

⑨ cisco思科交換機如何查看日誌

實現的方法和詳細的操作步驟如下:

1、第一步,在打開robotframework窗口的界面中,單擊「tools」選項,見下圖,轉到下面的步驟。

⑩ 如果設置CISCO路由器和交換機,讓其讓配置操作記錄到SYSLOG日誌中

SYSLOG無法記錄配置變更,你只能架一台TACACS伺服器。