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

@ -260,3 +260,23 @@ svg2png() {
inkscape -z "$1.png" "$1" --export-type=png
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
}