উত্তর:
আপনার যদি 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 প্রতিস্থাপন করুন।