1

Add aspath macros

This commit is contained in:
Evan Pratten 2023-12-31 12:15:03 -05:00
parent f937658113
commit 26ce50b99b

View File

@ -66,8 +66,8 @@ fi
# If we are running in a studio environment # If we are running in a studio environment
if [ ! -z "$EWP_IN_GURU_ENVIRONMENT" ]; then if [ ! -z "$EWP_IN_GURU_ENVIRONMENT" ]; then
alias guru_launcher3="python $GURU_PYTHON_ROOT/env/guru_launcher3.py" alias guru_launcher3="python $GURU_PYTHON_ROOT/env/guru_launcher3.py"
alias cd-dev="cd /s/development/epratten" alias cd-dev="cd /s/development/epratten"
fi fi
# Kill via pgrep # Kill via pgrep
@ -75,7 +75,7 @@ nkill() {
if [ $# != 1 ]; then if [ $# != 1 ]; then
echo "Usage: nkill <name>" echo "Usage: nkill <name>"
else else
kill -9 $(pgrep $1) kill -9 $(pgrep $1)
fi fi
} }
@ -90,29 +90,29 @@ mkcd() {
# Sources a .env # Sources a .env
source_env() { source_env() {
env=${1:-.env} env=${1:-.env}
[ ! -f "${env}" ] && { echo "Env file ${env} doesn't exist"; return 1; } [ ! -f "${env}" ] && { echo "Env file ${env} doesn't exist"; return 1; }
eval $(sed -e '/^\s*$/d' -e '/^\s*#/d' -e 's/=/="/' -e 's/$/"/' -e 's/^/export /' "${env}") eval $(sed -e '/^\s*$/d' -e '/^\s*#/d' -e 's/=/="/' -e 's/$/"/' -e 's/^/export /' "${env}")
} }
# Auto-extract anything # Auto-extract anything
extract() { extract() {
if [ -f $1 ]; then if [ -f $1 ]; then
case $1 in case $1 in
*.tar.bz2) tar xvjf $1 ;; *.tar.bz2) tar xvjf $1 ;;
*.tar.gz) tar xvzf $1 ;; *.tar.gz) tar xvzf $1 ;;
*.bz2) bunzip2 $1 ;; *.bz2) bunzip2 $1 ;;
*.rar) unrar x $1 ;; *.rar) unrar x $1 ;;
*.gz) gunzip $1 ;; *.gz) gunzip $1 ;;
*.tar) tar xvf $1 ;; *.tar) tar xvf $1 ;;
*.tbz2) tar xvjf $1 ;; *.tbz2) tar xvjf $1 ;;
*.tgz) tar xvzf $1 ;; *.tgz) tar xvzf $1 ;;
*.zip) unzip $1 ;; *.zip) unzip $1 ;;
*.Z) uncompress $1 ;; *.Z) uncompress $1 ;;
*.7z) 7z x $1 ;; *.7z) 7z x $1 ;;
*.tar.zst) tar --use-compress-program=unzstd -xvf $1 ;; *.tar.zst) tar --use-compress-program=unzstd -xvf $1 ;;
*.zst) zstd -d $1 ;; *.zst) zstd -d $1 ;;
*) echo "don't know how to extract '$1'..." ;; *) echo "don't know how to extract '$1'..." ;;
esac esac
else else
echo "'$1' is not a valid file!" echo "'$1' is not a valid file!"
@ -126,7 +126,7 @@ genpass() {
else else
echo $(openssl rand -base64 $1 | tr -d "\n") echo $(openssl rand -base64 $1 | tr -d "\n")
fi fi
} }
# Sign a file with an SSH key # Sign a file with an SSH key
@ -177,7 +177,7 @@ wg-edit() {
else else
sudo nvim /etc/wireguard/$1.conf sudo nvim /etc/wireguard/$1.conf
fi fi
} }
# Print a wireguard config file # Print a wireguard config file
wg-cat() { wg-cat() {
@ -204,7 +204,7 @@ ewconfig-pull-zip(){
echo "You can't run this command when ~/.config/ewconfig is a git repo!" echo "You can't run this command when ~/.config/ewconfig is a git repo!"
return 1 return 1
fi fi
# Download the latest zip # Download the latest zip
cd ~/Downloads cd ~/Downloads
curl -L https://ewp.fyi/config.zip -o ewconfig.zip curl -L https://ewp.fyi/config.zip -o ewconfig.zip
@ -212,7 +212,7 @@ ewconfig-pull-zip(){
unzip ewconfig.zip unzip ewconfig.zip
mv ewconfig-master ~/.config/ewconfig mv ewconfig-master ~/.config/ewconfig
rm ewconfig.zip rm ewconfig.zip
# Return to the original directory # Return to the original directory
cd $cwd cd $cwd
} }
@ -232,7 +232,7 @@ ewconfig-reinstall() {
echo "Usage: ewconfig-reinstall <platform>" echo "Usage: ewconfig-reinstall <platform>"
return 1 return 1
fi fi
# Execute through ewconfig-run # Execute through ewconfig-run
ewconfig-run sh ./install-$1.sh ewconfig-run sh ./install-$1.sh
} }
@ -260,3 +260,23 @@ svg2png() {
inkscape -z "$1.png" "$1" --export-type=png inkscape -z "$1.png" "$1" --export-type=png
fi fi
} }
# Get the AS Path to an IP
aspath() {
# There must be at least one argument (cab be more)
if [ $# -lt 1 ]; then
echo "Usage: aspath <ip> [args]"
else
mtr $@ -z -rw -c1 -G0.25 | tail -n +3 | awk '{print $2}' | grep -v AS\?\?\? | uniq | cut -c 3- | tr '\n' ',' | sed 's/,/ -> /g' | rev | cut -c 5- | rev
fi
}
# Get the AS Path to an IP (include unknown hops)
aspath-long() {
# There must be at least one argument (cab be more)
if [ $# -lt 1 ]; then
echo "Usage: aspath-long <ip> [args]"
else
mtr $@ -z -rw -c1 -G0.25 | tail -n +3 | awk '{print $2}' | uniq | cut -c 3- | tr '\n' ',' | sed 's/,/ -> /g' | rev | cut -c 5- | rev
fi
}