Well not to my knowledge. I did not write any scripts for firewall regarding iptables. This server was dedicated only for running proxy server, that's why what I did was that I configured squid only. You know, I talked to our ISP and they offered my to write the following rules to my rc.local file:
iptables -t nat -F
iptables -t nat -A POSTROUTING -s 192.168.x.x/24 -p tcp --dport 110 -j
SNAT --to-source 81.95.x.x
iptables -t nat -A POSTROUTING -s 192.168.x.x/24 -p tcp --dport 25 -j
SNAT --to-source 81.95.x.x
sysctl -w net.ipv4.ip_forward=1
where 192.168.x.x -- IP address of my network
and 81.95.x.x -- IP address of our IP address given by our ISP.
And I did put 'em in. However, it did not work. I'm checking with outlook and still cannot connect. Neither can I telnet for example pop.mail.ru 110 server. Maybe I'm doing something wrong. There has to be some decision. Thank you for your patience.
P.S. do I need to type $ sign in front of the word "iptables", and what does $ sign mean?