Waiting for network link to be up before continuin

2019-02-10 15:16发布

This question already has an answer here:

Is there a way to check for successful network interface link for multiple interfaces in a bash script before continuing?

Something like:

eth0 eth1 eth2 eth3 network interfaces are brought up
Wait for link detection on all 4 interfaces
Proceed

1条回答
干净又极端
2楼-- · 2019-02-10 15:40

You can check if the network interfaces' names appear after running ifconfig -s.

Something like:

if [ $( ifconfig -s | grep eth0 ) ]; then echo "eth0 is up!"

Check this link for more details.


To make this test ongoing, you can do something like what @jm666 said:

while ! ping -c 1 -W 1 1.2.3.4; do
    echo "Waiting for 1.2.3.4 - network interface might be down..."
    sleep 1
done
查看更多
登录 后发表回答