Security
wifi.txt
Associated article: Securing Wireless Networks
Tags: Security Mobile
Published source code accompanying the article by Micah Silverman in which he shows how to secure wireless networks as 802.11b, also known as Wi- Fi, using a combination of hardware and software.
Securing Wireless Networks by Micah Silverman Listing One /etc/sysconfig/network-scripts/ifcfg-eth0: DEVICE=eth0 ONBOOT=yes BOOTPROTO=static IPADDR=10.0.0.1 NETMASK=255.255.0.0 /etc/sysconfig/network-scripts/ifcfg-eth1: DEVICE=eth1 ONBOOT=yes BOOTPROTO=static IPADDR=192.168.0.50 NETMASK=255.255.255.0 GATEWAY=192.168.0.1 Listing Two iptables -P INPUT ACCEPT iptables ...


