Python Scripts to get schema YANG files from network device
Project description
NETCONF scripts for LNU Campus Network
BRAS 设备 IPoE 认证用户 IPv6 地址溯源程序
一、工作原理
本程序通过 NETCONF 协议获得 BRAS 设备 IPoE 认证用户 MAC、IPv4、IPv6 地址信息,并发送到 syslog 进行记录。可以通过 cron 每十分钟定时执行本程序,记录用户地址信息,以供事后溯源。
本程序在 H3C SR8808-X 以及华为 ME60 上进行了测试。华为 ME60 的 V800R013C00SPC100 版本软件 NETCONF 接口存在问题,无法正常获得 IPv6 地址。
二、开发环境
本项目使用了 UV 设置开发环境,src/netconf_lnu/mytest.py 中的函数可以作为测试使用,具体命令类似如下:
uv run netconf-lnu -c config/config.ini -t dispatch_test
其中 config/config.ini 是配置文件,可以参考 config/config.ini.example 来编写。
在 src/netconf_lnu/mytest.py 程序中的 download_schema 函数,能够下载网络设备的 YANG 文件,用户可以参考该测试函数编写自己的下载程序。
对于下载后的 YANG 文件,可以利用已经安装的 pyang 程序来浏览,命令如下:
uv run pyang -f tree schema/huawei-bras-user-manage.yang
虽然可以从设备上获得 YANG 文件,但还是建议在 Netconf Central 查找并浏览。
对于程序基本功能可以通过下面命令进行测试:
uv run netconf-lnu -c config/config.ini
三、打包部署
本项目可以通过 uv build 命令可以打包,方便修改后部署。
项目已经在 PyPI 上发布,可以直接通过 pipx 安装,以 Debian 类系统为例,可以以 root 用户执行如下命令安装 pipx:
apt install pipx
cat >> ~/.bashrc << EOF
# For pipx
export PIPX_HOME=/opt/pipx
export PIPX_BIN_DIR=/usr/local/bin
EOF
然后重新登陆系统并安装 netconf-lnu
pipx install netconf-lnu
安装后需要建立配置文件 /etc/netconf-lnu/config.ini 并运行 netconf-lnu 命令测试。
测试无误后,可以建立 cron 配置文件 /etc/cron.d/netconf-lnu,每20分钟运行程序一次,其内容如下:
*/10 * * * * root /usr/local/bin/netconf-lnu
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file netconf_lnu-2025.1.16.1.tar.gz.
File metadata
- Download URL: netconf_lnu-2025.1.16.1.tar.gz
- Upload date:
- Size: 78.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79a1bddda88ca9e2efc439ca7a8b50e750dd3299c517ad64f33be130cfb8f6a6
|
|
| MD5 |
c2cc0d1e7c4fe21d67c909740fc27de9
|
|
| BLAKE2b-256 |
2acffd15e5c0cb7dbce8a1efaea31d0b128f598db9e3d7ca19f4cc081498e815
|
File details
Details for the file netconf_lnu-2025.1.16.1-py3-none-any.whl.
File metadata
- Download URL: netconf_lnu-2025.1.16.1-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5223f44f8a6106c1fd3cd9895f899cc97fc2776cd3517ca30fd978d7056cdc3d
|
|
| MD5 |
b2679227b933932109fd745b389807ad
|
|
| BLAKE2b-256 |
735901061e599085cd61dde66508dffbd83b5eec7ed5e349f85cb94d19e6b0f0
|