README.md aktualisiert

This commit is contained in:
Tizian Maxime Weigt 2025-05-06 19:54:54 +00:00
parent 91c5d1ceb5
commit 2128c14dc1

View File

@ -2,7 +2,7 @@
| Flag Combination | Flags Set (Hex) | Purpose | IP+TCP Payload Size | Ethernet Frame Size | XDP Filtering Logic |
|------------------|-----------------|---------|---------------------|---------------------|---------------------|
| SYN | 0x02 | Initiates connection | 4059 bytes | 6477 bytes | Rate limit SYN packets per source IP to prevent floods. Drop if rate exceeds threshold. |
| SYN | 0x02 | Initiates connection | 4059 bytes | 6477 bytes | Rate limit SYN packets per source IP to prevent floods. Drop if rate exceeds threshold. SynProxy |
| SYN-ACK | 0x12 | Acknowledges SYN | 4059 bytes | 6477 bytes | Validate against recent SYN requests using eBPF maps. Drop if no matching SYN. |
| ACK | 0x10 | Acknowledges data | 40 bytes | 64 bytes | Allow for established connections. Rate limit to prevent ACK floods. |
| PSH-ACK | 0x18 | Pushes data | 401500 bytes | 641518 bytes | Allow for data transfer. Rate limit large packets to prevent floods. |