Index: trunk/server/fedora/config/etc/httpd/conf/httpd.conf
===================================================================
--- trunk/server/fedora/config/etc/httpd/conf/httpd.conf	(revision 1311)
+++ trunk/server/fedora/config/etc/httpd/conf/httpd.conf	(revision 1314)
@@ -145,5 +145,7 @@
 LogFormat "%V %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
 LogFormat "%h %l %u %t \"%r\" %>s %b" common
+LogFormat "%a %V" statistics
 #CustomLog /var/log/httpd/access_log combined
+CustomLog "|/etc/httpd/statistics_log_mitonly.sh" statistics
 ServerSignature Off
 ServerAdmin scripts@mit.edu
Index: trunk/server/fedora/config/etc/httpd/statistics_log_mitonly.sh
===================================================================
--- trunk/server/fedora/config/etc/httpd/statistics_log_mitonly.sh	(revision 1314)
+++ trunk/server/fedora/config/etc/httpd/statistics_log_mitonly.sh	(revision 1314)
@@ -0,0 +1,2 @@
+#!/bin/sh
+awk '/^18\./ && ! /^18.181/ { print $2 }' >> /var/log/httpd/statistics_log
