The Packet Pushers explore the next chapter of SDN evolution with Big Switch founder Kyle Forster in this sponsored episode, including how SDN can make networks more resilient and responsive. The post Show 326: Big Switch & The Next Chapter Of SDN (Sponsored) appeared first on Packet Pushers.
Service providers can white-label WING and sell to enterprises.
MegaPath picks VeloCloud for SD-WAN; Arista VP of worldwide sales leaves to join Rubrik.
There is more genuine innovation and change coming from Facebook than any networking vendor. Whether its hardware designs, firmware (BMC , FBOSS applications and new protocols. I’m remain confident that the future isn’t being made by billion dollar companies with 65% gross margins.
If you are involved in network strategy then these videos will get you thinking in new ways.
The growing ecosystem around open networking hardware | Engineering Blog | Facebook Code | Facebook : https://code.facebook.com/posts/1241394199239439/the-growing-ecosystem-around-open-networking-hardware/
The post Response: Facebook – The growing ecosystem around open networking hardware appeared first on EtherealMind.
Demisto's platform automates triage among third-party security tools.
The post Worth Reading: There is no “normal” in microservices appeared first on 'net work.
This post is the first one going through the Kirk Byers Python for Network Engineers class.
In the first class Kirk shows how to pipe data into Python by using the module fileinput with the following code(modified for Python3):
import fileinput for line in fileinput.input(): print(line.split("."))
I’ll show what this script outputs and then we’ll look at the code.
daniel@daniel-iperf3:~/python/Week1$ echo "192.168.1.1" | python3 stdin.py ['192', '168', '1', '1\n']
How did we get data into Python? We used “echo” to send data to stdin (standard input). The function “fileinput.input()” can take either files as arguments or if no files are listed it will read from stdin.
It’s possible to use “fileinput” to read from several files and print out the content. We used the following code:
import fileinput for line in fileinput.input():
Then we print out the text:
daniel@daniel-iperf3:~/python/Week1$ python3 stdin.py 1.txt 2.txt 1 2 3 4 5 6 7 8 9 10 daniel@daniel-iperf3:~/python/Week1$ cat 1.txt 1 2 3 4 5 daniel@daniel-iperf3:~/python/Week1$ cat 2.txt 6 7 8 9 10
Here we printed the contents of two files by sending them to “fileinput” We can see what Continue reading