Computer Science, asked by deepanshu5261, 1 year ago

How to know the network ip address in linux command?

Answers

Answered by saraswatibej72pd3i2a
0
first step = Open Terminal. You can find this in your list of applications or by searching for "terminal".

second step = Enter this command: ip addr show . This should return information on each ethernet device connected.

third step =
Each device's IP address is listed after "inet".

If you're not sure which device you're looking for, you most likely want "eth0", the first ethernet adapter recognized. To only view information for eth0, enter ip addr show eth0 .

Similar questions