인터페이스가 연결될 때 사용자 지정 스크립트 실행


9

USB 와이파이 동글을 사용하여 인터넷에 연결합니다. 무선 연결이 끊어지면 iproute 규칙도 잃어 버립니다.

인터페이스가 다시 연결될 때 이러한 규칙을 어떻게 재설정 할 수 있습니까?


1
udev를 살펴보십시오 .
terdon

답변:


14

당신이있는 경우 ifupdown에 보면 (데비안이나 데비안 기반 배포판을 사용하는 경우 가장 가능성) 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.

그래서 /etc/network/interfaces당신은 같은 것을 가질 수 있습니다

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

실제 인터페이스의 eth0을 교체하십시오.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.