forked from zephyrproject-rtos/net-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
loop-radvd.sh
executable file
·73 lines (62 loc) · 1.68 KB
/
loop-radvd.sh
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
#!/bin/sh
#
# Copyright (c) 2016 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Run radvd in a loop. This way we can restart qemu and do not need
# to manually restart radvd process.
PID_DIR=/var/run/radvd
PID_FILE=$PID_DIR/radvd.pid
ip link | grep tap0 > /dev/null 2>&1
if [ $? -eq 0 ]; then
CONF_FILE=radvd_slip.conf
else
ip link | grep zeth > /dev/null 2>&1
if [ $? -eq 0 ]; then
CONF_FILE=radvd_native_posix.conf
else
echo "Cannot find suitable network interface to run radvd"
exit 3
fi
fi
if [ ! -f $CONF_FILE ]; then
if [ ! -f $ZEPHYR_BASE/../net-tools/$CONF_FILE ]; then
echo "Cannot find $CONF_FILE file."
exit 1
fi
DIR=$ZEPHYR_BASE/../net-tools
else
DIR=.
fi
if [ ! -f $DIR/$CONF_FILE ] ;then
echo "No such config file $DIR/$CONF_FILE found."
exit 4
fi
if [ ! -s $DIR/$CONF_FILE ]; then
echo "Config file $DIR/$CONF_FILE is empty."
exit 4
fi
if [ `id -u` != 0 ]; then
echo "Run this script as a root user!"
exit 2
fi
STOPPED=0
trap ctrl_c INT TERM
ctrl_c() {
STOPPED=1
kill `cat $PID_FILE`
}
mkdir -p $PID_DIR
while [ $STOPPED -eq 0 ]; do
radvd -n -C $DIR/$CONF_FILE -m stderr -p $PID_FILE -u root
done