RUN="yes"

if [ "$RUN" = "yes" ]; then
	#Unity:eth0 Egide:enp3s0
	if [ "$reason" = "FAIL" ] && [ "$interface" = "eth0" ]; then
		ip addr add 192.168.100.200/24 dev eth0
        elif [ "$reason" = "FAIL" ] && [ "$interface" = "enp3s0" ]; then
                ip addr add 192.168.100.200/24 dev enp3s0
        fi
fi
