
Cisco Ios Patterns
- 1.4k installs
- 238k repo stars
- Updated August 5, 2026
- affaan-m/ecc
This is a copy of cisco-ios-patterns by affaan-m - installs and ranking accrue to the original listing.
cisco-ios-patterns is a Claude Code skill that safely reviews and validates Cisco IOS and IOS-XE configurations for developers and network engineers who need evidence-backed change windows without locking out management
About
cisco-ios-patterns is an ECC community skill that codifies Cisco IOS and IOS-XE review workflows for planned changes, troubleshooting, and incident response. It structures read-only show command selection, config hierarchy explanation (global, interface, routing process, line modes), ACL wildcard mask and interface direction checks, and maintenance-window validation before writes hit running config. The workflow prefers capturing current state, reviewing exact candidate configs, confirming out-of-band access, and verifying intentional saves—treating examples as patterns rather than copy-paste production configs. Network engineers reach for cisco-ios-patterns when reviewing router or switch snippets, building change checklists, or explaining how to collect evidence without worsening an outage.
- Provides Cisco IOS and IOS-XE review patterns for show commands, config hierarchy, wildcard masks, ACL placement, interf
- 5-step preferred workflow: capture current state, review candidate config, confirm access, apply minimal change, re-read
- Explains global, interface, routing process, and line configuration modes
- Emphasizes read-only show commands for troubleshooting and evidence collection
- Treats examples as patterns only, never paste-ready production changes
Cisco Ios Patterns by the numbers
- 1,370 all-time installs (skills.sh)
- +84 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/affaan-m/ecc --skill cisco-ios-patternsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1.4k |
|---|---|
| repo stars | ★ 238k |
| Last updated | August 5, 2026 |
| Repository | affaan-m/ecc ↗ |
How do you safely review Cisco IOS configs before changes?
Safely review and validate Cisco IOS and IOS-XE configurations before making network changes.
Who is it for?
Network engineers preparing IOS or IOS-XE change windows who need structured review patterns for ACLs, config modes, and safe evidence collection.
Skip if: Developers working only on application code without Cisco router or switch configurations should skip cisco-ios-patterns.
When should I use this skill?
A planned IOS or IOS-XE change, troubleshooting session, or incident response requires config review before touching running configuration.
What you get
Validated config review checklist, read-only show evidence, ACL and interface hygiene notes, and rollback-aware change plan
- Change review checklist
- Read-only evidence capture plan
- Validated candidate config review
Files
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/1running-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 logRelated skills
How it compares
Pick cisco-ios-patterns over generic config linting when you need Cisco-specific show, ACL, and change-window review discipline rather than vendor-neutral syntax checks.
FAQ
When should cisco-ios-patterns be used?
cisco-ios-patterns applies before planned IOS or IOS-XE changes, during troubleshooting with read-only show commands, or when explaining safe evidence collection during network incidents.
Does cisco-ios-patterns apply configs to live devices?
cisco-ios-patterns treats examples as review patterns only; engineers must confirm platform, interface names, current config, rollback paths, and out-of-band access before applying changes on real hardware.
What Cisco config areas does cisco-ios-patterns cover?
cisco-ios-patterns covers global, interface, routing process, and line configuration modes, plus ACL wildcard masks, interface hygiene, and verification that running-config changes are intentionally saved.