1f08c3bdfSopenharmony_ci#!/bin/sh 2f08c3bdfSopenharmony_ci 3f08c3bdfSopenharmony_ci################################################################################ 4f08c3bdfSopenharmony_ci## ## 5f08c3bdfSopenharmony_ci## Copyright (c) International Business Machines Corp., 2005 ## 6f08c3bdfSopenharmony_ci## ## 7f08c3bdfSopenharmony_ci## This program is free software; you can redistribute it and#or modify ## 8f08c3bdfSopenharmony_ci## it under the terms of the GNU General Public License as published by ## 9f08c3bdfSopenharmony_ci## the Free Software Foundation; either version 2 of the License, or ## 10f08c3bdfSopenharmony_ci## (at your option) any later version. ## 11f08c3bdfSopenharmony_ci## ## 12f08c3bdfSopenharmony_ci## This program is distributed in the hope that it will be useful, but ## 13f08c3bdfSopenharmony_ci## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ## 14f08c3bdfSopenharmony_ci## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ## 15f08c3bdfSopenharmony_ci## for more details. ## 16f08c3bdfSopenharmony_ci## ## 17f08c3bdfSopenharmony_ci## You should have received a copy of the GNU General Public License ## 18f08c3bdfSopenharmony_ci## along with this program; if not, write to the Free Software ## 19f08c3bdfSopenharmony_ci## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ## 20f08c3bdfSopenharmony_ci## ## 21f08c3bdfSopenharmony_ci## ## 22f08c3bdfSopenharmony_ci################################################################################ 23f08c3bdfSopenharmony_ci# 24f08c3bdfSopenharmony_ci# File: 25f08c3bdfSopenharmony_ci# initialize_if 26f08c3bdfSopenharmony_ci# 27f08c3bdfSopenharmony_ci# Description: 28f08c3bdfSopenharmony_ci# Initialize the interface which belongs to the specified test link 29f08c3bdfSopenharmony_ci# 30f08c3bdfSopenharmony_ci# Author: 31f08c3bdfSopenharmony_ci# Mitsuru Chinen <mitch@jp.ibm.com> 32f08c3bdfSopenharmony_ci# 33f08c3bdfSopenharmony_ci# Arguments: 34f08c3bdfSopenharmony_ci# $1: Set the host type (lhost - local host | rhost - remote host) 35f08c3bdfSopenharmony_ci# $2: The number of the test link 36f08c3bdfSopenharmony_ci# 37f08c3bdfSopenharmony_ci# Exit Value: 38f08c3bdfSopenharmony_ci# 0: Exit normally 39f08c3bdfSopenharmony_ci# >0: Exit abnormally 40f08c3bdfSopenharmony_ci# 41f08c3bdfSopenharmony_ci# History: 42f08c3bdfSopenharmony_ci# Oct 19 2005 - Created (Mitsuru Chinen) 43f08c3bdfSopenharmony_ci# 44f08c3bdfSopenharmony_ci#----------------------------------------------------------------------- 45f08c3bdfSopenharmony_ci#Uncomment line below for debug output. 46f08c3bdfSopenharmony_ci$trace_logic 47f08c3bdfSopenharmony_ci 48f08c3bdfSopenharmony_ci# Make sure the value of LTPROOT 49f08c3bdfSopenharmony_ciLTPROOT=${LTPROOT:-`(cd ../../../../ ; pwd)`} 50f08c3bdfSopenharmony_ciexport LTPROOT 51f08c3bdfSopenharmony_ci 52f08c3bdfSopenharmony_ci# Check the environmanet variable for the test 53f08c3bdfSopenharmony_ci. check_envval || exit 1 54f08c3bdfSopenharmony_ci 55f08c3bdfSopenharmony_ci# Arguments 56f08c3bdfSopenharmony_ciif [ $# -ne 2 ]; then 57f08c3bdfSopenharmony_ci echo "Usage: $0 host_type link_num" >&2 58f08c3bdfSopenharmony_ci exit 1 59f08c3bdfSopenharmony_cifi 60f08c3bdfSopenharmony_cihost_type=$1 61f08c3bdfSopenharmony_cilink_num=$2 62f08c3bdfSopenharmony_ci 63f08c3bdfSopenharmony_ci# Check the host type 64f08c3bdfSopenharmony_ciif [ $host_type != lhost -a $host_type != rhost ]; then 65f08c3bdfSopenharmony_ci echo "$0: 1st argumet is lhost or rhost" >$2 66f08c3bdfSopenharmony_ci exit 1 67f08c3bdfSopenharmony_cifi 68f08c3bdfSopenharmony_ci 69f08c3bdfSopenharmony_ci# Define the interface name 70f08c3bdfSopenharmony_ciifname=`get_ifname $host_type $link_num` || exit 1 71f08c3bdfSopenharmony_ci 72f08c3bdfSopenharmony_ci# Initialize the specified interface 73f08c3bdfSopenharmony_cicommand="ifconfig $ifname down mtu 1500 ; ip route flush dev $ifname ; ip addr flush dev $ifname ; ifconfig $ifname up" 74f08c3bdfSopenharmony_ci 75f08c3bdfSopenharmony_ciif [ $host_type = lhost ]; then 76f08c3bdfSopenharmony_ci ( ifconfig $ifname down && \ 77f08c3bdfSopenharmony_ci ip link set mtu 1500 dev $ifname && \ 78f08c3bdfSopenharmony_ci ip route flush dev $ifname && \ 79f08c3bdfSopenharmony_ci ip addr flush dev $ifname && \ 80f08c3bdfSopenharmony_ci ifconfig $ifname up ) >/dev/null 2>&1 81f08c3bdfSopenharmony_ci ret=$? 82f08c3bdfSopenharmony_cielse 83f08c3bdfSopenharmony_ci ret=`$LTP_RSH $RHOST '( PATH=/sbin:/usr/sbin:$PATH ; ifconfig '$ifname' down && ip link set mtu 1500 dev '$ifname' && ip route flush dev '$ifname' && ip addr flush dev '$ifname' && ifconfig '$ifname' up ) >/dev/null 2>&1 ; echo $?'` 84f08c3bdfSopenharmony_cifi 85f08c3bdfSopenharmony_ci 86f08c3bdfSopenharmony_ciif [ $ret -gt 0 ]; then 87f08c3bdfSopenharmony_ci echo "Failed to initialize $ifname" >&2 88f08c3bdfSopenharmony_ci exit 1 89f08c3bdfSopenharmony_cifi 90