Answers for "domain to ip ubuntu terminal"

4

find ip address on local network ubuntu

Generally, nmap is quite useful to quickly scan networks.

To install nmap, enter the following command in the terminal:

sudo apt-get install nmap

Once the application is installed, enter the following command:

nmap -sn 192.168.1.0/24
Posted by: Guest on June-07-2021
0

give names to ips on local machine ubuntu

modify the file /etc/hosts
add your entry like 
<ip_address> <name_you_want_to_give>
eg:
127.0.0.1 localhost
Posted by: Guest on November-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language