问题标签 [ietf-netconf]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
1279 浏览

php - 使用 PHP NETCONF 配置瞻博网络路由器

我正在为 NETCONF 使用 PHP 库:https ://github.com/Juniper/netconf-php 。到目前为止,我已经设法获得了我的脚本所需的配置部分,但最近的挑战仍然是将新配置加载到路由器中。我路由器上的日志:

它一直抱怨无法重构论点。这是我试图开始工作的脚本:

我已经在 netconf { ssh { 树下设置了 traceoqptions ,这是输出之一(一切似乎都很好):

0 投票
1 回答
342 浏览

xml - use of remote procedure call in NETCONF

I was reading RFC6241 about netconf, where it's said about RPC as a messaging mechanism of the protocol. However, the spec defines XML for transmitting RPC messages, so I don't quite understand why this is still called RPC? I used to think of RPC as described in ONC RPC, i.e. there should be a stub function defined (as done by rpcgen on Unix) and so on, but what NETCONF says does not strictly follow this paradigm, rather it defines a mechanism to transmit parameters over wire.

Perhaps, I misunderstand RPC as a concept. Could anybody clarify RPC in netconf for me? Thanks,

0 投票
2 回答
423 浏览

model - 了解NMS中的Netconf和Yang

我对广泛使用对象建模、netconf 和 Yang 的网络管理系统非常陌生。

我想知道是否有任何书籍或文章列表可以理解整个概念。任何 C 和 python 中的开源项目对于具有相同的动手经验都会有很大帮助。

0 投票
1 回答
182 浏览

ssh - 连接到 VirtualBox 上的 junos(使用 netconf 协议)

我已经完成了本文中的所有操作。有一个帐户(具有超级用户权限)、密码set netconf sshset ssh与 IP 地址一起发出的命令(用于em0 192.168.56.150/24)。我的主机操作系统(Windows 8.1)Ethernet adapter VirtualBox Host-Only Network192.168.56.101. 我已经下载并“准备运行” Netconf java 工具包(由瞻博集团提供)。如何从 java 工具包连接到 junos 实例?(如何在 virtualbox 中运行的主机操作系统和瞻博网络之间设置地址)

0 投票
1 回答
868 浏览

java - Netconf:无法执行 getConfig()

我们有一个启用 netconf 的路由器,我可以使用 Mg-Soft 客户端浏览器执行 get/get-config 操作。这是 getConfig() 的输出 -

请求:

响应式:

但我无法使用 tailf Netconf 客户端执行相同的操作。这是我的代码 -

我在 Eclipse 控制台中得到以下信息 -

0 投票
0 回答
2772 浏览

ssh - 使用 Wireshark 解密 SSH 数据包

我想解密 Wireshark 捕获的 SSH 数据包。我有公钥和私钥。如何才能做到这一点?

原因:我正在尝试解密并检查 ODL 控制器和 Netconf 服务器之间的 Hello 交换数据包的有效负载。

0 投票
1 回答
583 浏览

cisco - 关于 netconf 标签

从其中一个文档中,我有以下内容:

这实际上从正在运行的配置中检索接口配置并且工作正常

Q1:我如何编辑它来检索接口统计信息?需要使用哪些标签?我怎么知道?

Q2:我将包含命名空间的行更改为诸如“ http://abcd/check ”之类的随机行,但它失败了。为什么?

0 投票
1 回答
488 浏览

ietf-netconf - pyang 和 JNC 集成

我正在尝试整合 JNC 和 Pyang。正如 jnc 步骤所述,我已将jnc.py复制到PYANG_HOME/pyang/plugins. 我尝试使用以下命令生成simple.yangjava$JNC_HOME/examples/yang

面临以下错误,

任何人都面临过这种问题。请让我知道如何解决这个问题。

0 投票
0 回答
714 浏览

python - python netconf paramiko SSHException

我在使用我的 python netconf 包连接 netconf 会话时遇到问题。

它涉及 paramiko 传输模块并抛出

start _client raise SSHException('Negotiation failed.') paramiko.ssh_exception.SSHException: 协商失败。

我在谷歌上搜索了很多,但无法弄清楚谈判失败的地方,非常感谢任何帮助。我将调试添加到 paramiko.transport.py 并运行,但不知道为什么协商失败。

0 投票
3 回答
2141 浏览

opendaylight - YANG 中的 Operational 和 Config 有什么区别?

YANG 模型中的 Operational 和 Config 有什么区别?在 Operational 和 Config 中支持 GET、PUT、POST 和 DELETE 接口是否正确?