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
+23.9k Golang : Time slice or date sort and reverse sort example
+11.1k Golang : Surveillance with web camera and OpenCV
+7.4k Golang : Get today's weekday name and calculate target day distance example
+8.8k Golang : Play .WAV file from command line
+26k Golang : Force your program to run with root permissions
+5.4k PHP : Get client IP address
+4.7k Golang : Constant and variable names in native language
+11.5k Golang : Split strings into command line arguments
+8.2k Golang : Convert(cast) []byte to io.Reader type
+4.5k JQuery : Calling a function inside Jquery(document) block
+19.1k Golang : How to get own program name during runtime ?
+5.7k Golang : Create new color from command line parameters