Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
affaan-m avatar

Cisco Ios Patterns

  • 2.3k installs
  • 238k repo stars
  • Updated August 5, 2026
  • affaan-m/everything-claude-code

Provides Cisco IOS and IOS-XE code review patterns, safe change procedures, read-only diagnostic commands, ACL wildcard mask rules, and configuration validation checklists to prevent production incidents.

About

Cisco IOS patterns provide a systematic approach to reviewing network device configurations, collecting evidence from routers and switches without incident escalation, and validating planned changes safely. This skill covers show command selection for read-only troubleshooting, configuration hierarchy navigation (global, interface, routing process, line modes), ACL wildcard mask validation, interface hygiene checks, and change window verification workflows. Essential for pre-change reviews, security audits, and incident response on Cisco platforms. Emphasizes capturing baseline state before modifications, verifying administrative access remains open, applying minimal changes during maintenance windows, and validating results before persisting to startup-config.

  • Read-only show command collection without modifying device state
  • Wildcard mask validation to prevent over-broad ACL matches
  • Configuration mode hierarchy (global, interface, routing, line)
  • Change verification workflow: capture baseline, apply, verify, persist
  • Security-focused evidence gathering for audit and incident response

Cisco Ios Patterns by the numbers

  • 2,270 all-time installs (skills.sh)
  • +245 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #84 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

cisco-ios-patterns capabilities & compatibility

Capabilities
pattern matching against cisco ios command synta · acl wildcard mask validation and subnet conversi · configuration hierarchy mode guidance (global/in · change verification workflow generation · read only show command selection and interpretat
Use cases
code review · security audit · debugging · devops
From the docs

What cisco-ios-patterns says it does

Cisco IOSまたはIOS-XEスニペットをレビューする場合、変更ウィンドウチェックリストを構築する場合、またはルーターまたはスイッチから証拠を収集し、インシデントを悪化させない方法を説明する場合に、このスキルを使用します。
SKILL.md
npx skills add https://github.com/affaan-m/everything-claude-code --skill cisco-ios-patterns

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs2.3k
repo stars238k
Security audit3 / 3 scanners passed
Last updatedAugust 5, 2026
Repositoryaffaan-m/everything-claude-code

What it does

Review Cisco IOS/IOS-XE configurations, validate changes against best practices, and safely verify production network modifications.

Who is it for?

Cisco network operators, infrastructure engineers, security auditors validating network device configurations, and incident responders gathering non-invasive evidence.

Skip if: Single-vendor cloud deployments without on-premises Cisco infrastructure; purely application-layer development teams without network operations responsibilities.

When should I use this skill?

Planning configuration changes, conducting security audits, troubleshooting network devices, building change management checklists, or responding to incidents on Cisco platforms.

What you get

Engineers can confidently review IOS/IOS-XE snippets, build change window checklists, collect read-only evidence safely, and apply validated configurations with verifiable rollback paths.

  • Configuration change review checklist
  • Read-only diagnostic command reference
  • Wildcard mask validation rules and conversion tables

By the numbers

  • Covers IOS and IOS-XE platforms (majority of campus and WAN deployments)
  • Provides 20+ read-only show commands for safe troubleshooting
  • Wildcard mask reference table covers /32, /30, /24, /16 ranges

Files

SKILL.mdMarkdownGitHub ↗

Cisco IOSパターン

Cisco IOSまたはIOS-XEスニペットをレビューする場合、変更ウィンドウチェックリストを構築する場合、またはルーターまたはスイッチから証拠を収集し、インシデントを悪化させない方法を説明する場合に、このスキルを使用します。

使用時期

  • 計画的な変更前にIOSまたはIOS-XE構成をレビュー。
  • トラブルシューティングの読み取り専用showコマンドを選択。
  • ACLワイルドカードマスクとインターフェース方向をチェック。
  • グローバル、インターフェース、ルーティングプロセス、ラインコンフィグレーションモードを説明。
  • 変更がランニング構成で実行され、意図的に保存されたことを確認。

操作規則

IOSの例をパターンとして、本番環境に対応した変更として扱いません。実際のデバイスで変更を加える前に、プラットフォーム、インターフェース名、現在の構成、ロールバックパス、アウトオブバンドアクセスを確認してください。

このワークフロー好みます:

1. 読み取り専用コマンドで現在の状態をキャプチャ。 2. 正確な候補構成をレビュー。 3. 管理アクセスがロックアウトされていないことを確認。 4. メンテナンスウィンドウで最小の変更を適用。 5. 状態を再度読み、ベースラインと比較し、検証後にのみ保存。

モード参照

Router> enable
Router# show running-config
Router# configure terminal
Router(config)# interface GigabitEthernet0/1
Router(config-if)# description UPLINK-TO-CORE
Router(config-if)# no shutdown
Router(config-if)# exit
Router(config)# end
Router# show running-config interface GigabitEthernet0/1

running-configはアクティブメモリ。startup-configはリロード後に生き残ります。 コマンドが受け入れられただけという理由で変更を保存しないでください。最初に動作を検証し、変更が承認された場合はcopy running-config startup-configを使用します。

読み取り専用コレクション

show version
show inventory
show processes cpu sorted
show memory statistics
show logging
show running-config | section line vty
show running-config | section interface
show running-config | section router bgp
show ip interface brief
show interfaces
show interfaces status
show vlan brief
show mac address-table
show spanning-tree
show ip route
show ip protocols
show ip access-lists
show route-map
show ip prefix-list

構成に秘密、顧客名、またはプライベートトポロジが含まれる可能性があるため、完全な構成をチケットにダンプするのではなく、必要な特定のセクションを収集してください。

ワイルドカードマスク

IOS ACLおよび多くのルーティングステートメントでは、サブネットマスクではなくワイルドカードマスクを使用します。

Subnet mask       Wildcard mask
255.255.255.255   0.0.0.0
255.255.255.252   0.0.0.3
255.255.255.0     0.0.0.255
255.255.0.0       0.0.255.255

デプロイメント前にワイルドカードマスクをレビュー。サブネットマスクがワイルドカードとして誤ってマスクされて使用されると、意図した以上のトラフィックに一致する可能性があります。

ip access-list extended WEB-IN
  10 permit tcp 192.0.2.0 0.0.0.255 any eq 443
  999 deny ip any any log

Related skills

Forks & variants (1)

Cisco Ios Patterns has 1 known copy in the catalog totaling 1.4k installs. They canonicalize to this original listing.

How it compares

Use cisco-ios-patterns for CLI config review and safe troubleshooting; use IaC or NetBox skills for inventory and templated provisioning.

FAQ

How do wildcard masks differ from subnet masks in Cisco ACLs?

Wildcard masks are inverted subnet masks used in ACLs and routing statements. 255.255.255.0 becomes 0.0.0.255. Each 0 bit matches; each 1 bit wildcards (don't care). Incorrect wildcard masks cause ACLs to match unintended traffic ranges.

What is the safest sequence for applying Cisco configuration changes?

Capture running-config baseline with show commands. Review candidate config for syntax and intent. Verify admin access paths cannot be locked out. Apply minimal changes in maintenance window. Re-run show commands to validate. Only then copy running-config to startup-config to per

Why collect specific config sections instead of full running-config?

Full configs often contain secrets, customer names, and private topology details. Use show running-config | section [keyword] to extract only required sections (interfaces, ACLs, routing) for safer ticketing and audit compliance.

DevOps & CI/CDmonitoringinfradeploy

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.