CiscoTools.dev

Config Compliance Checker

Someone hands you a hardening standard and forty switch configs. Paste one in, choose a rule pack, and the checker scores it out of 100, groups what failed by severity, quotes the offending line with its line number, explains in plain English why the rule exists, and gives you the configuration commands that fix it. Six packs ship with the tool — security hardening, logging and NTP, AAA, SNMP, the management plane, and banners — and you can write your own as JSON.

Open the Compliance Checker

What it does

The rule packs that ship with it

How the score is worked out

Findings are weighted by severity: CRITICAL 10, HIGH 6, MEDIUM 3, LOW 1, INFO 0. The score is 100 multiplied by the weight of the rules that passed, divided by the weight of every rule that applied, rounded to one decimal. INFO rules are reported but never move the score. A rule that does not apply to the device — a rule about the AUX port on a platform with no AUX port — is left out of both sides of the fraction rather than counted as a failure.

Writing your own rule pack

A rule pack is one JSON object with an id, a name and a list of rules. A rule is required (a line that must be present), forbidden (a line that must be absent), or section (a parent line whose indented block must contain every listed child). Each rule matches exactly or by regular expression and carries a severity, a plain-English reason, and the config lines that fix it. Export a built-in pack, edit it, and paste it back. Pro accounts can save packs to the account with a lifetime of 30, 90 or 365 days.

Nothing you paste is stored. The configuration is read into memory, scored, and dropped with the response. It is never written to a database and never logged. A pasted configuration never leaves memory; an uploaded file over about a megabyte is spooled by the web server into an unnamed temporary file that is deleted when the request ends, which is the framework's own upload handling and not something this tool keeps. Either way nothing is retained after the response. This tool does not connect to a device, does not ask for a credential, and does not proxy a session: it reads text you give it. The one thing that can be stored is a Pro account's custom rule pack — rules only, never a configuration — saved as an explicit action, with a lifetime you pick and a delete control on every pack. Rule packs are free text in their notes fields, so do not paste a configuration into one.

Frequently asked

Does this connect to my switches?

No. It never touches a device, never asks for a credential, and never proxies a connection. You paste or upload configuration text and it returns findings. That is the whole of it.

Is my configuration stored anywhere?

No. The configuration is scored in memory and dropped with the response. It is not written to a database and not logged. A pasted config stays in memory; an uploaded file over about a megabyte is spooled by the web server into a temporary file that is deleted when the request ends. Nothing is retained either way. The only thing that can be stored is a Pro account's custom rule pack, which holds rules and never a configuration.

How is the score calculated?

Each rule is weighted by its severity: CRITICAL 10, HIGH 6, MEDIUM 3, LOW 1, INFO 0. The score is the weight of the rules that passed over the weight of every rule that applied, times 100. Rules that do not apply to the device are excluded rather than failed.

Can I use my own hardening standard?

Yes. A rule pack is a JSON file: required lines, forbidden lines, and required sections, each with a severity, a reason, and a remediation snippet. Export a built-in pack as a starting point, edit it, and paste it back. Pro accounts can save packs to the account.

What does Pro add?

Up to 50 configurations in one run with a sortable fleet table, CSV and XLSX export of the summary and of every finding, saved custom rule packs, and a keyed API endpoint at POST /api/v1/compliance.