add ripe.sh

This commit is contained in:
Nico Schottelius 2022-09-29 15:56:39 +02:00
parent 09ceca72c9
commit 9f4b5a172e
1 changed files with 81 additions and 0 deletions

81
ripe.sh Executable file
View File

@ -0,0 +1,81 @@
#!/bin/sh
# 2022-03-18, ungleich (foss at ungleich.ch)
# Copying: GPL3+
if [ $# -lt 2 ] ; then
echo "$0 network asn [nodryrun]"
echo "ASN needs to be in ASXXXXXX format"
echo "By default uses dry-run and does not create objects"
exit 1
fi
set -x
network=$1; shift
asn=$1; shift
if [ $# -ge 1 ]; then
dryrun=""
else
dryrun="&dry-run"
fi
form=$(mktemp)
case ${network} in
*:*)
obj_type=route6
;;
*.*)
obj_type=route
;;
*)
echo "No idea what to do with $network"
exit 1
;;
esac
cat > $form <<EOF
{
"objects": {
"object": [
{
"source": {
"id": "RIPE"
},
"attributes": {
"attribute": [
{
"name": "${obj_type}",
"value": "${network}"
},
{
"name": "mnt-by",
"value": "mnt-ungleich"
},
{
"name": "source",
"value": "RIPE"
},
{
"name": "origin",
"value": "${asn}"
}
]
}
}
]
}
}
EOF
cat ${form}
curl -X POST \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data @${form} \
"https://rest.db.ripe.net/ripe/${obj_type}?password=${RIPE_API_PASSWORD}${dryrun}"
rm -f ${form}