我正在使用bash来获取该脚本的机器的IP地址:
_MyGW="$( ip route get 8.8.8.8 | awk 'N=3 {print $N}' )"
现在我想尝试这种类型的子网掩码:
192.168.1.0/24
但我不知道我该怎么做.
最佳答案
原文链接:https://www.f2er.com/linux/440466.html我正在使用bash来获取该脚本的机器的IP地址:
_MyGW="$( ip route get 8.8.8.8 | awk 'N=3 {print $N}' )"
现在我想尝试这种类型的子网掩码:
192.168.1.0/24
但我不知道我该怎么做.