VMware ESXi Server 5.5.0でUbuntu Server 14.04.5 64ビットを実行しており、次の設定を使用してもアップルールとポストアップルールが常にトリガーされるわけではありません。
root@tb60C:~# cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 10.254.4.169
netmask 255.255.254.0
gateway 10.254.4.1
iface eth0 inet6 static
address 2001:x:x:x
netmask 64
gateway 2001:x:x:X
pre-up echo pre:`date` >> /root/log
up echo up:`date` >> /root/log
post-up echo post:`date` >> /root/log
up service ypbind restart
up iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
再起動後にすべてのイベントがトリガーされることがあり、事前ブートイベントのみがトリガーされることがあります。アップとポストアップが実行されない場合、ログファイルは次のようになります。
root@tb60C:~# cat /root/log
pre:Sun Nov 12 15:46:56 EET 2017
イベントは常に発生するわけではありませんが、インターフェイスは再起動後は常に動作して設定されます。
デバッグするにはどこに行きますか?