Community discussions

MikroTik App
 
jimmy1987
just joined
Topic Author
Posts: 4
Joined: Sat Oct 03, 2015 5:00 pm

Migrating Vyos to RouterOS

Sat Oct 03, 2015 5:10 pm

Hi,

I'm slowly migrating from Vyos to RouterOS and therefore I am trying to build a test first to see how everything would work.
Could someone help me with converting some of these firewall rules? So I know how to create the additional ones.

name OUTSIDE-IN {
default-action drop
rule 10 {
action accept
state {
established enable
related enable
}
}
rule 50 {
action accept
icmp {
type-name echo-request
}
protocol icmp
state {
new enable
}
}
rule 55 {
action accept
description Networkwide_Access
destination {
address 1.1.1.1/24
}
protocol tcp_udp
source {
group {
address-group Whitelist
}
}
}
rule 60 {
action accept
description MySQL_Slave
destination {
address 2.2.2.2
port 3306
}
protocol tcp_udp
source {
address 3.3.3.3
}
}
rule 65 {
action accept
description DNS Server
destination {
address 4.4.4.4
port 53
}
protocol tcp_udp

My setup wil be built on 1 public IP as WAN and a public /24 as LAN without doing any NAT at all.
My current firewall list is much much longer but if anyone can me help me with these I am sure I can figure the rest out myself :)
 
descartes
just joined
Posts: 21
Joined: Sun Sep 20, 2015 3:04 pm

Re: Migrating Vyos to RouterOS

Fri Oct 09, 2015 5:45 pm

Hi,

You can probably check this wiki for some examples for ip firewall things for Mikrotik.

http://wiki.mikrotik.com/wiki/Manual:IP/Firewall/Filter

You can also use mikrotik's winbox client as a GUI client for Mikrotik devices.

regards,