Hello:
Here is the setting of my NAT server in my company.
The following command is to redirect
all client with ip:10.100.129.[anything] to the web server of the NAT.
/sbin/iptables -t nat -A PREROUTING -i eth1 -p tcp -s 10.100.129.0/24 --
dport 80 -j REDIRECT --to-port 80
Is there any command to redirect
all client with ip:10.100.129[anything] to a web site e.g.
www.abc.com/pig?
Thanks a lot.