mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-05-02 21:54:50 -04:00
Provide option to enable ARP filtering
This commit is contained in:
parent
c2aae73ce1
commit
a25d4f8df8
2 changed files with 12 additions and 0 deletions
|
@ -443,6 +443,15 @@ net.ipv4.conf.*.send_redirects=0
|
|||
net.ipv6.conf.*.accept_redirects=0
|
||||
#net.ipv4.conf.*.secure_redirects=1
|
||||
|
||||
## Enable ARP (Address Resolution Protocol) filtering.
|
||||
## Prevents the Linux kernel from handling the ARP table globally
|
||||
## Can mitigate some ARP spoofing and ARP cache poisoning attacks.
|
||||
## Improper filtering can lead to increased ARP traffic and inadvertently block legitimate ARP requests.
|
||||
##
|
||||
## https://cyber.gouv.fr/sites/default/files/document/linux_configuration-en-v2.pdf
|
||||
##
|
||||
#net.ipv4.conf.*.arp_filter=1
|
||||
|
||||
## Drop gratuitous ARP (Address Resolution Protocol) packets.
|
||||
## Stops ARP responses sent by a device without being explicitly requested.
|
||||
## Prevents ARP cache poisoning by rejecting fake ARP entries into a network.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue