Hi all,
Im new on Mikrotik and I have configured it now, it works fine, but now Im afraid of security (if there is not something that is open for hackers). I`m using mail server and web server on my network (both with IP 192.168.1.200) and VPN trough PPTP.
My configuration is following:
From DSL router to Mikrotik:
PPTP 1723 1723 TCP 1723 1723 192.168.100.2
Mail (SMTP) 25 25 TCP 25 25 192.168.100.2
Web Server (HTTP) 80 80 TCP 80 80 192.168.100.2
Mikrotik:
/ip firewall filter print
0 ;;; default configuration
chain=input action=accept protocol=icmp1 ;;; default configuration
chain=input action=accept connection-state=established
in-interface=ether1-gateway2 ;;; default configuration
chain=input action=accept connection-state=related
in-interface=ether1-gateway3 ;;; MAIL
chain=forward action=accept dst-address=192.168.1.2004 ;;; VPN
chain=input action=accept protocol=tcp dst-port=17235 ;;; default configuration
chain=input action=drop in-interface=ether1-gateway
/ip firewall nat print
0 ;;; default configuration
chain=srcnat action=masquerade1 ;;; MAIL
chain=dstnat action=dst-nat to-addresses=192.168.1.200 protocol=tcp
in-interface=ether1-gateway dst-port=252 ;;; PPTP
chain=dstnat action=dst-nat to-ports=1723 protocol=tcp
in-interface=ether1-gateway src-port=17233 ;;; WEB SERVER
chain=dstnat action=dst-nat to-addresses=192.168.1.200 to-ports=80
protocol=tcp in-interface=ether1-gateway dst-port=80
So I want to know, if there is not something unnecessarily open, that can cause a harm to my network.
Thanks for all answers and tips.