diff --git a/geoip.R b/geoip.R index 23685a5..8456849 100644 --- a/geoip.R +++ b/geoip.R @@ -1,6 +1,10 @@ library(tidyverse) library(RSQLite) library(ipapi) +# sqlite3 access.db +# create table access(ip, null1, user, timestamp, zone, req, status, size, referer, agent, null2); +# .separator " " +# .import access.log access dbConnect(SQLite(), "access.db") %>% dbGetQuery("delete from access where ip = '192.168.0.254' or user = 'maxx' or agent like '%bot%' or ip = '164.2.255.244';")