- Mastering Python Networking
- Eric Chou
- 387字
- 2021-07-02 21:42:34
The challenges of CLI
At the Interop expo in Las Vegas 2014, BigSwitch Networks CEO Douglas Murray displayed the following slide to illustrate what has changed in Data Center Networking (DCN) in 20 years between 1993 to 2013:

While he might be negatively biased toward the incumbent vendors when displaying this slide, the point is well taken. In his opinion, the only thing in managing routers and switches that has changed in 20 years was the protocol changing from Telnet to the more secured SSH. It is right around the same time that we start to see the consensus around the industry for the clear need to move away from manual, human-driven CLI toward an automatic, computer-centric automation API. Make no mistake, we still need to directly communicate with the device when making network designs, bringing up initial proof of concepts, and deploying the topology for the first time. However, once we have moved beyond the initial deployment, the need becomes to consistently make the same changes error-free, over and over again without being distracted or feeling tired. Sounds like an ideal job for computers and our favorite language, Python.
Referring back to the slide, the challenge, is the interaction between the router and the administrator. The router expects the administrator to enter a series of manual inputs that requires human interpretation. For example, you have to type in enable to get into a privileged mode, and upon receiving the returned prompt with # sign, you then need to type in configure terminal in order to go into the configuration mode. The same process can further be expanded into interface configuration mode and routing protocol configuration mode. This is in a sharp contrast to an computer-driven mindset. When computer wants to accomplish a single task, say put an IP on an interface, it wants to structurally give all the information to the router at once, and then it expects a single yes or no answer from the router to indicate success or failure of the task.
The solution, as implemented by both Pexpect and Paramiko, is to treat the interactive process as a child process and watch over the interaction between the process and the destination device. Based on the returned value, the parent process will decide the subsequent action, if any.
- DevOps:軟件架構師行動指南
- 極簡算法史:從數學到機器的故事
- Learning Neo4j
- 黑客攻防從入門到精通(實戰秘笈版)
- Software Testing using Visual Studio 2012
- Bulma必知必會
- 區塊鏈:以太坊DApp開發實戰
- Apache Kafka Quick Start Guide
- 零基礎入門學習Python(第2版)
- 微服務從小白到專家:Spring Cloud和Kubernetes實戰
- Learning Unreal Engine Android Game Development
- Scratch3.0趣味編程動手玩:比賽訓練營
- Simulation for Data Science with R
- WildFly Cookbook
- Anaconda數據科學實戰