在ML下如何设置使用路由共享上网(我的机子不是路由)
鼓捣好几天了,就是弄不成啊,在win下设置好IP就能上了,在ML下也设置了就是上不去啊 ####################magic linux#!/bin/sh
echo "Starting iptables rules..."
ifconfig eth1 192.168.0.1
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
iptables -A FORWARD -i eth1 -j ACCEPT
用iptables,在写个脚本让开机运行就可以了
注:eth0 是外部网卡,eth1是内部网卡
页:
[1]