diff --git a/README.md b/README.md index 564b71d..0a9f2f2 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ -# mikrotik-geoipblock +# routeros-geoip -Generate RouterOS Address Lists based on country code. +Generate RouterOS Address Lists based on country code. This can be used for creating up to date geo-ip blocking lists which can be loaded into RouterOS. ```sh # Example usage ./mikrotik-geoipblock myAddressList example.json ``` -Createa a config file containing the address lists you want to block +Create a config file containing the address lists you want to block ```json { diff --git a/go.mod b/go.mod index 0f90c88..381fada 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module code.stevenpolley.net/steven/mikrotik-geoipblock +module code.stevenpolley.net/steven/routeros-geoip go 1.23.0 diff --git a/main.go b/main.go index f199d94..37890f6 100644 --- a/main.go +++ b/main.go @@ -37,7 +37,7 @@ func main() { // Download up to date geoip CIDR data for i := range countries { - fmt.Println("downloading cidr list for country: ", countries[i].Name) + fmt.Println("downloading cidr list for country:", countries[i].Name) countries[i].v4Addresses, err = downloadAddressList(countries[i].Url) if err != nil { log.Fatalf("failed to download address list for county'%s': %v", countries[i].Name, err)