|}}
#We block ping packets from being sent on the host to which the access point is configured. #This will trigger a failover sudo iptables -A INPUT -s 197.64.14.100 -p icmp --icmp-type echo-request -j DROP #We remove the block #This leads to a fallback. sudo iptables -D INPUT -s 197.64.14.100 -p icmp --icmp-type echo-request -j DROP