Python の ciscoconfparse を使うと Cisco 機器のコンフィグファイルから必要な箇所を抽出することが出来ます。 このライブラリに関して以前に以下のメモを書きました。
このライブラリは後継になるバージョン 2 が別パッケージとしてリリースされています。
バージョン 1 のページには「バージョン 2 へアップグレードすべき理由」として下記の記載があります。
It supports all major network vendor text configuration files (Arista, Cisco, F5, Juniper, Palo Alto)
It supports searching across any number of configuration levels (ciscoconfparse only supports two config levels : a parent and child)
It adds a string methods so you don't need to use regex matching if you don't want to
It adds a CLI command
Revamped documentation
It simplifies the user interface and fixes broken ciscoconfparse default parameters (this could require changing old scripts using the original API)
It intentionally uses a new python import to minimize confusion between itself and the original
今回は ciscoconfparse2 のチュートリアルページに掲載されている簡単な使い方をメモしておきます。
Continue reading