Errata

802.11 Security

Errata for 802.11 Security

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Printed Page 121
firewall script near bottom of page

the line:
echo "100" > /proc/sys/net/ipv4/icmp_echoreply_rate

gives an error: "No such file or directory"

use this line instead:
echo "100" > /proc/sys/net/ipv4/icmp_ratelimit

Anonymous   
Printed Page 124
firewall script, section "Allow ssh from anywhere...", 2nd and 3rd iptables

lines;
no such variables $INT_GW_WIRED, $INT_GW_WIRELESS in lines:

$IPTABLES -A to_gateway -p tcp-i $INT_GW_WIRED -d $IP_GW_WIRED --dport 22 -j ACCEPT
$IPTABLES -A to_gateway -p tcp-i $INT_GW_WIRELESS -d $IP_GW_WIRELESS --dport 22 -j
ACCEPT

should be:

$IPTABLES -A to_gateway -p tcp-i $INT_WIRED -d $IP_GW_WIRED --dport 22 -j ACCEPT
$IPTABLES -A to_gateway -p tcp-i $INT_WIRELESS -d $IP_GW_WIRELESS --dport 22 -j
ACCEPT

Anonymous