summaryrefslogtreecommitdiffstats
path: root/etc/rc.update_bogons.sh
blob: 8c9d6d5417bc8f90f4a0bc09ed0a2bea27640cba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh

# Update bogons file
# Part of the pfSense project
# www.pfsense.com

echo "rc.update_bogons.sh is starting up." | logger

# Grab a random value  
value=`od -A n -d -N2 /dev/random | awk '{ print $1 }'`

echo "rc.update_bogons.sh is sleeping for $value" | logger

# Sleep for that time.
sleep $value

echo "rc.update_bogons.sh is beginning the update cycle." | logger

/etc/rc.conf_mount_rw
/usr/bin/fetch -q -o /tmp/bogons "http://files.pfsense.org/bogon-bn-nonagg.txt"
if [ ! -f /tmp/bogons ]; then
	echo "Could not download http://files.pfsense.org/bogon-bn-nonagg.txt" | logger
	# Relaunch and sleep
	sh /etc/rc.update_bogons.sh & 
	exit
fi
egrep -v "^192.168.0.0/16|^172.16.0.0/12|^10.0.0.0/8" /tmp/bogons > /etc/bogons
/etc/rc.conf_mount_ro
RESULT=`/sbin/pfctl -t bogons -T replace -f /etc/bogons 2>&1`
rm /tmp/bogons
echo "Bogons file downloaded:  $RESULT" | logger
OpenPOWER on IntegriCloud