Finding All Hosts On the LAN From Linux / Windows Workstation
#Linux for ip in $(seq 1 254); do ping -c 1 192.168.1.$ip>/dev/null; [ $? -eq 0 ] && echo “192.168.1.$ip UP” || : ; done… Read More »Finding All Hosts On the LAN From Linux / Windows Workstation