You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
337 B
23 lines
337 B
4 years ago
|
#!/bin/bash
|
||
|
# eqx-get-deviceid-ip-public
|
||
|
#
|
||
|
# Give a device ID, get public IP
|
||
|
|
||
|
EQXDEVICEID="$1"
|
||
|
|
||
|
if [[ $1 == "" ]]
|
||
|
then \
|
||
|
echo -e "Need device name"
|
||
|
echo
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
# get IP
|
||
|
packet \
|
||
|
device get \
|
||
|
--json \
|
||
|
--id $EQXDEVICEID | \
|
||
|
jq '.ip_addresses[0].address' | \
|
||
|
sed -e 's/"//g'
|
||
|
|