summaryrefslogtreecommitdiffstats
path: root/etc/rc.update_bogons.sh
diff options
context:
space:
mode:
authorN0YB <Al_Stu@Frontier.com>2012-12-24 13:38:09 -0800
committerN0YB <Al_Stu@Frontier.com>2012-12-24 13:38:09 -0800
commit274930095b899e2750b51a121a35efa8ea7ce1e7 (patch)
treee761140919c8c022e74b66ab31fc3675ed50131f /etc/rc.update_bogons.sh
parent378d3c8891283326fff27989ab375321ab523a04 (diff)
downloadpfsense-274930095b899e2750b51a121a35efa8ea7ce1e7.zip
pfsense-274930095b899e2750b51a121a35efa8ea7ce1e7.tar.gz
Add label to each pfctl logged result line, not just the first one.
With this, log filtering can find both the addresses added and deleted bogon records.
Diffstat (limited to 'etc/rc.update_bogons.sh')
-rwxr-xr-xetc/rc.update_bogons.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc.update_bogons.sh b/etc/rc.update_bogons.sh
index ee369ad..69870eb 100755
--- a/etc/rc.update_bogons.sh
+++ b/etc/rc.update_bogons.sh
@@ -48,7 +48,7 @@ if [ "$BOGON_V4_MD5" = "$ON_DISK_V4_MD5" ]; then
egrep -v "^192.168.0.0/16|^172.16.0.0/12|^10.0.0.0/8" /tmp/bogons > /etc/bogons
RESULT=`/sbin/pfctl -t bogons -T replace -f /etc/bogons 2>&1`
rm /tmp/bogons
- echo "Bogons V4 file downloaded: $RESULT" | logger
+ echo "$RESULT" |awk '{ print "Bogons V4 file downloaded: " $0 }' | logger
else
echo "Could not download http://files.pfsense.org/lists/fullbogons-ipv4.txt.md5 (md5 mismatch)" | logger
md5_error="true"
@@ -58,7 +58,7 @@ if [ "$BOGON_V6_MD5" = "$ON_DISK_V6_MD5" ]; then
egrep -v "^fc00::/7" /tmp/bogonsv6 > /etc/bogonsv6
RESULT=`/sbin/pfctl -t bogonsv6 -T replace -f /etc/bogonsv6 2>&1`
rm /tmp/bogonsv6
- echo "Bogons V6 file downloaded: $RESULT" | logger
+ echo "$RESULT" |awk '{ print "Bogons V6 file downloaded: " $0 }' | logger
else
echo "Could not download http://files.pfsense.org/lists/fullbogons-ipv6.txt.md5 (md5 mismatch)" | logger
md5_error="true"
OpenPOWER on IntegriCloud