由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Linux版 - help: iptables 问题
相关主题
how to do this iptables setup?求助: How to add Trusted Devices in Firewall on RedHat 5 (or Centos 5)?
how to do this Iptables setting?请问怎么获取pptp拨号后的子网?
[求教]: openvpn over http-proxy dns 设置问题 (转载)能否建立一个虚拟网卡并监听端口?
trick to use JMX on EC2 (转载)Mysql无法远程连接,求助 (转载)
请教,如果建立家里电脑和学校电脑的连接。Which DNS server are you using?
iptables禁用的ip存在哪里?为什么resolv.conf总被复原
linux 网络高手请帮忙,help config OpenWrtDNS problem
请问网络高手RHEL5救命:网路不通
相关话题的讨论汇总
话题: ip话题: iptables话题: internal话题: eth0话题: net
进入Linux版参与讨论
1 (共1页)
r****t
发帖数: 10904
1
应该是个常见问题了,一直不知道咋办:
A acts as the gateway, eth0 internal, eth1 external.
B is a web server behind A.
能做 DNAT 让 internet 访问到 B, 但是和 B 在同一个子网的机器却没法
直接用 A 的 IP 访问 B, 因为一些原因不想改内部 DNS, 我现在用
iptables -t nat -A PREROUTING -s $INTERNAL_NET -i eth0 -d IP_A -j DNAT --to-
dest IP_B
iptables -t nat -A POSTROUTING -s IP_B -o eth0 -d $INTERNAL_NET -j SNAT --to
-source IP_A
不能工作,请问我该怎么办?
c******n
发帖数: 4965
2
set A's filter,
something like
-t filter -A PREROUTTING -src_host IP_all_other_internal_nodes -dst_host
public_IP_of_A -dst_port public_port_of_B -j REJECT
then the regular port-forwarding setup.
(the above syntax is most likely wrong, but u get the idea)

to-
to

【在 r****t 的大作中提到】
: 应该是个常见问题了,一直不知道咋办:
: A acts as the gateway, eth0 internal, eth1 external.
: B is a web server behind A.
: 能做 DNAT 让 internet 访问到 B, 但是和 B 在同一个子网的机器却没法
: 直接用 A 的 IP 访问 B, 因为一些原因不想改内部 DNS, 我现在用
: iptables -t nat -A PREROUTING -s $INTERNAL_NET -i eth0 -d IP_A -j DNAT --to-
: dest IP_B
: iptables -t nat -A POSTROUTING -s IP_B -o eth0 -d $INTERNAL_NET -j SNAT --to
: -source IP_A
: 不能工作,请问我该怎么办?

r****t
发帖数: 10904
3
sorry, why do we REJECT here? I do not understand the purpose of rejection.
also, did you mean -t nat instead of -t filter? filter table does not have
PREROUTING (not by default)...

【在 c******n 的大作中提到】
: set A's filter,
: something like
: -t filter -A PREROUTTING -src_host IP_all_other_internal_nodes -dst_host
: public_IP_of_A -dst_port public_port_of_B -j REJECT
: then the regular port-forwarding setup.
: (the above syntax is most likely wrong, but u get the idea)
:
: to-
: to

1 (共1页)
进入Linux版参与讨论
相关主题
RHEL5救命:网路不通请教,如果建立家里电脑和学校电脑的连接。
VM中routing table消失的问题iptables禁用的ip存在哪里?
simulate connection drop by iptables?linux 网络高手请帮忙,help config OpenWrt
ubuntu server家用都有哪些?请问网络高手
how to do this iptables setup?求助: How to add Trusted Devices in Firewall on RedHat 5 (or Centos 5)?
how to do this Iptables setting?请问怎么获取pptp拨号后的子网?
[求教]: openvpn over http-proxy dns 设置问题 (转载)能否建立一个虚拟网卡并监听端口?
trick to use JMX on EC2 (转载)Mysql无法远程连接,求助 (转载)
相关话题的讨论汇总
话题: ip话题: iptables话题: internal话题: eth0话题: net