This file contains hidden or 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
$TTL 86400 | |
@ IN SOA servidor.kurumin.com.br. hostmaster.kurumin.com.br. ( | |
2006040645 3H 15M 1W 1D ) | |
NS servidor.kurumin.com.br. | |
NS ns2.kurumin.com.br. | |
IN MX 10 kurumin.com.br. | |
Localhost IN A 127.0.0.1 | |
kurumin.com.br. IN A 64.234.23.12 | |
ns2 IN A 64.234.23.13 | |
www IN A 64.234.23.12 |
This file contains hidden or 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 | |
#------------------------------------------------------------------------------ | |
# iptables_setup.sh - Set default rules for iptables. | |
# Matheus Baldasso, <[email protected]> | |
# Clean up all tables, set default policy for table filter, set a bunch of | |
# rules for INPUT and OUTPUT chain and log all dropped packets. By Default all | |
# requests are blocked, unless a rule is set. Used for reference and customize | |
# for your environment. |