Displaying 1 result from an estimated 1 matches for "destianion".
Did you mean:
destiantion
2005 Jun 22
0
RE: Q: Routing the Same IP simultaneously on differentcomputers ?
...to 50) or ah(proto
51).
How does it work ?!
All packets pass through netfilter, you can google for a diagram, to see the
order of traversal trough the tables/chains. But this concerns only the nat
table so, the order is: PREROUTING, FORWARD, POSTROUTING.
In the PREROUTING chain, we can alter the destianion of the packet, so :
iptables -t nat -I PREROUTING -p 50 -d 128.x.x.x -j DNAT --to-destination
192.168.0.1
This will change the IPSEC ah packet''s destination address to your lan ipsec
host.
I don''t know if this is really functional. I''m not so familiar with ipsec
ah, bu...