Is there anyway possible to merge file contents in firewall rules (filter, nat, mangle)?
for example when i try to filter .exe and .zip files I have to make 2 separates rules.
/ip firewall filter add chain=forward src-address=192.168.0.0/24 protocol=tcp content=.exe action=add-dst-to-address-list address-list=downloads
/ip firewall filter add chain=forward src-address=192.168.0.0/24 protocol=tcp content=.zip action=add-dst-to-address-list address-list=downloads
I have many file types to filter and therefore i made over hundred rules simply because i couldn’t merge all file types in one rule.
I’ve tried using commas (,), spaces ( ), and other special characters ( / \ | ) with no luck.
Any help is appreciated thx.