You can't port redirect / change on the same machine in that way via the webconfig. So you can't redirect incoming traffic on port 525 to 25 on ClearOS
You should be able to do it manually with some iptables trickery
| Code: |
iptables -t nat -I PREROUTING -i eth0 -p tcp --dport 525 -j REDIRECT --to-ports 25
|
Change eth0 to your WAN interface
This way you don't need to open up port 525 and leave your config as is.
If you want to make it permanent add it to /etc/rc.d/rc.firewall.local
If it doesn't work - wipe the changes with 'service firewall restart'