package Smokeping::probes::FPing6; =head1 301 Moved Permanently This is a Smokeping probe module. Please use the command C to view the documentation or the command C to generate the POD document. =cut use strict; use base qw(Smokeping::probes::FPing); sub pod_hash { return { name => < < <<'DOC', Tobias Oetiker Niko Tyni DOC see_also => < DOC } } sub testhost { return "::1"; } sub probevars { my $self = shift; my $h = $self->SUPER::probevars; $h->{binary}{_example} = "/usr/bin/fping6"; $h->{sourceaddress}{_re} = "[0-9A-Fa-f:.]+"; $h->{sourceaddress}{_example} = "::1"; return $h; } sub ProbeDesc($){ my $self = shift; my $bytes = $self->{properties}{packetsize}||56; return "IPv6-ICMP Echo Pings ($bytes Bytes)"; } 1;