惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Threat Research - Cisco Blogs
博客园 - 聂微东
小众软件
小众软件
P
Proofpoint News Feed
Security Archives - TechRepublic
Security Archives - TechRepublic
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
TaoSecurity Blog
TaoSecurity Blog
博客园 - 司徒正美
罗磊的独立博客
N
News and Events Feed by Topic
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Security Affairs
S
Security @ Cisco Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The GitHub Blog
The GitHub Blog
月光博客
月光博客
S
Secure Thoughts
P
Proofpoint News Feed
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Forbes - Security
Forbes - Security
H
Heimdal Security Blog
W
WeLiveSecurity
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
L
LangChain Blog
T
The Blog of Author Tim Ferriss
NISL@THU
NISL@THU
Google DeepMind News
Google DeepMind News
Cloudbric
Cloudbric
H
Hacker News: Front Page
The Last Watchdog
The Last Watchdog
Hacker News - Newest:
Hacker News - Newest: "LLM"
C
Cisco Blogs
博客园 - 三生石上(FineUI控件)
博客园_首页
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
S
Schneier on Security
Project Zero
Project Zero
SecWiki News
SecWiki News
爱范儿
爱范儿
The Register - Security
The Register - Security
AI
AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Y
Y Combinator Blog
L
Lohrmann on Cybersecurity
Application and Cybersecurity Blog
Application and Cybersecurity Blog
P
Privacy International News Feed
J
Java Code Geeks
S
Securelist
C
Cyber Attacks, Cyber Crime and Cyber Security
V
Visual Studio Blog

博客园 - 石云华

/var/log/message日志中的“megaraid_sas 0000:65:00.0: Application firmware crash dump mode set success”信息 DBCA后,只能启动一个实例,都是rp_filter惹的祸 分析Exadata写入慢的性能故障 Exadata更换Infiniband交换机 数据库集群中的bond1接口出现网络丢包 EM13告警:Metric evaluation error start - oracle.sysman.emSDK.agent.fetchlet.exception.FetchletException: Permission denied(publickey,password) Exadata更换计算节点的硬盘 Exalogic虚拟机的网络无法启动,提示Device has different MAC address than expected 单个ASM磁盘free空间为0,导致rebalance时提示“ASM磁盘组空间耗尽(ORA-15041)” Exadata的思科交换机,重启后进入到了rommon模式 SYSAUX表空间中的SYS.EXP_HEAD$表,占用大量空间 PX并行进程产生大量的trace日志,导致文件系统撑爆 回收站存在大量对象,导致Insert into...select语句夯住 用dg broker执行switchover时,报0RA-01017 增量备份恢复的方式修改缺失归档的DataGuard 未设置min_free_kbytes参数,导致操作系统进行页缓存回收时,整个操作系统夯住 Exadata数据库性能异常,备份进程卡住 MySQL 5.7版本,搭建一个两主一从的多源主从复制环境 恢复某个数据文件不适当,导致DataGuard无法open数据库 Exadata计算节点的内存出现故障,导致CPU耗尽 Bug 34885986 - Flashback log file was not reused even if db_flashback_retention_target is passed
Exadata,更换完思科交换机后,与上联交换机无法通信
石云华 · 2026-03-29 · via 博客园 - 石云华

1、故障概述

客户有一台Exadata X3-2,思科交换机出现故障,管理网络中断。更换完思科交换机,并且按照官方手册中的步骤重新配置完Exadata内置的思科交换机后,该Exadata内部的所有节点都可以正常通信,但与上联交换机无法通信。本文主要介绍其中的原因,以及解决办法。

2、故障处理

2.1 按照官方手册中的步骤重新配置内置的思科交换机,具体步骤略。

https://docs.oracle.com/en/engineered-systems/exadata-database-machine/dbmin/configuring-cisco-catalyst-4948-ethernet-switch.html

2.2 配置完思科交换机后,进行网络验证。发现Exadata内部的所有节点都可以正常通信,但与上联交换机无法通信。 也即用网线直连这台刚刚更换的交换机,就能正常访问计算节点和存储节点。但是,无法ping通网关。

2.3 最终,只能向客户的网络专家寻求帮助,经过大半天时间的排查,最终找到了原因,原来是因为新配置的交换机中的STP(生成树协议)和上联交换机配置不一致导致的。上联交换机关闭了STP,而接入的交换机默认是开启STP的。

对于一台级联(接入层)交换机来说,它的STP开关状态必须与整网的STP策略保持一致,而该策略由上层(分布层/核心层)交换机主导如果上层核心交换机全局关闭了STP,而您这台接入交换机却开启了STP,可能会阻塞上联端口,导致断网。

问题解决方案:确认上联交换机是否开启STP(生成树协议),本地交换机需要与上联交换机保持一致

2.4 什么是STP?

STP(生成树协议)是一个运行在交换机上的二层协议,其核心任务是防止以太网中因物理连接冗余而产生的广播风暴,并在冗余路径中构建一个无环路的逻辑转发拓扑。思科交换机上,默认开启了这一功能,它的核心作用是在逻辑上“剪断”网络中的冗余环路,防止广播风暴和MAC地址表震荡导致网络瘫痪;同时,物理上的冗余链路又能在故障时自动启用,保障网络高可用性。

2.5 思科交换机上启动、关闭STP的步骤:

1) 启用STP生成树绑定
drexasw-adm0#configure terminal
drexasw-adm0(config)# spanning-tree vlan 1 #在VLAN1 上启用生成树协议
drexasw-adm0(config)#interface range gigabitEthernet 1/1–46 #进入1-46端口配置模式
drexasw-adm0(config-if)#spanning-tree portfast #端口绑定生成树
drexasw-adm0(config)#end
drexasw-adm0# write memory

2) 关闭STP生成树绑定
关闭STP生成树绑定需要注意网络环境必须 100% 无任何物理环路
drexasw-adm0#configure terminal
#关闭vlan1的生成树,vlan1下的端口spanning-tree portfast配置自动失效
drexasw-adm0(config)# no spanning-tree vlan 1
drexasw-adm0(config)#end
drexasw-adm0# write memory

3 、故障解决方案

由于上联交换机已经关闭了STP功能,所以Exadata内置的这台思科交换机也需要关闭STP功能。