Draco Cyber Security

Deploy FMCv 7.4.1 in KVM – Ubuntu 22.04

The Secure Firewall Management Center Virtual (formerly Firepower Management Center Virtual) Appliance brings full firewall functionality to virtualized environments to secure data center traffic and multi-tenant environments. The management center...

How to create a systemd timer to update ip address in ipset from Dynamic DNS

Systemd timers are a feature of the systemd init system on Linux. They are used to schedule and automate the execution of tasks or services at specific times or intervals. Timers are often used for automating periodic maintenance tasks, backups, data synchronization,...

How to create a cron job to update ipset with ip address from Dynamic Domain

Creating a cron job for IPset involves scheduling a task that updates IPset with a list of IP addresses at specified intervals. In this tutorial I will show you how to update a Update the syntax in bold and italic with your own. Here's a step-by-step guide on how to...

Install Windows 11 on KVM (Ubuntu 22.04) with software TPM 2.0

To install Windows 11 on KVM you want to make sure that you have swtmp install and in your KVM environment. Like its name suggest is a software that emulates TPM 2.0 in your virtual environment. You can do a quick check by running the following command. swtpm...

How to activate ASAv SMART Licensing

How to activate ASAv SMART Licensing

In this tutorial I will provide the step by step guide on how to activate Cisco ASAv Smart License. A common error that happens for beginners when you are unable to reached the licensing server is that you have not configured DNS name server in the ASAv virtual...

Install ASAv in KVM (Ubuntu 22.04)

In this tutorial I will show you how to do the basic configuration to deploy ASAv in KVM in Ubuntu 22.04. There are a few things to take note. Firstly you need to configure the bridge interfaces in Ubuntu depending on how...

How to disable password for sudo command

Disable password for sudo command has its risk and convenience so do assess the risk for your environment before disabling it. I usually disable it in my test/lab environment as the risk is lower there and I do not want to keep entering password for sudo commands. Of...

Firewalls

How to create a VLAN in Fortigate 60F

How to create a VLAN in Fortigate 60F

In this quick tutorial, I am going to show you how to create a VLAN in Fortigate 60F To create a VLAN for the lab go to Network -> Interfaces, then select the interface that the VLAN for the tunnel is going to be and click on Create New. Select Interface. Enter a name...

Tech

How to disable password for sudo command

Disable password for sudo command has its risk and convenience so do assess the risk for your environment before disabling it. I usually disable it in my test/lab environment as the risk is lower there and I do not want to keep entering password for sudo commands. Of...

Windows 10 – Create Template using Sysrep

Creating Windows machine template has become important part of automation and testing. In this tutorial I will cover different aspect of creating a VM template. This similar for VMWare, OracleBox, KVM and most general virtualization technology. Depending on how you...

Changing Ubuntu 22.04 Hostname through CLI

Changing Ubuntu 22.04 Hostname through CLI

Here are the steps to change the Ubuntu hostname. To check your current hostname and summary of your machine. hostname hostnamectl There a few ways to change your hostname. sudo hostnamectl set-hostname <new hostname> # Manually changing it in the hostname file...

Bash Prompt in Linux – Change the prompt temporally

OS: Linux You should be familiar with Bash prompt if you are a linux user. Whenever you start a terminal the command line interface of the Linux server you should be using Bash as a default unless you have change the default shell to something else. Bash prompt is set...

Install KVM on Ubuntu 22.04 Server

Install the cpu-checker to check if your system support virtualization. sudo apt install -y cpu-checker Run the command to see if the sys kvm-ok Install all the necessary packages. sudo apt install -y qemu-kvm virt-manager libvirt-daemon-system virtinst...

Ubuntu 22.04 ssh port change additional steps

For those of you who started using Ubuntu 22.04 Jammy Jellyfish and realized the conventional way of editing /etc/ssh/sshd_config does work. Hope this tutorial is useful and nothing else changes. This works as of Feb 19 2023. I am not sure when this started but in...

Basic Network Configuration for Ubuntu 22.04

Let's start with the basic. To check the ip address assign or interface available. ip address Another command to help identify all network interfaces available to your system is lshw sudo lshw -class network ethtool is a program that displays and changes Ethernet card...