File: 30-start-network

package info (click to toggle)
python-diskimage-builder 3.37.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,572 kB
  • sloc: sh: 7,380; python: 6,444; makefile: 37
file content (52 lines) | stat: -rw-r--r-- 1,543 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
echo "starting network $BOOT_MAC_ADDRESS"
t=0
while ! BOOT_INTERFACE=$(find_interface "$BOOT_MAC_ADDRESS"); do
    t=`expr "$t" + 5`
    if [ "$t" -gt 10 ]; then
        break
    fi
    sleep 5
done
if [ -z "$BOOT_INTERFACE" ]; then
    err_msg "Could not find an interface that owns MAC: $BOOT_MAC_ADDRESS"
    troubleshoot
fi

readonly BOOT_INTERFACE

ifconfig lo 127.0.0.1 up
rv=0
ifconfig "$BOOT_INTERFACE" up || rv=1
if [ $rv -ne 0 ]; then
    sleep 10
    rv=0
    ifconfig "$BOOT_INTERFACE" up || rv=1
    if [ $? -ne 0 ]; then
        err_msg "Failed to ifconfig up $BOOT_INTERFACE"
        troubleshoot
    fi
fi

# Check if boot IP address was specific or retrieve from DHCP
if [ -n "$BOOT_IP_ADDRESS" ]; then
    ifconfig "$BOOT_INTERFACE" "$BOOT_IP_ADDRESS" netmask "$BOOT_NETMASK"
    route del default || true
    route add default gw $BOOT_GATEWAY
else
    dhclient -1 "$BOOT_INTERFACE"
    if [[ $? == 2 ]]; then
        echo "Error getting IP address for $BOOT_INTERFACE with MAC \
              $BOOT_MAC_ADDRESS"
        troubleshoot
    fi

    BOOT_IP_ADDRESS=$(ifconfig "$BOOT_INTERFACE" | grep 'inet addr:' | \
                      cut -d: -f2 | awk '{ print $1}')
    BOOT_NETMASK=$(ifconfig "$BOOT_INTERFACE" | grep 'Mask:' | cut -d':' -f4)
    BOOT_GATEWAY=$(route -n | grep "$BOOT_INTERFACE" | grep '^0.0.0.0' | \
                   awk '{print $2}')
    echo "obtained the following from dhcp: "
    echo " ip address = $BOOT_IP_ADDRESS"
    echo " netmask = $BOOT_NETMASK"
    echo " gateway = $BOOT_GATEWAY"
fi