思科关于confd进行netconf管理的指南
2022-04-06 02:09:15 3.63MB netconf
1
1. 解压 sh confd-basic-7.6.linux.x86_64.installer.bin /home/tmpconfd 2. 编译crypto.so 修改 confd-basic-7.6.linux.x86_64/confd-basic-7.6/libconfd/src/include.mk cd confd-basic-7.6.linux.x86_64/confd-basic-7.6/libconfd/crypto make #生成基于libcrypto.so.1.0版本的crypto.so cp confd-basic-7.6.linux.x86_64/confd-basic-7.6/libconfd/crypto/crypto.so /home/tmpconfd/lib/confd/lib/core/crypto/priv/lib/crypto.so 拷贝编译好的libcrypto.so.1.0.0 到 /usr/lib64/libcrypto.so.1.0.0
2022-04-06 02:09:14 21.47MB linux 运维 服务器 netconf
1
软件介绍: 2019-02-19最新版本的confd-0.16.0-linux-amd64,不需要积分,需要的同学直接下载。可用于管理本地应用配置文件,使用etcd或consul存储的数据渲染模板,还支持redis,zookeeper等.confd有一个手表功能,通过HTTP API定期监测对应的etcd中目录变化,获取最新的价值。
2021-10-20 16:22:33 5.39MB 其他资源
1
写一个python脚本,实现简单的http服务器功能: 1.浏览器中输入网站地址:172.20.52.163:20014 2.server接到浏览器的请求后,读取本地的index.html文件的内容,回发给浏览器 代码实现 server.py #!/usr/bin/python import socket import signal import errno from time import sleep def HttpResponse(header,whtml): f = file(whtml) contxtlist = f.readlines() context = ''
2021-10-18 11:06:24 70KB confd http python
1