mirror of
https://github.com/itdoginfo/allow-domains.git
synced 2025-04-03 20:39:08 +00:00
Update convert.py
Mikrotik fixes: - Fix `failure: bad name` for tld domains like `.ua` - it should be just `ua`.
This commit is contained in:
parent
4d2d345868
commit
ee3c670752
1 changed files with 4 additions and 1 deletions
|
@ -168,7 +168,10 @@ def mikrotik_fwd(src, out, remove={'google.com'}):
|
|||
|
||||
with open(f'{out}-mikrotik-fwd.lst', 'w') as file:
|
||||
for name in domains:
|
||||
file.write(f'/ip dns static add name={name} type=FWD address-list=allow-domains match-subdomain=yes forward-to=localhost\n')
|
||||
if name.startswith('.'):
|
||||
file.write(f'/ip dns static add name=*.{name[1:]} type=FWD address-list=allow-domains forward-to=localhost\n')
|
||||
else:
|
||||
file.write(f'/ip dns static add name={name} type=FWD address-list=allow-domains match-subdomain=yes forward-to=localhost\n')
|
||||
|
||||
def domains_from_file(filepath):
|
||||
domains = []
|
||||
|
|
Loading…
Add table
Reference in a new issue