https://developer.cisco.com/site/devnet/sandbox/
思科DevNet上提供了开发的测试环境。
请访问这里: https://opennxos.cisco.com/public/getting-started
DevNet上的Open NX-OS沙箱测试 预约预约之后,收到邮件。-- 还要用到思科AnyConnect VPN Client软件啊!
PS. -- If you do not have the Cisco AnyConnect VPN Client software installed on your system you should do that now. It is required to access devices in your Lab.
Download the Cisco AnyConnect VPN Client Software
https://developer.cisco.com/site/devnet/sandbox/anyconnect/
Installation Guide for the Cisco AnyConnect VPN Client Software [here]
(https://devnetsandbox.cisco.com/Docs/VPN_Access/AnyConnect_Installation_Guide.pdf)
不过,登录到LAB里面,可以看到如此界面:
NXOS Sandbox LAB要访问LAB,还是需要用 AnyConnect Client 建立VPN,然后用telnet/ssh 等软件访问。例如: PuTTY.
Hello World: Example Code snippets are available here.
NX-OS GitHub example repositories are available here.
这是一个Python客户端的程序,可以访问思科N9K交换机,但是我觉得还不是我想象的简单的调用,而是一个代替命令行式的调用。https://github.com/datacenter/nexus9000/blob/master/nx-os/python/remote_client/client_example.py
我不太喜欢。
到网上学学这个:
https://opennxos.cisco.com/public/learn
Open-NXOS Programmability
https://opennxos.cisco.com/public/codeshop/python-samples/
PYTHON SAMPLES ,一些简单的程序实例。
看这里的一些实例,觉得还有点API的味道。
https://opennxos.cisco.com/public/api/python/
例如: BGP 的配置与管理:class BGPSession(cisco.feature.Feature)
Example:
思科NXOS-Python BGP APIfrom cisco.bgp import *
bgp_session = BGPSession()
使用思科AnyConnect客户端连接LAB:
思科AnyConnect客户端 思科AnyConnect客户端建立VPN
之后,使用SecureCRT 远程登录交换机和Puppet Linux Server.
用SecureCRT, ssh 到 N9K 是个思科N9K虚机
NX-OSv9K is a demo version of the Nexus Operating System, 是个演示版的NX-OS, 不过也很不错了。
N9K上可以运行Linux Bash和Python程序用浏览器访问NXAPI.
N9K NXAPI访问界面
在N9K 上运行 Linux Bash & Python
bash-4.2$ pwd
/bootflash/scripts
bash-4.2$ pwd
/bootflash/home/admin
bash-4.2$ python test.py
Traceback (most recent call last):
File "test.py", line 3, in <module>
from .nxcli import NXCLI
ValueError: Attempted relative import in non-package
bash-4.2$
居然有错误?不知为何?估计是目录不对,找不到相关的NXCLI库。
总体来说,大家可以登录到DevNet上,来试试思科NX-OS的可编程试验,之后可以运用到实际工作中。
网络配置与管理自动化,这年头,连汽车都可以无人驾驶了,网络交换机还用手工配置吗?
参考:
网友评论