I have same issue in OPNSense like in pfSense
Issue and potiential fix for apinger monitoring of IPv6 GIF interfaces (https://forum.pfsense.org/index.php?topic=104240.0)
(http://i.imgur.com/BdafBSF.png)
After apinger restart all ok
(http://i.imgur.com/NIIfb9P.png)
Currently I have other issues in pfSense with apinger, I fixed it like this
pfsense 2.1-release - Gateway aPinger broken? (https://forum.pfsense.org/index.php?topic=69533.msg584074#msg584074)
<?phprequire_once("/etc/inc/service-utils.inc");require_once("/etc/inc/globals.inc");require_once("/etc/inc/gwlb.inc");$log_file = "/var/log/apinger.log";$log_date = date('d/m/Y H:i:s', time());$counter = 0;$a_gateways = return_gateways_array();$gateways_status = array();$gateways_status = return_gateways_status(true);foreach ($a_gateways as $gname => $gateway) { if ($gateways_status[$gname]) { $str_data = $gateways_status[$gname]['delay']; $pos = substr($str_data,0,strpos($str_data, "ms")); if (floatval($pos) > 500 ) { $counter++; } } }if ($counter > 0) { service_control_restart(apinger,restartservice); $log_data = 'Counter = '.$counter. ' date: '.$log_date. ' | service restarted!'. PHP_EOL; file_put_contents($log_file, $log_data, FILE_APPEND);} ?>
OPNSense running as guest on Hyper-V host