How do we redirect a particular LAN IP address or block or set of IP address with UDP port to a particulate destination address?
IP address of the block 192.168.112.0/24 or 192.168.112.10 or multiple IP’s
Protocol: UDP
Port: 53
dst address: 67.138.54.100
(This was referred form a previous post regarding blocking of adult content)
Regards
butche
January 11, 2008, 2:30am
3
vvishal5:
How do we redirect a particular LAN IP address or block or set of IP address with UDP port to a particulate destination address?
IP address of the block 192.168.112.0/24 or 192.168.112.10 or multiple IP’s
Protocol: UDP
Port: 53
dst address: 67.138.54.100
(This was referred form a previous post regarding blocking of adult content)
/ip firewall nat
add chain=dstnat protocol=udp dst-port=53 dst-address=67.138.54.100 action=dst-nat \
to-addresses=NEW.IP.ADDRESS to-ports=53
I assume you meant that you want to redirect traffic that would NORMALLY go to 67.138.54.100 to some NEW IP address. For what it’s worth, this is pretty well covered in the manual.