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
![Smile :)](./images/smilies/icon_smile.gif)