iptables 을 이용한 패킷 포워딩?

skbyeon의 이미지

서버A 에서 나가는 패킷 중 destination port 가 22번 인 패킷만 골라서 서버 B 로 보낼 수 있는 방법이 있을까요?

익명 사용자의 이미지

mangle table의 mark target을 사용하면 가능할 듯

http://www.lartc.org/howto/lartc.netfilter.html

rocksea의 이미지

iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 22 -j DNAT --to 192.168.0.100:22

Knowleage Creator.

ydhoney의 이미지

it's correct!