Tagged Questions
2
votes
2answers
162 views
Linux: Is there a IPv6 equivalent to the IPv4 kernel option accept_local?
Since linux kernel >= 2.6.33 the kernel option "accept_local" can be modified:
/proc/sys/net/ipv4/conf/${interfaceID}/
accept_local - BOOLEAN
Accept packets with local source addresses. ...
2
votes
2answers
1k views
What is kernel ip forwarding?
I have seen on many blogs, using this command to enable IP forwarding while using many network security/sniffing tools on linux
echo 1 > /proc/sys/net/ipv4/ip_forward
Can anyone explain me in ...