Author Archive: admin

Files , read write open !

Basic commands to understand the open command f = open(“text.ext”)   <— default mode is read “r” f.read() f.readline() f.readlines() Once read, if you need to go back to the beginning of the file :  f.seek(X) output = f.”read.option”() print(output) =…
Read more

Netshot

Netshot is a powerfull and simple free software for network engineer, it is use to backup/push/compare/etc… configuration of multiple vendors. Github : https://github.com/netfishers-onl/Netshot/wiki/Installing-Netshot-on-Ubuntu-16-or-later-(or-any-Debian-based-distribution) Netshot : http://www.netfishers.onl/netshot Installation : I use Ubuntu Server 18.04, and Java 8 . To install Java 8 since…
Read more

ANSIBLE Install

Step 1 ( Ubuntu ) Installation : apt-get update apt-get install software-properties-common apt-add-repository ppa:ansible/ansible apt-get install ansible Verify :   ansible –version Terminology : Control Node ( enable devices with Ansible install on ) Management Node ( Hosts being manage by…
Read more

VPLS MPLS

Reminder for VPLS or L2VPN over MPLS, Configure MPLS ( but should be already done through your service provider ) Configure the interface with the right instance ethernet and don’t forget the encapsulation and bridge domain. Create an BDI interface…
Read more