iptables
1 TopicRedirect traffic to one VS to another
I've been asked to redirect access to a VS to another one. The problem here is that the target VS is an HTTPS VS and the BIG-IP doesn't open the SSL so I can't configure an HTTP 301 redirect. I've thought that a way to forward the connections to that VS to the other one as I can't use the HTTP redirect, is to forward it in the TCP level, using IPTABLES to forward the traffic with a rule like this: iptables -t nat -A PREROUTING -p tcp -i external -d 195.235.106.196 --dport 443 -j DNAT --to 195.235.106.207 I don't know if there's a better way to do this or if the iptables way is not recommended for some reason. Thanks.528Views0likes4Comments