oracle rac多私网的问题

https://docs.oracle.com/en/database/oracle/oracle-database/12.2/cwlin/multiple-private-interconnects-and-oracle-linux.html#GUID-B9508AD5-AFD6-4D34-9DA9-773D44FD43A0

Multiple Private Interconnects and Oracle Linux

Review this information for settings for the rp_filter parameter for Oracle RAC systems that use multiple NICs for the private interconnect.

With Oracle Linux kernel 2.6.31, which also includes Oracle Unbreakable Enterprise Kernel 2.6.32, a bug has been fixed in the Reverse Path Filtering. As a consequence of this correction, Oracle RAC systems that use multiple NICs for the private interconnect now require specific settings for the rp_filter parameter. This requirement also applies to all Exadata systems that are running Linux kernel 2.6.32 and above. Without these rp_filter parameter settings systems, interconnect packets can be blocked or discarded.

The rp_filter values set the Reverse Path filter to no filtering (0), to strict filtering (1), or to loose filtering (2). Set the rp_filter value for the private interconnects to either 0 or 2. Setting the private interconnect NIC to 1 can cause connection issues on the private interconnect. It is not considered unsafe to disable or relax this filtering, because the private interconnect should be on a private and isolated network.

For example, where eth1 and eth2 are the private interconnect NICs, and eth0 is the public network NIC, set the rp_filter of the private address to 2 (loose filtering), the public address to 1 (strict filtering), using the following entries in /etc/sysctl.conf :

net.ipv4.conf.eth2.rp_filter = 2

net.ipv4.conf.eth1.rp_filter = 2

net.ipv4.conf.eth0.rp_filter = 1

https://blog.itpub.net/28572479/viewspace-2681893/

https://blog.itpub.net/8520577/viewspace-2924566/

相关推荐
编码忘我14 分钟前
mysq系列之事务
数据库
知识分享小能手17 分钟前
Redis入门学习教程,从入门到精通,Redis进阶编程知识点详解(5)
数据库·redis·学习
MekoLi2922 分钟前
MongoDB 新手完全指南:从入门到精通的实战手册
数据库·后端
cyforkk27 分钟前
Spring AOP 进阶:揭秘 @annotation 参数绑定的底层逻辑
java·数据库·spring
2401_8849706139 分钟前
用Pygame开发你的第一个小游戏
jvm·数据库·python
麦聪聊数据40 分钟前
快速将Oracle数据库发布为 API:使用 QuickAPI 实现 SQL2API
数据库·sql·低代码·oracle·restful
6+h1 小时前
【Redis】数据结构讲解
数据结构·数据库·redis
ID_180079054731 小时前
小红书笔记详情 API 接口系列 + 标准 JSON 返回参考(完整版)
数据库·笔记·json
wertyuytrewm1 小时前
用Python实现自动化的Web测试(Selenium)
jvm·数据库·python
我真会写代码1 小时前
Java事务核心原理与实战避坑指南
java·开发语言·数据库