简体   繁体   English

什么反 ddos​​ 安全系统 python 用于套接字 TCP 连接?

[英]what anti-ddos security systems python use for socket TCP connections?

More in detail, would like to know:更详细的,想知道:

  • what is the default SYN_RECEIVED timer,什么是默认的 SYN_RECEIVED 计时器,
  • how do i get to change it,我该如何改变它,
  • are SYN cookies or SYN caches implemented.是 SYN cookie 或 SYN 缓存实现的。

I'm about to create a simple special-purpose publically accessible server.我将要创建一个简单的特殊用途的可公开访问的服务器。 i must choose whether using built-in TCP sockets or RAW sockets and re-implement the TCP handshake if these security mechanisms are not present.如果这些安全机制不存在,我必须选择是使用内置 TCP 套接字还是 RAW 套接字并重新实现 TCP 握手。

What you describe are internals of the TCP stack of the operating system.您所描述的是操作系统 TCP 堆栈的内部结构。 Python just uses this stack via the socket interface. Python 只是通过套接字接口使用这个堆栈。 I doubt that any of these settings can be changed specific to the application at all, ie these are system wide settings which can only be changed with administrator privileges.我怀疑这些设置中的任何一个都可以针对应用程序进行更改,即这些是系统范围的设置,只能使用管理员权限进行更改。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM