Bonjour,
Quand NetworkManager se connecte je souhaiterais lancer un script pour définir des routes. J'ai donc créer un dispatcher mais les route ne sont pas prisent en compte. Je me suis tromper quelque part (pourtant il passe dans le script )?
$ cat /etc/NetworkManager/dispatcher.d/00-routekevm
#!/bin/sh
IF=$1 # The interface calling the status update
STATUS=$2 # The new status of the interface, up or down
echo $IF > /home/gaetan/pass
echo $STATUS >>/home/gaetan/pass
if [ "$STATUS" = "up" ] && [ "$IF" = "eth0" ] ; then
route add UneIP dev eth0
route add default gw UneIP
fi
si après la connexion je fais les route add à la main ca marche.