Table of contents
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 | |
primary="badnets" | |
ipset create $primary hash:net &>/dev/null | |
if [[ -z "$sets" ]]; then | |
sets=( firehol_level3 firehol_level2 firehol_level1 firehol_webclient ); | |
fi | |
for s in "${sets[@]}"; do |
Allows a single globally routable address to be shared between multiple hosts on a network
This is one of the most frequently encountered type of NAT and is probably implemented on your home router.
When it sends out traffic, the router needs to change the source address from 192.168.1.x to whatever globally routable address is assigned on the "outside" interface. It needs to keep track of these egress translations so that it can direct the replies to the appropriate inside address.
1. Configure LAN interface
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 | |
ipset create badnets hash:net &>/dev/null | |
[[ -z "$sets" ]] && \ | |
sets=( firehol_level3 firehol_level2 firehol_level1 firehol_webclient ); | |
for s in "${sets[@]}"; do | |
wget -qO- "https://iplists.firehol.org/files/"$s".netset" | grep -v "^#" |\ | |
while read entry; do |
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
# | |
# Protocol options | |
# | |
Protocol 2 | |
Port 22 | |
AddressFamily inet | |
ListenAddress 0.0.0.0 | |
# | |
# Host Keys | |
# |
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
(for ip in $(grep -E 'sshd.*Invalid' /var/log/auth.log |awk '{print $NF}');do | |
dig $(tac -s.<<<"$ip.")origin.asn.cymru.com +noedns +short txt|tr -d \";done)|sort -s -n -k 1,1 | |
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
### Remove the last nchars from each line | |
truncateLines(){ | |
d=`for ((i=1; i<=$nchars; i++)); do echo -n .; done` | |
sed 's/'$d'$//' | |
} |
Port 22
AddressFamily inet
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
HostKey /etc/ssh/ssh_host_ed25519_key
Ciphers aes128-ctr,aes192-ctr,aes256-ctr
KexAlgorithms [email protected],diffie-hellman-group-exchange-sha256