ฉันจะทำให้สคริปต์ทำงานโดยอัตโนมัติเมื่อมีเหตุการณ์ขึ้น / ลง tun0 อินเตอร์เฟสได้อย่างไร


15

ฉันใช้ไคลเอนต์ VPN เพื่อเชื่อมต่อกับเซิร์ฟเวอร์องค์กรของฉัน มันสร้างอินเตอร์เฟส tun0 หลังจากเริ่มต้นไคลเอ็นต์ ฉันได้เขียนสคริปต์ที่ติดตั้งเส้นทางเฉพาะชี้ไปที่อินเทอร์เฟซ tun0 และส่วนที่เหลือเพื่อใช้การเชื่อมต่อ wifi ปกติ ดังนั้นเฉพาะการรับส่งข้อมูลที่เกี่ยวข้องกับสำนักงานของฉันเท่านั้นที่ใช้ผ่าน VPN และที่เหลือจะต้องผ่านการเชื่อมต่ออินเทอร์เน็ตที่บ้าน ฉันจะทำให้สคริปต์ทำงานโดยอัตโนมัติเมื่อมีเหตุการณ์ขึ้น / ลง tun0 อินเตอร์เฟสได้อย่างไร

คำตอบ:


17

ฉันไม่แน่ใจเกี่ยวกับtun0แต่ฉันคิดว่าสคริปต์ใน/etc/network/if-up.d/และ/etc/network/if-down.d/ถูกเรียกใช้เมื่ออินเทอร์เฟซขึ้นหรือลงตามลำดับ

IFACEภายในสคริปต์ที่คุณสามารถกำหนดได้ว่าอินเตอร์เฟซที่เป็นที่สนใจจากเนื้อหาของตัวแปร

เพื่อให้แน่ใจว่าเพิ่มสคริปต์ง่ายๆ/etc/network/if-up.d/ที่เนื้อหาคือ

#!/bin/sh
# filename: tun-up

if [ "$IFACE" = tun0 ]; then
  echo "tun0 up" >> /var/log/tun-up.log
fi

ทำให้ปฏิบัติการได้

sudo chmod +x /etc/network/if-up.d/tun-up

จากนั้นดูว่ามีการบันทึกเหตุการณ์ขึ้นหรือไม่ /var/log/tun-up.log


1
ขอบคุณ ฉันได้รับข้อความ syslog ด้านล่างและสคริปต์จะไม่ถูกเรียกใช้เลย / etc / network / interfaces ไม่มีข้อมูลอื่นนอกจาก loopback 9 พฤษภาคม 15:26:48 mypc NetworkManager [869]: SCPlugin-Ifupdown: อุปกรณ์ถูกเพิ่ม (พา ธ : / sys / อุปกรณ์ / เสมือน / net / tun0, iface: tun0): ไม่พบการกำหนดค่า ifupdown
sudurais

5
gksudo gedit /etc/network/interfaces

เพิ่ม:

auto tun0
iface tun0 inet manual
    up COMMAND

COMMANDอาจจะเป็นคำสั่งที่ชอบip route add something...หรือเส้นทางสคริปต์ที่มีสิทธิ์ในการปฏิบัติการ ( chmod +x) /etc/network/if-up.d/ในที่สุดก็เก็บไว้ใน

แทนที่จะupคุณอาจใช้post-up, ,downpost-down

เอกสาร :

ตัวเลือก IFACE

   The  following  "command"  options  are  available for every family and
   method.  Each of these options can be given multiple times in a  single
   stanza,  in  which case the commands are executed in the order in which
   they appear in the stanza.  (You can ensure a command  never  fails  by
   suffixing them with "|| true".)

   pre-up command
          Run  command  before bringing the interface up.  If this command
          fails then ifup aborts, refraining from marking the interface as
          configured,  prints  an  error message, and exits with status 0.
          This behavior may change in the future.

   up command

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

   down command

   pre-down command
          Run command before taking the interface down.  If  this  command
          fails  then  ifdown  aborts, marks the interface as deconfigured
          (even though it has not really  been  deconfigured),  and  exits
          with status 0.  This behavior may change in the future.

   post-down command
          Run  command  after  taking the interface down.  If this command
          fails then ifdown aborts, marks the interface  as  deconfigured,
          and  exits  with  status  0.   This  behavior  may change in the
          future.

   There exists for each  of  the  above  mentioned  options  a  directory
   /etc/network/if-<option>.d/  the  scripts  in  which  are  run (with no
   arguments)  using  run-parts(8)  after  the  option  itself  has   been
   processed.  Please  note  that  as post-up and pre-down are aliases, no
   files in the corresponding directories are processed.  Please  use  if-
   up.d and if-down.d directories instead.

   All  of  these  commands  have  access  to  the  following  environment
   variables.

   IFACE  physical name of the interface being processed

   LOGICAL
          logical name of the interface being processed

   ADDRFAM
          address family of the interface

   METHOD method of the interface (e.g., static)

   MODE   start if run from ifup, stop if run from ifdown

   PHASE  as per MODE, but with finer granularity, distinguishing the pre-
          up, post-up, pre-down and post-down phases.

   VERBOSITY
          indicates whether --verbose was used; set to 1 if so, 0 if not.

   PATH   the   command   search   path:  /usr/local/sbin:/usr/local/bin:���
          /usr/sbin:/usr/bin:/sbin:/bin

   Additionally, all options given in an interface definition  stanza  are
   exported to the environment in upper case with "IF_" prepended and with
   hyphens  converted  to  underscores  and  non-alphanumeric   characters
   discarded.

   When  ifupdown  is  being  called  with  the --all option, before doing
   anything to interfaces, if calls all the hook scripts (pre-up or  down)
   with  IFACE set to "--all", LOGICAL set to the current value of --allow
   parameter  (or  "auto"   if   it's   not   set),   ADDRFAM="meta"   and
   METHOD="none".   After all the interfaces have been brought up or taken
   down, the appropriate scripts (up or post-down) are executed.

0

ผมเคยใช้เรียกใช้สคริปต์หลังจากsystemd สคริปต์ของฉันnetwork-online.target<path>/script.sh

1. ) sudo systemctl edit --force --full my-script.service:

[Unit]
Description=My script after network available
Wants=network-online.target
After=network-online.target

[Service]
Type=simple
User=root
ExecStart=<path>/script.sh

[Install]
WantedBy=multi-user.target

2. ) sudo systemctl enable my-script.service

3. ) sudo systemctl start my-script.service

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.