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
Network Engineer – F.O.C.U.S Follow One Course Until Successful
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
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-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
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
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
Install Nmap then you can scan ports : Exemple: sudo nmap -sU -p 1162 192.168.142.150 user@XXX# sudo nmap -sU -p 1162 192.168.142.150 Starting Nmap 7.80 ( https://nmap.org ) at 2021-03-17 15:56 UTC Nmap scan report for 192.168.142.150 Host is up…
Read more
I just can’t remember this lol https://crontab.guru/ https://crontab-generator.org/ addind cron jobs : 1- crontab -e 2- use the link above to create the schedule “following the path and the script to execute “don’t forget to make the script executable” 3-…
Read more