Executar script personalizado quando uma interface é conectada

9

Estou usando um dongle USB wifi para conectar à Internet. Quando a conexão sem fio termina, também perco algumas regras de iproute.

Como posso redefinir essas regras quando a interface é conectada novamente?

pylover
fonte
1
Olhe para o udev .
terdon

Respostas:

14

Se você possui ifupdown(provavelmente se estiver usando o Debian ou uma distribuição baseada em Debian), consulte man interfaces:

   post-up command
          Run command after bringing the interface up.  If this command fails then ifup aborts, refraining from marking the interface as  con‐
          figured  (even though it has really been configured), prints an error message, and exits with status 0.  This behavior may change in
          the future.

Então, /etc/network/interfacesvocê pode ter algo como

auto eth0
    iface eth0 inet dhcp
    post-up /usr/local/sbin/my-custom-script

Substitua eth0 pela sua interface real.

Elias Torres Arroyo
fonte