Answers for "ubuntu server + where to find network settings"

4

check computers connected to network ubuntu

# I always use nmap. To scan for all devices in your network, use:
# STEP1 find your ip address e.g. 192.168.1.45
ifconfig
# STEP2 to know the connected pcs to your network
nmap -sP 192.168.1.0/24

# More here: https://www.cyberciti.biz/networking/nmap-command-examples-tutorials/
# It is a great tool to know about. 
# You may want to install nmap using:

sudo apt-get install nmap  # if you are using Debian / Ubuntu

sudo pacman -S nmap 	   # if you are using Arch.
Posted by: Guest on May-03-2021
0

ubuntu setting network address

ip linkCopy
Posted by: Guest on June-09-2021

Code answers related to "ubuntu server + where to find network settings"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language