Skip to content

Commit

Permalink
Merge pull request #312 from LudwigOrtmann/tapsetup_tapname
Browse files Browse the repository at this point in the history
allow for custom tap names
  • Loading branch information
OlegHahm committed Nov 9, 2013
2 parents af725dc + bad5238 commit df6cb2b
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions cpu/native/tapsetup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ COUNT=${2}

DEFCOUNT="2"
DEFBRNAME="tapbr0"
DEFTAPNAME="tap"

if [ -z "${USER}" ]; then
echo 'need to export $USER'
Expand All @@ -18,6 +19,9 @@ fi
if [ -z "${BRNAME}" ]; then
BRNAME="${DEFBRNAME}"
fi
if [ -z "${TAPNAME}" ]; then
TAPNAME="${DEFTAPNAME}"
fi

if [ "${COMMAND}" = 'create' ]; then
if [ -z "${COUNT}" ]; then
Expand All @@ -30,11 +34,11 @@ if [ "${COMMAND}" = 'create' ]; then
sudo ip link set ${BRNAME} up || exit 1

for N in $(seq 0 "$((COUNT - 1))"); do
echo "creating tap${N} ..."
sudo ip tuntap add dev tap${N} mode tap user ${USER} || exit 1
sudo -s sh -c "echo 1 > /proc/sys/net/ipv6/conf/tap${N}/disable_ipv6" || exit 1
sudo brctl addif ${BRNAME} tap${N} || exit 1
sudo ip link set tap${N} up || exit 1
echo "creating ${TAPNAME}${N} ..."
sudo ip tuntap add dev ${TAPNAME}${N} mode tap user ${USER} || exit 1
sudo -s sh -c "echo 1 > /proc/sys/net/ipv6/conf/${TAPNAME}${N}/disable_ipv6" || exit 1
sudo brctl addif ${BRNAME} ${TAPNAME}${N} || exit 1
sudo ip link set ${TAPNAME}${N} up || exit 1
done

elif [ "${COMMAND}" = 'delete' ]; then
Expand Down

0 comments on commit df6cb2b

Please sign in to comment.