aboutsummaryrefslogtreecommitdiff
path: root/ubuntu/scripts/multiple-network-interfaces-test.sh
blob: 66d752361bc427e605cdf7df89d9179ec92d9ce9 (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/sh
#
# Multiple network interfaces test for ubuntu
#
# Copyright (C) 2013, Linaro Limited.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
#
# Author: Chase Qi <chase.qi@linaro.org>

# Print network gateway
GATEWAY=$1
echo "GATEWAY: $GATEWAY"

# Print all network interfaces
ifconfig -a

# Pass rp_filter=0 to kernel to address ARP flux
echo "Pass rp_filter=0 to kernel to address ARP flux"
for i in all default; do
    echo 0 > /proc/sys/net/ipv4/conf/$i/rp_filter
    sysctl -a |grep $i.rp_filter
done
if [ $? -eq 0 ]; then
    lava-test-case address-arp-flux --result pass
else
    lava-test-case address-arp-flux --result fail
    exit 1
fi

# Set dhclient timeout to 2 minutes.
cp /etc/dhcp/dhclient.conf /etc/dhcp/dhclient.conf.original
echo "timeout 120;" >> /etc/dhcp/dhclient.conf

for INTERFACE in `ifconfig -a |grep eth |awk '{print $1}'`; do
    # Check IP address on each interface. If IP is empty, use dhclient request
    # IP from dhcp server, then check if IP address is empty again.
    IP=$(ifconfig $INTERFACE | grep "inet addr" | awk '{print substr($2,6)}')
    if [ -z $IP ]; then
        dhclient $INTERFACE
        if [ $? -eq 0 ]; then
            IP=$(ifconfig $INTERFACE | grep "inet addr" \
                | awk '{print substr($2,6)}')
            if [ -z $IP ]; then
                lava-test-case $INTERFACE-obtain-ip-address --result fail
                lava-test-case $INTERFACE-ping-test --result skip
                continue
            else
                echo "$INTERFACE IP address: $IP"
                lava-test-case $INTERFACE-obtain-ip-address --result pass
            fi
        else
            lava-test-case $INTERFACE-obtain-ip-address --result fail
            lava-test-case $INTERFACE-ping-test --result skip
            continue
        fi
    else
        echo "$INTERFACE IP address: $IP"
        lava-test-case $INTERFACE-obtain-ip-address --result pass
    fi

    # Run ping test on the specific interface
    ping -c 5 -I $INTERFACE $GATEWAY
    if [ $? -eq 0 ]; then
        lava-test-case $INTERFACE-ping-test --result pass
    else
        lava-test-case $INTERFACE-ping-test --result fail
    fi
done

# Restore dhclient setting.
mv /etc/dhcp/dhclient.conf.original /etc/dhcp/dhclient.conf