Generate ssh-key
ssh-keygen -t rsa -b 2048 -C "streisand@stack" -f id_rsa_streisand -q -N ""
aws ec2 import-key-pair --key-name 'streisand' --public-key-material file://./id_rsa_streisand.pubPrepare prerequisites
| #!/usr/bin/env bash | |
| set -x | |
| main_if=ens33 | |
| ping_count=1 | |
| echo 1 > /proc/sys/net/ipv4/ip_forward || exit 1 | |
| ip netns del ns1 > /dev/null 2>&1 |
Generate ssh-key
ssh-keygen -t rsa -b 2048 -C "streisand@stack" -f id_rsa_streisand -q -N ""
aws ec2 import-key-pair --key-name 'streisand' --public-key-material file://./id_rsa_streisand.pubPrepare prerequisites
| #!/usr/bin/env python | |
| #---------------------------------------------------------- | |
| # | |
| # Episode Split | |
| # CraftyCanine | |
| # | |
| # Description | |
| # | |
| # This script is meant to make the process of splitting |