This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Daniel Verner | |
# CarrotPlant LLC | |
# 2011 | |
# Backup each mysql databases into a different file, rather than one big file | |
# Optionally files can be gzipped (dbname.gz) | |
# | |
# Usage: dump_all_databases [ -u username -o output_dir -z ] | |
# | |
# -h hostname of mysql server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/ip firewall filter | |
add chain=forward action=reject reject-with=icmp-network-unreachable content=update.microsoft.com comment="Blocking Windows Update" | |
add chain=forward action=reject reject-with=icmp-network-unreachable content=download.microsoft.com | |
add chain=forward action=reject reject-with=icmp-network-unreachable content=download.windowsupdate.com | |
add chain=forward action=reject reject-with=icmp-network-unreachable content=windowsupdate.com | |
add chain=forward action=reject reject-with=icmp-network-unreachable content=wustat.windows.com | |
add chain=forward action=reject reject-with=icmp-network-unreachable content=ntservicepack.microsoft.com | |
add chain=forward action=reject reject-with=icmp-network-unreachable content=stats.microsoft.com | |
add chain=forward action=reject reject-with=icmp-network-unreachable content=wustat.windows.com | |
add chain=forward action=reject reject-with=icmp-network-unreachable content=windowsupdate.microsoft.com |