Created
January 12, 2020 18:56
-
-
Save whoamiTM/039fc4cc92bb5008030ada394aa7676a to your computer and use it in GitHub Desktop.
sysctl.conf for dual stack IPv4 & IPv6 VPN
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For binary values, 0 is disabled, 1 is enabled. | |
# To save changes run command sysctl -p | |
# For more information, see sysctl.conf(5) and sysctl.d(5). | |
# Controls IP packet forwarding | |
net.ipv4.ip_forward = 1 | |
# Controls IPv6 packet forwarding | |
net.ipv6.conf.all.forwarding = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment