routeros-firewall
RouterOS firewall filter, NAT, mangle, and address-list configuration. Use when: writing firewall rules in RouterOS, configuring NAT, setting up address-lists or interface-lists, writing idempotent firewall scripts, configuring DNS redirect or port forwarding, or when the user mentions /ip/firewall, chain=forward, chain=input, connection-state, address-list, interface-list, or layer7-protocol on MikroTik.
What this skill does
# RouterOS Firewall ## Rule Ordering — Sequential, Not Priority-Based Rules are evaluated **top-to-bottom** — first match wins. This is the biggest source of iptables confusion. - `place-before=0` inserts at the top; default `add` appends at the bottom - An `action=accept` rule must appear BEFORE any `action=drop` for the same traffic - **Non-terminal actions do NOT stop evaluation:** `action=add-src-to-address-list`, `action=add-dst-to-address-list`, `action=log`, and any rule with `passthrough=yes` continue to the next rule. A `drop` rule below an `add-src-to-address-list` will still fire. ```routeros # WRONG — drop fires before accept can match /ip/firewall/filter/add chain=input action=drop /ip/firewall/filter/add chain=input src-address=10.0.0.1 action=accept # CORRECT — accept first, drop catches the rest /ip/firewall/filter/add chain=input src-address=10.0.0.1 action=accept place-before=0 /ip/firewall/filter/add chain=input action=drop ``` ## Address-Lists as Dynamic Selectors LLMs rarely suggest this pattern — they write one rule per IP address instead. Address-lists scale to hundreds of IPs with a single firewall rule. ```routeros # Build the list (static or dynamic with auto-expiry) /ip/firewall/address-list/add list=trusted-mgmt address=192.168.1.0/24 /ip/firewall/address-list/add list=trusted-mgmt address=10.0.0.5 timeout=1h # One rule handles all list members /ip/firewall/filter/add chain=input src-address-list=trusted-mgmt action=accept \ comment="myapp-accept-mgmt" ``` Dynamic entries with `timeout=` expire automatically — the primary pattern for DoS blacklists. ## Interface-Lists as Rule Selectors `in-interface-list=` / `out-interface-list=` — powerful RouterOS pattern LLMs never propose. Eliminates duplicate rules when multiple interfaces serve the same role. ```routeros # Define the group once /interface/list/add name=WAN /interface/list/member/add list=WAN interface=ether1 /interface/list/member/add list=WAN interface=pppoe-out1 # One rule applies to all WAN interfaces /ip/firewall/filter/add chain=input in-interface-list=WAN action=drop \ comment="myapp-drop-all-wan" ``` ## Comment-as-Tag Pattern (Idempotent Scripts) RouterOS has no "upsert" — re-running a script without cleanup creates duplicate rules. Use a comment prefix as a tag: ```routeros # Remove only rules we own — preserves rules from other tools /ip/firewall/filter/remove [find comment~"myapp-"] /ip/firewall/address-list/remove [find comment~"myapp-"] /ip/firewall/nat/remove [find comment~"myapp-"] # Add with consistent tag — readable in /print output /ip/firewall/filter/add chain=input src-address-list=trusted-mgmt action=accept \ comment="myapp-accept-mgmt" /ip/firewall/filter/add chain=input in-interface-list=WAN action=drop \ comment="myapp-drop-wan" ``` **Never use `remove [find dynamic=no]`** — this deletes ALL static rules including those added by management tools. Some tools (e.g. OptiWize) mark their rules with `comment~"#orchestrator-*"` — a bulk remove silently breaks remote management. ## Connection State RouterOS `connection-state=` is not iptables `-m state`: ```routeros /ip/firewall/filter/add chain=input connection-state=established,related action=accept /ip/firewall/filter/add chain=input connection-state=invalid action=drop ``` RouterOS states: `new`, `established`, `related`, `invalid`, `untracked`. `untracked` matches packets explicitly marked via `/ip/firewall/raw action=notrack` — it does NOT match FastTrack flows. FastTrack is a separate fast-path that keeps flows in conntrack but bypasses mangle. Never combine `fasttrack-connection` with mangle-based routing marks on the same traffic — mangle marks are not applied to fasttracked packets. ## NAT Patterns ```routeros # Port forward (dst-nat) /ip/firewall/nat/add chain=dstnat \ dst-port=8080 protocol=tcp in-interface=ether1 \ action=dst-nat to-addresses=192.168.1.10 to-ports=80 \ comment="portfwd-web" # Force DNS through router (prevents DNS bypass) /ip/firewall/nat/add chain=dstnat action=redirect \ in-interface-list=LAN dst-port=53 protocol=udp to-ports=53 \ comment="force-dns-udp" /ip/firewall/nat/add chain=dstnat action=redirect \ in-interface-list=LAN dst-port=53 protocol=tcp to-ports=53 \ comment="force-dns-tcp" # Masquerade outgoing traffic /ip/firewall/nat/add chain=srcnat action=masquerade \ out-interface=ether1 comment="nat-wan" ``` ## Layer7 Protocol (L7) L7 matches unencrypted payload content with a POSIX regex — CPU-intensive, use sparingly: ```routeros /ip/firewall/layer7-protocol/add \ name=captive-detect \ regexp="^.*(gstatic|connectivitycheck|generate_204).*$" \ comment="android-captive-portal" ``` L7 alternation: `(a|b|c)` is correct. `(a)|(b)|(c)` has POSIX ERE operator precedence bugs — the middle branch `(b)` matches anywhere in the stream, not anchored. Use grouped form with `|` inside parentheses only. ## Common LLM Mistakes | Mistake | Correct RouterOS behavior | |---------|--------------------------| | Using `priority=` or rule weight | Rules are sequential — order is position, not weight | | Writing one rule per IP address | Use `src-address-list=` or `dst-address-list=` | | `remove [find dynamic=no]` in scripts | Tag-based: `remove [find comment~"prefix-"]` only | | Forgetting `place-before=` on accept rules | Default appends — accept rules below drops never fire | | `connection-state=new,established` | Valid states: `new`, `established`, `related`, `invalid`, `untracked` | | `action=log` or `passthrough=yes` stops evaluation | Non-terminal actions continue to next rule — a `drop` below still fires | | Combining fasttrack + mangle routing marks | fasttrack bypasses mangle — pick one or the other | | `(a)|(b)|(c)` alternation in L7 regexp | Use `(a|b|c)` — grouped form inside one set of parentheses | | One firewall rule per interface | Use `in-interface-list=` with a named interface list | | IPv6 traffic handled by `/ip/firewall` | IPv6 uses a **separate** `/ipv6/firewall` — rules do not apply cross-protocol | ## Additional Resources **Related skills:** - `routeros-fundamentals` — RouterOS CLI syntax, REST API, scripting basics - `routeros-hotspot` — hotspot chain interaction with firewall, walled garden **Reference files in this skill:** - [references/mangle-routing.md](./references/mangle-routing.md) — policy routing with routing marks, `hotspot=auth` matcher - [references/dos-protection.md](./references/dos-protection.md) — `psd`, `tarpit`, `connection-limit` DoS patterns **MCP tools:** - `rosetta` MCP — `/ip/firewall` command tree inspection (`routeros_search`, `routeros_get_page`) **MikroTik docs:** - [Firewall Filter](https://help.mikrotik.com/docs/display/ROS/Filter) — filter chain reference - [NAT](https://help.mikrotik.com/docs/display/ROS/NAT) — NAT actions reference - [Connection tracking](https://help.mikrotik.com/docs/display/ROS/Connection+tracking) — connection states
Related in Writing & Docs
jax-development
IncludedUse this skill when the user is writing, debugging, profiling, refactoring, reviewing, benchmarking, parallelising, exporting, or explaining JAX code, or when they mention JAX, jax.numpy, jit, grad, value_and_grad, vmap, scan, lax, random keys, pytrees, jax.Array, sharding, Mesh, PartitionSpec, NamedSharding, pmap, shard_map, Pallas, XLA, StableHLO, checkify, profiler, or the JAX repo. It helps turn NumPy or PyTorch-style code into pure functional JAX, fix tracer/control-flow/shape/PRNG bugs, remove recompiles and host-device syncs, choose transforms and sharding strategies, inspect jaxpr/lowering/IR, and benchmark compiled code correctly.
nature-article-writer
IncludedDrafts, rewrites, diagnostically critiques, and style-calibrates primary research manuscripts for Nature and Nature Portfolio journals. Use when the user wants a Nature-style title, summary paragraph or abstract, introduction, results, discussion, methods, figure legends, presubmission enquiry, cover letter, reviewer response, or when a scientific draft sounds generic, jargon-heavy, structurally weak, or AI-ish and needs precise, broad-reader-friendly prose without inventing data, analyses, or references. Best for primary research articles and letters rather than reviews or press releases unless explicitly adapting one.
deckrd
IncludedDocument-driven framework that derives requirements, specifications, implementation plans, and executable tasks from goals through structured AI dialogue. Use when user says "write requirements", "create spec", "plan implementation", "derive tasks", "structure this feature", "break down into tasks", or "document this module". Also use for reverse engineering existing code into docs (/deckrd rev). Do NOT use for direct code writing — use /deckrd-coder after tasks are generated. Do NOT use when the user only wants to run or fix existing code without planning.
clinical-decision-support
IncludedGenerate professional clinical decision support (CDS) documents for pharmaceutical and clinical research settings, including patient cohort analyses (biomarker-stratified with outcomes) and treatment recommendation reports (evidence-based guidelines with decision algorithms). Supports GRADE evidence grading, statistical analysis (hazard ratios, survival curves, waterfall plots), biomarker integration, and regulatory compliance. Outputs publication-ready LaTeX/PDF format optimized for drug development, clinical research, and evidence synthesis.
handling-sf-data
IncludedSalesforce data operations with 130-point scoring. Use this skill to create, update, delete, bulk import/export, generate test data, and clean up org records using sf CLI and anonymous Apex. TRIGGER when: user creates test data, performs bulk import/export, uses sf data CLI commands, needs data factory patterns for Apex tests, or needs to seed/clean records in a Salesforce org. DO NOT TRIGGER when: SOQL query writing only (use querying-soql), Apex test execution (use running-apex-tests), or metadata deployment (use deploying-metadata).
accelint-ac-to-playwright
IncludedConvert and validate acceptance criteria for Playwright test automation. Use when user asks to (1) review/evaluate/check if AC are ready for automation, (2) assess if AC can be converted as-is, (3) validate AC quality for Playwright, (4) turn AC into tests, (5) generate tests from acceptance criteria, (6) convert .md bullets or .feature Gherkin files to Playwright specs, (7) create test automation from requirements. Handles both bullet-style markdown and Gherkin syntax with JSON test plan generation and validation.