如何保护 oracle 12c 标准版数据库连接?
How to secure an oracle 12c standard edition database connection?
Oracles 网站上的所有信息(我目前找到的)都是针对企业版的。如何在标准版中创建从 oracle 客户端到 12c 数据库的安全连接?
感谢协助。
您可以通过在您的服务器 SQLNET.ORA
中设置 SQLNET.ENCRYPTION_SERVER=required
强制您的服务器只接受加密的客户端连接。默认值为 accepted
,这也将允许未加密的连接。见 Oracle Documentation
此功能适用于所有受支持版本的所有许可版本。引自 12c Database Licensing Information User Manual,第 "Oracle Wallet" 节:
Strong authentication services (Kerberos, PKI, and RADIUS) and network
encryption (native network encryption and SSL/TLS) are no longer part
of Oracle Advanced Security and are available in all licensed editions
of all supported releases of the Oracle database.
Oracles 网站上的所有信息(我目前找到的)都是针对企业版的。如何在标准版中创建从 oracle 客户端到 12c 数据库的安全连接? 感谢协助。
您可以通过在您的服务器 SQLNET.ORA
中设置 SQLNET.ENCRYPTION_SERVER=required
强制您的服务器只接受加密的客户端连接。默认值为 accepted
,这也将允许未加密的连接。见 Oracle Documentation
此功能适用于所有受支持版本的所有许可版本。引自 12c Database Licensing Information User Manual,第 "Oracle Wallet" 节:
Strong authentication services (Kerberos, PKI, and RADIUS) and network encryption (native network encryption and SSL/TLS) are no longer part of Oracle Advanced Security and are available in all licensed editions of all supported releases of the Oracle database.