Update network.sh

This commit is contained in:
spiritLHLS 2023-02-23 22:05:45 +08:00 committed by GitHub
parent c402648e62
commit 8b8b66bdec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,10 +4,9 @@
# 设置虚拟网桥名称
BRIDGE_NAME="vmbr0"
# 获取本地IPv4地址和子网掩码
# 获取本地IPv4地址 子网掩码 网关地址
IP_ADDR=$(ip route get 8.8.8.8 | head -1 | awk '{print $7}')
SUBNET_MASK="255.255.255.0"
# 获取网关地址
GATEWAY=$(ip route | awk '/default/ {print $3}')
# 创建虚拟网桥