How to enable NAT sharing settings for dual-Nic in Linux
Source: Internet
Author: User
Article Title: How to enable NAT sharing settings for dual NICs in Linux. Linux is a technology channel of the IT lab in China. Including desktop applications, Linux system management, kernel research, embedded systems, open source, and other basic categories 1. Nic
Internet Nic
DEVICE = eth0
IPADDR = (Internet IP) NETMASK = 255.255.255.0
GATEWAY = (Internet GATEWAY)
Intranet
DEVICE = eth1
IPADDR = (intranet IP) NETMASK = 255.255.255.0
2. enable the kernel packet forwarding function: echo "1">/proc/sys/net/ipv4/ip_forward
3. packet forwarding disguise in the firewall: iptables-t nat-a postrouting-s 192.168.0.0/24-o eth1-j SNAT? To-source (Internet IP)
Note: Here 192.168.0.0/24 refers to the intranet subnet. if your intranet CIDR block is 192.168.1.1-192.168.1.255, it must be 192.168.1.0/24.
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