worka: Ubuntu enable ipv4 forwarding
cat /proc/sys/net/ipv4/ip_forward
or
sysctl net | grep ip_forward
0=disabled
1=enabled
So add this to the /etc/sysctl.conf file
net.ipv4.ip_forward=1
cat /proc/sys/net/ipv4/ip_forward
or
sysctl net | grep ip_forward
0=disabled
1=enabled
So add this to the /etc/sysctl.conf file
net.ipv4.ip_forward=1
05/23: Linux > Ubuntu ブート順を変更する
05/19: Linux > network
05/19: Linux > routing
IPマスカレードでルータにする -ipchains-
"FORWARD_IPV4=yes" となっていればOKだ。
また、kernel 2.4 以降の場合は下記の部分にも注意。
/etc/sysctl.conf の net.ipv4.ip_forward = 0 を 1 に変更する。
さて、これで準備が整った。
実際にIPマスカレードを有効にするには・・・
#ipchains -P forward DENY
#ipchains -A forward -s 192.168.1.0/24 -d 0.0.0.0/0 -j MASQ
とする。
"FORWARD_IPV4=yes" となっていればOKだ。
また、kernel 2.4 以降の場合は下記の部分にも注意。
/etc/sysctl.conf の net.ipv4.ip_forward = 0 を 1 に変更する。
さて、これで準備が整った。
実際にIPマスカレードを有効にするには・・・
#ipchains -P forward DENY
#ipchains -A forward -s 192.168.1.0/24 -d 0.0.0.0/0 -j MASQ
とする。
Redhat/FedoraのIP設定ファイル
/etc/sysconfig/network
/etc/sysconfig/network-scripts/ifcfg-eth0
/etc/sysconfig/network-scripts/route-eth0
/etc/host.conf
/etc/nsswitch.conf
/etc/hosts
/etc/resolv.conf
/etc/sysconfig/network
/etc/sysconfig/network-scripts/ifcfg-eth0
/etc/sysconfig/network-scripts/route-eth0
/etc/host.conf
/etc/nsswitch.conf
/etc/hosts
/etc/resolv.conf