Find IP Address
Overview
We’ll find out how to discover the IP address associated with your UDOO X86. The IP address is a number that uniquely identifies a device in a network. It will be useful to know which IP your UDOO X86 is assigned to for connecting to it remotely. There are various way to find the private IP Address, so let’s get started.
First method: Command Line
If your UDOO X86 is connected to a screen, you can simply find the IP Address of the board using the tool exploited by the OS you are using.
On a Linux distribution open a terminal and type:
ip a
This command will output informations related to both Ethernet and Wi-Fi status, including respective IP addresses, besides the loopback address.
udooer@udoox86:~$ ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: enp2s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 00:c0:08:8a:9b:e4 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.154/24 brd 192.168.1.255 scope global dynamic enp2s0
valid_lft 86360sec preferred_lft 86360sec
inet6 fe80::9729:431c:c4af:1d63/64 scope link
valid_lft forever preferred_lft forever
3: wlp3s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether ac:2b:6e:12:b5:6a brd ff:ff:ff:ff:ff:ff
inet 192.168.1.102/24 brd 192.168.1.255 scope global dynamic wlp3s0
valid_lft 86396sec preferred_lft 86396sec
inet6 fe80::2067:7675:6f56:518/64 scope link tentative dadfailed
valid_lft forever preferred_lft forever
inet6 fe80::29a4:2ccc:f12c:2e4a/64 scope link tentative dadfailed
valid_lft forever preferred_lft forever
inet6 fe80::9846:e568:c6d2:ff08/64 scope link tentative dadfailed
valid_lft forever preferred_lft forever
In this example the Ethernet IP address is 192.168.1.154
and the Wi-Fi IP address is 192.168.1.102
.
Alternatively you can also use the command ifconfig
.
Second method: use the Fing - Network Tools Mobile App
Fing is a network scanner app, which will help you to discover every device connected into your network. Simply go to the Android or Ios market, download and launch it. If UDOO X86 is properly connected to the same network your phone is (whether via Wi-Fi or ethernet), you should see it and discover its IP address.
Link to the stores: Android Google Play and IOS App Store
You'll find UDOO X86 connected through the GB Ethernet identified as Seco
.
If the board is connected to the Network through Intel Wi-Fi/BT module you'll find it identified as Intel
Third method: use your Router’s control panel
Just connect to your router’s control panel: open your browser and type the IP address of your router. Usually this is 192.168.1.1
or 192.168.0.1
or 192.168.1.254
.
Once you’re prompted with a user and password login box, log in (if you’ve not changed them, there are good chances they would be: admin
as both user and password).
Navigate to the devices list, which can be called also status or manteinance, you should see your UDOO X86 with his IP address.
Here you are. Now that you know your IP address, you can easily access your UDOO X86.