Našel jsem tento script ale na verzi 4.11 nepracuje.Nemáte někdo prosím funkční nebo neporadí někdo kde je chyba
## Generic IP address list input
## Based on a script written by Sam Norris, ChangeIP.com 2008
## Edited by Andrew Cox, AccessPlus.com.au 2008
( [/file get > 0 ) do={
# Remove exisiting addresses from the current Address list
/ip firewall address-list remove
content [/file get ;
contentLen ;
lineEnd 0;
line "";
lastEnd 0;
{
lineEnd ;
line ;
lastEnd ( $lineEnd + 1 ) ;
#If the line doesn't start with a hash then process and add to the list
( != "#" ) do={
entry
( > 0 ) do={
/ip firewall address-list add list=MY-IP-LIST address=$entry
}
}
} while ($lineEnd < $contentLen)
http://wiki.mikrotik.com/wiki/Using_Fet ... ress_Lists