IP addresses identify devices connected to your home network (WiFi), each time a new device is connected to a network, your router assigns a new, available IP address. Different configuration settings on your router can be set to rehuse IP addresses with a certain frequency.
Maybe you need to set your computer's IP static to be able to get to a service hosted inside your computer from anther device, or you are configuring any other software, knowing your IP might not be extremely straight forward. Following the next steps will allow you to find your IP in no time.
Using the Terminal:
1.- Open the terminal by doing either of the following:
Maybe you need to set your computer's IP static to be able to get to a service hosted inside your computer from anther device, or you are configuring any other software, knowing your IP might not be extremely straight forward. Following the next steps will allow you to find your IP in no time.
Mac devices:
Using System Preferences:- Open your "Network Preferences" either from the System Preferences dashboard or by clicking the Wifi Icon on your menu bar.
- Select WiFi and cick "Advanced"
- Select the "TCP/IP" tab
Your IP address will be displayed in the IPv4 Address (usually starting with 192)
Using the Terminal:
1.- Open the terminal by doing either of the following:
- Pressing Command + Spacebar, type Terminal
- Click on the search icon on the top right of the menu bar and type Terminal
- Open your applications folder and search for the Terminal icon
2.- In the terminal, type the following command:
ifconfig |grep inet
you will see something like the following, where your IP is generally the last inet row:
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
inet 127.0.0.1 netmask 0xff000000
inet6 fe80::fa1e:dfff:feea:d544%en1 prefixlen 64 scopeid 0x5
inet 192.168.1.157 netmask 0xffffff00 broadcast 192.168.1.255
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
inet 127.0.0.1 netmask 0xff000000
inet6 fe80::fa1e:dfff:feea:d544%en1 prefixlen 64 scopeid 0x5
inet 192.168.1.157 netmask 0xffffff00 broadcast 192.168.1.255
Comments
Post a Comment