/etc/default/network-test is in ifupdown-extra 0.24.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Defaults for ifupdown-extra testing scripts
# sourced by scripts at /etc/network/if-{pre-,-}up.d
# installed at /etc/default/network-test by the maintainer scripts
# while respecting exported shell environment variables
# Tells scripts to log to syslog the tests done before an interface
# is configured. Set this to "no" if you just want to use stderr
DO_SYSLOG=${DO_SYSLOG:-yes}
# Abort scripts (do not continue) if the network link is not up
ABORT_NO_LINK=${ABORT_NO_LINK:-no}
# Additional options that are passed to ARPING scripts
#
# DO_ARPING tells the scripts to test status through arping. Notice that
# this will introduce a delay when configuring the interface (if
# everything is OK) since the scripts will have to wait until arping
# finished before configuring an interface. Set this to 'no' if you
# do not want the delay and want to skip these tests.
DO_ARPING=${DO_ARPING:-yes}
#
# These values control how many arp pings are sent when doing ARP tests
# The higher the count (or timeout) the more time it will take for those
# scripts to finish but it might make it more easy to detect faulty
# counditions in overloaded networks.
ARP_COUNT=${ARP_COUNT:-2}
ARP_TIMEOUT=${ARP_TIMEOUT:-3}
|