Simple ARP Poisoning Check Shell Script

Note that this doesn’t really work for servers using alias IP address on a parent interface since the MAC address will be used more than once by design. Put it in cron and make sure to change the EMAIL variable: #!/bin/sh # Simple ARP Poisoning Check currentmonth=`date “+%Y-%m-%d %H:%M:%S”` logpath=”/var/log” EMAIL=me@email.com logname=”arpwatch.log” echo “ARP Poisoning… Continue reading Simple ARP Poisoning Check Shell Script

How To Setup Adito SSL VPN on CentOS 6 Minimal Install

configure eth0 – check for anything ifcfg-* kind of thing in /etc/sysconfig/network-scripts/ – edit ifcfg-eth0 BEFORE: DEVICE=”eth0″ HWADDR=”00:0C:29:B5:81:93″ NM_CONTROLLED=”yes” ONBOOT=”no” AFTER: DEVICE=”eth0″ HWADDR=”00:0C:29:B5:81:93″ NM_CONTROLLED=”no” NM_MANAGED=”no” ONBOOT=”yes” BOOTPROTO=”dhcp” NOTE: You’ll likely want to change this to a static address if this is going to be a VPN Server!!! LOL!!! #============================================= service network restart #============================================= #CONTENTS OF… Continue reading How To Setup Adito SSL VPN on CentOS 6 Minimal Install

Published
Categorized as Tech Blogs