zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

Oracle 参数 SEC_PROTOCOL_ERROR_FURTHER_ACTION 官方解释,作用,如何配置最优化建议

Oracle官方配置 如何 Error 建议 作用 解释
2023-06-13 09:11:20 时间
本站中文解释

SEC_PROTOCOL_ERROR_FURTHER_ACTION参数用于指定Oracle特定的安全组件拒绝连接时的处理方式,属于用户的安全认证和审核的一部分。

SEC_PROTOCOL_ERROR_FURTHER_ACTION允许的值仅有四种:

(1)FAILED_LOGIN_ATTEMPTS:如果登录失败次数超过固定值,那么连接将会被拒绝;

(2)CHANGE_USERNAME_PASSWORD:如果用户名或密码不正确,连接将会被拒绝,要求用户更改用户名或密码;

(3)LOCK_ACCOUNT:如果用户名或密码不正确,连接将会被拒绝,并自动锁定用户帐号;

(4)DROP:如果用户名或密码不正确,连接将会被拒绝,并直接关闭连接。

正确设置SEC_PROTOCOL_ERROR_FURTHER_ACTION参数的方法:

(1)第一步,在SQL*Plus命令行中输入“show parameter SEC_PROTOCOL_ERROR_FURTHER_ACTION”,查看当前的SEC_PROTOCOL_ERROR_FURTHER_ACTION参数的值;

(2)第二步,根据实际需要调整SEC_PROTOCOL_ERROR_FURTHER_ACTION参数,可以使用“alter system set SEC_PROTOCOL_ERROR_FURTHER_ACTION=value immediate”命令;

(3)第三步,使用“show parameter SEC_PROTOCOL_ERROR_FURTHER_ACTION”命令查看SEC_PROTOCOL_ERROR_FURTHER_ACTION参数是否已经成功设置。

以上就是有关Oracle参数SEC_PROTOCOL_ERROR_FURTHER_ACTION的详细说明及其正确设置方法的介绍。

官方英文解释

SEC_PROTOCOL_ERROR_FURTHER_ACTION specifies the further execution of a server process when receiving bad packets from a possibly malicious client.


SEC_PROTOCOL_ERROR_FURTHER_ACTION = { CONTINUE | (DELAY,integer) | (DROP,integer) }


CONTINUE

The server process continues execution. The database server may be subject to a Denial of Service (DoS) if bad packets continue to be sent by a malicious client.


(DELAY,integer)

The client experiences a delay of integer seconds before the server process accepts the next request from the same client connection. Malicious clients are prevented from excessive consumption of server resources while legitimate clients experience a degradation in performance but can continue to function.


(DROP,integer)

The server forcefully terminates the client connection after integer cumulative bad packets. The server protects itself at the expense of the client (for example, a client transaction may be lost). The client may reconnect and attempt the same operation.


我想要获取技术服务或软件
服务范围:MySQL、ORACLE、SQLSERVER、MongoDB、PostgreSQL 、程序问题
服务方式:远程服务、电话支持、现场服务,沟通指定方式服务
技术标签:数据恢复、安装配置、数据迁移、集群容灾、异常处理、其它问题

本站部分文章参考或来源于网络,如有侵权请联系站长。
数据库远程运维 Oracle 参数 SEC_PROTOCOL_ERROR_FURTHER_ACTION 官方解释,作用,如何配置最优化建议