2013-03-05 17:34:19 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-09-04 04:56:29 +00:00
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
|
|
set -x
|
|
|
|
fi
|
2014-04-03 02:24:15 +00:00
|
|
|
set -eu
|
|
|
|
set -o pipefail
|
2014-03-29 03:28:22 +00:00
|
|
|
|
2014-03-06 18:56:31 +00:00
|
|
|
INTERFACE=${1:-} #optional, if not specified configure all available interfaces
|
2014-01-09 20:32:52 +00:00
|
|
|
ENI_FILE="/etc/network/interfaces"
|
2013-03-05 17:34:19 +00:00
|
|
|
|
2014-03-06 18:56:31 +00:00
|
|
|
PATH=/sbin:$PATH
|
|
|
|
|
2014-01-09 20:32:52 +00:00
|
|
|
if [ -d "/etc/network" ]; then
|
|
|
|
CONF_TYPE="eni"
|
|
|
|
elif [ -d "/etc/sysconfig/network-scripts/" ]; then
|
|
|
|
CONF_TYPE="netscripts"
|
|
|
|
else
|
|
|
|
echo "Unsupported network configuration type!"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-03-05 17:34:19 +00:00
|
|
|
|
2014-04-01 09:18:20 +00:00
|
|
|
ARGS="$0 $@"
|
|
|
|
|
|
|
|
function serialize_me() {
|
2014-05-02 17:02:38 +00:00
|
|
|
if [ "$CONF_TYPE" == "eni" ]; then
|
|
|
|
# Serialize runs so that we don't miss hot-add interfaces
|
|
|
|
FLOCKED=${FLOCKED:-}
|
|
|
|
if [ -z "$FLOCKED" ] ; then
|
|
|
|
FLOCKED=true exec flock -x $ENI_FILE $ARGS
|
|
|
|
fi
|
|
|
|
fi
|
2014-04-01 09:18:20 +00:00
|
|
|
}
|
2013-10-11 18:02:52 +00:00
|
|
|
|
2013-03-05 17:34:19 +00:00
|
|
|
function get_if_link() {
|
2014-05-02 17:02:38 +00:00
|
|
|
cat /sys/class/net/${1}/carrier
|
2013-03-05 17:34:19 +00:00
|
|
|
}
|
|
|
|
|
2014-01-09 20:32:52 +00:00
|
|
|
function enable_interface() {
|
2014-05-02 17:02:38 +00:00
|
|
|
local interface=$1
|
2014-01-09 20:32:52 +00:00
|
|
|
|
2014-05-02 17:02:38 +00:00
|
|
|
serialize_me
|
|
|
|
if [ "$CONF_TYPE" == "eni" ]; then
|
|
|
|
printf "auto $interface\niface $interface inet dhcp\n\n" >>$ENI_FILE
|
|
|
|
elif [ "$CONF_TYPE" == "netscripts" ]; then
|
|
|
|
printf "DEVICE=\"$interface\"\nBOOTPROTO=\"dhcp\"\nONBOOT=\"yes\"\nTYPE=\"Ethernet\"" >"/etc/sysconfig/network-scripts/ifcfg-$interface"
|
|
|
|
fi
|
|
|
|
echo "Configured $1"
|
2014-01-09 20:32:52 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-02-07 18:33:35 +00:00
|
|
|
function config_exists() {
|
|
|
|
local interface=$1
|
|
|
|
if [ "$CONF_TYPE" == "netscripts" ]; then
|
|
|
|
if [ -f "/etc/sysconfig/network-scripts/ifcfg-$interface" ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
else
|
2016-03-23 06:00:49 +00:00
|
|
|
if ifquery $interface >/dev/null 2>&1; then
|
|
|
|
if [ -z "$(ifquery $interface 2>&1)" ]; then
|
|
|
|
return 1
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
2014-02-07 18:33:35 +00:00
|
|
|
fi
|
2014-03-27 14:47:55 +00:00
|
|
|
return 1
|
2014-02-07 18:33:35 +00:00
|
|
|
}
|
|
|
|
|
2014-03-06 18:56:31 +00:00
|
|
|
function inspect_interface() {
|
2014-05-02 17:02:38 +00:00
|
|
|
local interface=$1
|
2015-09-23 10:48:11 +00:00
|
|
|
local mac_addr_type
|
|
|
|
mac_addr_type=$(cat /sys/class/net/${interface}/addr_assign_type)
|
2014-05-02 17:02:38 +00:00
|
|
|
|
|
|
|
echo -n "Inspecting interface: $interface..."
|
|
|
|
if config_exists $interface; then
|
|
|
|
echo "Has config, skipping."
|
2014-08-14 20:32:50 +00:00
|
|
|
elif [ "$mac_addr_type" != "0" ]; then
|
2014-05-02 17:02:38 +00:00
|
|
|
echo "Device has generated MAC, skipping."
|
2014-08-14 20:32:50 +00:00
|
|
|
else
|
2014-05-02 17:02:38 +00:00
|
|
|
ip link set dev $interface up &>/dev/null
|
|
|
|
|
2015-09-23 10:48:11 +00:00
|
|
|
local has_link
|
|
|
|
local tries
|
2016-02-07 14:28:48 +00:00
|
|
|
for ((tries = 0; tries < 20; tries++)); do
|
2015-09-23 10:48:11 +00:00
|
|
|
has_link=$(get_if_link $interface)
|
|
|
|
[ "$has_link" == "1" ] && break
|
|
|
|
sleep 1
|
2014-05-02 17:02:38 +00:00
|
|
|
done
|
2015-09-23 10:48:11 +00:00
|
|
|
if [ "$has_link" == "1" ]; then
|
2014-05-02 17:02:38 +00:00
|
|
|
enable_interface "$interface"
|
|
|
|
else
|
2014-08-14 20:23:44 +00:00
|
|
|
echo "No link detected, skipping"
|
2014-05-02 17:02:38 +00:00
|
|
|
fi
|
2013-03-05 17:34:19 +00:00
|
|
|
fi
|
2014-03-06 18:56:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if [ -n "$INTERFACE" ]; then
|
|
|
|
inspect_interface $INTERFACE
|
|
|
|
else
|
|
|
|
for iface in $(ls /sys/class/net | grep -v ^lo$); do
|
|
|
|
inspect_interface $iface
|
|
|
|
done
|
|
|
|
fi
|