How Do I Find My ip Address In Linux

timsip

New member
Please let me know how i can find out my address in Linux with a command without using web browser service. Do let me know the detail about finding ip in Linux in detail.
 
You can go to Menu -> Administration -> Network Tools.
Your ip should be listed there right away.

If you want to use the terminal just type "ifconfig" and it will show the details there.
 
I think that this thread is over already..
Why did you just post the same informations as me?
 
Please let me know how i can find out my address in Linux with a command without using web browser service. Do let me know the detail about finding ip in Linux in detail.

You can follow the command to find out your ip address in Linux :

/sbin/ifconfig $1 | grep "inet addr" | awk -F: '{print $2}' | awk '{print $1}'

you can use function ext-ip () { lynx --dump http://www.ip-details.com; } to find out your external ip address .
 
Please let me know how i can find out my address in Linux with a command without using web browser service. Do let me know the detail about finding ip in Linux in detail.

Please let me know how i can find out my address in Linux with a command without using web browser service. Do let me know the detail about finding ip in Linux in detail.

You can follow the command to find out your ip address in Linux :

/sbin/ifconfig $1 | grep "inet addr" | awk -F: '{print $2}' | awk '{print $1}'

you can use function ext-ip () { lynx --dump ip-details.com; } to find out your external ip address .
 
Back
Top