Latest Posts
ArubaOS switches and Cisco IOS devices
Cisco FirePower FTD FMC Basic Install
This is for a quick install of FTD and FMC , This is a quick version and will need to be polish soon 1- Boot Each devices and have access to the console port or management IP. ( on 1st…
Read more
How to run a temp webserver
This is to test Firewalls , Loadbalancer etc… quick and easy for labbing This was taking from : https://linuxconfig.org/running-a-simple-http-web-server-with-one-terminal-command-and-python Configure simple web server in Linux 13 January 2022 by Luke Reynolds The purpose of this tutorial is to host a simple web…
Read more
Palo Alto Basics
PALO-ALTO-CLI-CHEATSHEET CLI Jump Start The following table provides quick start information for configuring the features of Palo Alto Networks devices from the CLI. Where applicable for firewalls with multiple virtual systems (vsys), the table also shows the location to…
Read more
Python Lambda
Python “to be define”
Example 1 of how to simplify a code : vars = [1,2,3] result = [num * 2] for var in vars: result.append(num * 2) It can be simplify by : result = [num * 2 for var in vars] Example…
Read more
Debian basic config
toggle python 3 by default instead of python 2.7 debian is still delivered with 2.7 as the default version of python. /usr/bin/python is in fact a symlink to the current default versions binary. The update-alternatives scripts allows to change this….
Read more