|
发表于 2006-7-11 13:08:22
|
显示全部楼层
来自 中国–广东–广州–从化区
回复: 利用QQwry来显示IP的插件能支持局域网的吗?
本网吧是用redhat 9.0 +squid+nat透明代理上网的,端口影射
附:iptables规则
/sbin/iptables -t nat -A PREROUTING -d (外网IP) -p udp --dport 27015 -j DNAT --to (内网IP)
/sbin/iptables -t nat -A POSTROUTING -d (内网IP)-p udp --dport 27015 -o eth1 -j SNAT --to (网关)
/sbin/iptables -t nat -A POSTROUTING -s 192.168.0.254 -p udp --dport 27010:27012 -o eth1 -j SNAT --to (网关)
/sbin/iptables -t nat -A POSTROUTING -s 192.168.0.254 -p tcp --dport 5273 -o eth1 -j SNAT --to (网关)
/sbin/iptables -t nat -A POSTROUTING -s 192.168.0.254 -p tcp --dport 7002 -o eth1 -j SNAT --to (网关)
/sbin/iptables -t nat -A POSTROUTING -s 192.168.0.254 -p udp --dport 27010:27012 -o eth0 -j SNAT --to (外网IP)
/sbin/iptables -t nat -A POSTROUTING -s 192.168.0.254 -p tcp --dport 5273 -o eth0 -j SNAT --to (外网IP)
/sbin/iptables -t nat -A POSTROUTING -s 192.168.0.254 -p tcp --dport 7002 -o eth0 -j SNAT --to (外网IP)
其中网关IP为:192.168.0.1
CS服务器为:192.168.0.254 |
|