#!/bin/bash

		
id=`whoami`

if [[ $id != "root" ]]; then
	echo "Il faut être 'root' pour pouvoir relancer le réseau"
	exit
fi

ifg=`ifconfig`
ifconfig
ethx=${ifc/ */}
echo
echo $ethx
ifdown $ethx
echo
ifconfig
ifup $ethx
echo
ifconfig