Update buildvm_extraip.sh

This commit is contained in:
spiritlhl 2023-06-05 09:34:50 +08:00 committed by GitHub
parent ee6247b8ee
commit 3887cb1e3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,6 +105,10 @@ if ! command -v ping > /dev/null 2>&1; then
fi
interface=$(lshw -C network | awk '/logical name:/{print $3}' | head -1)
user_main_ip_range=$(grep -A 1 "iface ${interface}" /etc/network/interfaces | grep "address" | awk '{print $2}')
if [ -z "$user_main_ip_range" ]; then
echo "宿主机可用IP区间查询失败"
exit 1
fi
# 宿主机IP
user_main_ip=$(echo "$user_main_ip_range" | cut -d'/' -f1)
user_ip_range=$(echo "$user_main_ip_range" | cut -d'/' -f2)