Linux notes: Enabling IP Forwarding in Linux

Source: Internet
Author: User
In Linux, the IP forwarding function is not enabled by default. to confirm the status of the IP forwarding function, you can view the/proc file system and run the following command:
CAT/proc/sys/NET/IPv4/ip_forward

If the value in the preceding file is 0, IP Forwarding is prohibited. If the value is 1, IP Forwarding is enabled.

To enable the IP forwarding function, you can directly modify the above file:
Echo 1>/proc/sys/NET/IPv4/ip_forward

Change the file content from 0 to 1. If IP Forwarding is disabled, change 1 to 0.

The above command does not save the changes to the IP Forwarding configuration. The original value will still be used when the system starts the next time. To modify IP Forwarding permanently, You need to modify/etc/sysctl. modify the values of the following line in the conf file:
Net. ipv4.ip _ forward = 1

After modification, You can restart the system to make the modification take effect. You can also execute the following command to make the modification take effect:
Sysctl-P/etc/sysctl. conf

After the above configuration, the IP forwarding function will be permanently enabled.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.