Linux : Disable and enable IPv4 forwarding
A quick note on how to disable or enable IP (version 4) forwarding in Linux. IP forwarding is a routing process used to determine which path a packet or datagram can be sent. If you are using Linux as a web server and you do not want your web server to be used in this routing process. You can disable the IP forwarding.
There are couple of ways you can disable IP forwarding.
In /etc/sysctl.conf
file, change net.ipv4.ip_forward = 0
or issue this command :
>sudo sysctl -w net.ipv4.ip_forward=0
to check if the IP forwarding has been disabled, you can view the /proc/sys/net/ipv4/ip_forward
file content. If it is 0
that means IP forwarding has been disabled.
In case you want to reverse your action, you can enable IP forwarding back with this command.
>sudo sysctl -w net.ipv4.ip_forward=1
Reference :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+7.9k Golang : How to feed or take banana with Gorilla Web Toolkit Session package
+13.8k Golang : Check if an integer is negative or positive
+7.4k Golang : Convert source code to assembly language
+16.5k Golang : File path independent of Operating System
+9.5k Golang : Apply Histogram Equalization to color images
+10.7k Golang : How to unmarshal JSON inner/nested value and assign to specific struct?
+30.4k Golang : How to verify uploaded file is image or allowed file types
+20.6k Nginx + FastCGI + Go Setup.
+33.1k Delete a directory in Go
+8.8k Golang : Executing and evaluating nested loop in html template
+14.9k Golang : Basic authentication with .htpasswd file
+6.6k Grep : How to grep for strings inside binary data