SAlut tous,
Qqun a compris à quoi sert l'otion où l'on peut mettre 1 - 2 - 3 - 4 ?
Bravo à celui qui a pondu cet addon, vraiment original et utile, dans certain cas....
Merci.
Modérateur: modos Ixus
####
# return a list of IPs
# { list may be an empty string }
#
# Use of 'arp's --display all host function to find the hosts currently active
# and filters to include only those on the MNIC set of networks.
function ActiveIPs {
# echo "192.168.91.4"
# echo "192.168.91.8"
/sbin/arp --numeric -a | awk '
$4 == /\<incomplete\>/{
next; # ignore incomplete arp entries.
}
# match only members of networks in the set of MNIC
match( "|'"${MNIC}"'|", "|$7|" ){
# output only the IP addresses
print gensub( /\(|\)/, "", "g", $2 );
}' # end of awk script
}
###
Utilisateur(s) parcourant actuellement ce forum : Aucun utilisateur inscrit et 1 invité