Skip to content

Get List of countries IP and add to Mikrotik Address List

Notifications You must be signed in to change notification settings

mo13ammad/Country-IP-List

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

139 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Country IP List

Generate MikroTik address-list .rsc files (IPv4 + IPv6) for multiple countries using RIPE Stat data.

How to use (MikroTik)

Each country has a file in generated/<CC>.rsc (for example: generated/IR.rsc). List names inside each file:

  • IPv4: IP-<CC>
  • IPv6: <CC>v6

Replace CC with the 2-letter country code you want (IR, DE, US, ...).

foreach cc in={"IR"} do={
  :local fileName ($cc . ".rsc")
  :local url ("https://raw.githubusercontent.com/mo13ammad/Country-IP-List/main/generated/" . $cc . ".rsc")

  /tool fetch url=$url dst-path=$fileName mode=http
  :delay 5
  /import file-name=$fileName
  /file remove $fileName
}
  • If your internet is disconnected and you cannot connect to GitHub to fetch the new list, you can use the script below so that the previous list is not deleted.
foreach cc in={"IR"} do={
  :local fileName ($cc . ".rsc")
  :local url ("https://raw.githubusercontent.com/mo13ammad/Country-IP-List/main/generated/" . $cc . ".rsc")

  /tool fetch url=$url dst-path=$fileName mode=http

  :delay 5

  :if ([/file find name=$fileName] != "") do={

    :if ([/file get $fileName size] > 0) do={

      /import file-name=$fileName
      /file remove $fileName

    } else={
      :log warning "Download failed or empty file for $cc — keeping old address list"
      /file remove $fileName
    }

  } else={
    :log warning "File not found after fetch — download likely failed — keeping old address list"
  }
}

Generate locally

./scripts/generate_all_countries_rsc.sh countries.txt generated

Author

Mohammad

Special thanks from my best friends

SS Salehi

Mahdi Habashi

Pouria Mousavizadeh Tehrani

About

Get List of countries IP and add to Mikrotik Address List

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published