Port forward for a Cisco ASA using ASDM

Cisco really make this hard work compared to nearly every other device…so here is my run through using ASDM, this is for RDP Create NAT Rule Click Configuration (top) Click Firewall (bottom-left) Click NAT Rules (middle-left) Select Add->Static NAT Rule Original Interface: inside Source: 192.168.0.99 Translated Interface: Outside Select Use Interface IP Address Port Address Read more about Port forward for a Cisco ASA using ASDM[…]

Zabbix: Less than 25% free in the configuration cache

How i fixed it… Im running my zabbix server on ubuntu – Open your sysctl.conf and assign an amount of shared memory #vi /etc/sysctl.conf:  My setting below – 1 kernel.shmmax=2834217728 This gives you 2.6gb of shared space To apply changes in the /etc/sysctl.conf immediately, execute: 1 2 # sysctl -p kernel.shmmax = 2834217728   Now edit Read more about Zabbix: Less than 25% free in the configuration cache[…]

HP Procurve CLI Cheat Sheet

A list of basic commands for HP switches. Notes: <> indicates a changeable variable, such as port number or VLAN ID. [] indicates an optional string or value. <port> value can be either a single port (A1), multiple ports (A1,B3), or a port string (A1-B10). | signifies interchangeable (or) values. Config Files and Flash Files Read more about HP Procurve CLI Cheat Sheet[…]

Boot partition full of old kernels

I started getting an error message every time I booted into Ubuntu. “‘The volume “boot” has only ….. bytes disk space remaining.”.   This is caused by old Linux kernels filling up the boot partition on the hard drive. Most users don’t need to keep old kernels and therefore you can remove them to free Read more about Boot partition full of old kernels[…]

Disable the filesystem check (fsck) at boot time

Options Available Filesystem tunable Grub boot parameter Placing command files on your root device Active reboot without FSCK Filesystem tunable Use the tune2fs command to tell your filesystem to have a max count of mounts before a check to 0 to disable it. # tune2fs -c 0 /dev/sda1 Parameter reference: -c max-mount-counts Adjust the number Read more about Disable the filesystem check (fsck) at boot time[…]