howto/mikrotik.md
... ...
@@ -101,10 +101,10 @@ In this example, we will use the second method.
101 101
```
102 102
/routing filter rule
103 103
add chain=dn42-in rule="if (dst in 192.168.0.0/16 && dst-len > 16) { reject }"
104
-add chain=dn42-in rule="if (dst in 169.254.0.0/1 && dst-len > 16) { reject }"
104
+add chain=dn42-in rule="if (dst in 169.254.0.0/16 && dst-len > 16) { reject }"
105 105
add chain=dn42-in rule="accept"
106 106
add chain=dn42-out rule="if (dst in 192.168.0.0/16 && dst-len > 16) { reject }"
107
-add chain=dn42-out rule="if (dst in 169.254.0.0/1 && dst-len > 16) { reject }"
107
+add chain=dn42-out rule="if (dst in 169.254.0.0/16 && dst-len > 16) { reject }"
108 108
add chain=dn42-out rule="accept"
109 109
```
110 110