This page reviews how to configure your computer, to be able to connect to the networking devices. We review setting a static IP address and sharing internet with other computers.
Setting a static IP address
This section contains instructions for setting your computer's Ethernet adapter to use a static IP address on the 192.168.1.* subnet. This is a necessary step for connecting to certain network devices via Ethernet, and is used in our config instructions for the EdgeRouter X and the Mesh AP.
Choose your computer's OS:
MacOS
- Open up
System Preferences>Network. - Select the Ethernet connection you have with the device you'd like to configure.

- Change the value of
Configure IPv4toManually.
- Set the IP Address to
192.168.1.2. - Set the Subnet Mask to
255.255.255.0
- Click
Apply
Ubuntu
These instructions have only been tested on Ubuntu 20.04.
- Open your
Settings>Network. - Under the "wired" section, click the plus sign to create a new settings profile. Name the profile "Static IP" or whatever you want.

- In the IPv4 tab, choose "Manual".
- Set the Address field to
192.168.1.2 - Set the Netmask to:
255.255.255.0
(Leave Gateway empty, and DNS/Routes on `Automatic)
- Click "add"; you should see the profile appear in your settings. Select it when connected to activate the static IP configuration.
Windows
- Open up
Network Connections(type 'view network connections' into Windows Search)
- Right-click the desired network adapter to open the context menu, then click 'Properties'

- In the '(Adapter Name) Properties' menu, double-click on 'Internet Protocol Version 4 (TCP/IPv4)', or select it and then click 'Properties'.

- In the 'Internet Protocol Version 4 (TCP/IPv4) Properties' menu, select 'Use the following IP address':
- Set the IP Address to
192.168.1.2 - Set the Subnet mask to
255.255.255.0
- Click
OK
Details
These steps use 192.168.1.2 as the static IP, but it can be anything within the 192.168.1.0/24 range (.0-.255) except for .0 (network), .1 (gateway), .20 (the mesh AP's default IP), and .255 (broadcast).
Sharing a WiFi connection over Ethernet
This section describes how to connect a device to your computer via Ethernet and share your computer's existing Internet connection with that device. In other words, your computer will be acting as a gateway and the connected device will be able to send packets via your computer to the Internet.
This is useful when you need a device to be able to access the internet while networked with your computer, but you do not have access to your router. We use it as an option in our config instructions for the Unifi Mesh AP.
Choose your computer's OS:
Ubuntu
-
Open your
Settings>Network. -
Under the
Wiredsection, click the plus sign to create a new settings profile. Name the profile "Shared" or whatever you want. -
In the IPv4 tab, choose "Shared to other computers". Click Apply. Your computer should now be networked with the AP. 10.42.0.0/24 is the default subnet used by Ubuntu for this setup, but there's not necessarily a guarantee that your computer will use that subnet. If the next step returns no results, run
ip addressorifconfigand look for the IP of your Ethernet interface (usuallyeth0) there. -
Open a terminal. Type the following to scan the devices in that IP range:
nmap -sn 10.42.0.0/24 | grep reportYou should see two lines beginning with "
nmap scan report". Find the line with an IP address that does not end with ".1", and copy that IP address.
If the nmap command hangs, you can also try the Mac OS directions on Ubuntu Linux and it should work fine.
MacOS
Begin these steps with the AP not connected to your computer via an ethernet port or adapter.
-
Open
Sharingfrom yourSystem Preferencesmenu -> selectInternet Sharingin the list on the left -> select the interfaces you want to enable sharing for -> click the box next toInternet Sharingto turn it on -> a warning dialog box will come up, so clickStart. -
Run
arp -a | grep -v incompleteto show a mapping of ip address to mac address for the devices on your network. -
Connect the ap to your machine or adapter and run
arp -a | grep -v incompleteagain. The difference between this and the previous grep output should be the AP. Note the IP address and MAC address. -
To confirm that the AP has a route to the internet, you can run the same commands as specified in step 5 of the Ubuntu instructions above (ssh, ping, etc.).
Note: These instructions were developed on a MacBook running Catalina, version 10.15.7.
Windows
Begin these steps by connecting the AP to a PoE injector, and connecting the LAN port of the PoE injector to your computer's Ethernet port.
-
Open the 'Settings' menu, and then click 'Network and Internet'
-
Under 'Advanced Network Settings', click 'Change Adapter Options'
-
In the popup, right-click the interface you're connected through the Internet with (this will probably be 'Wifi' or 'Ethernet'), and then click 'Properties'
-
In the second popup, click the 'Sharing' tab.
-
Under 'Internet Connection Sharing', select 'Allow other network users to connect through this computer's Internet connection'.
-
In the dropdown, select the interface that the AP/PoE injector is connected to.
-
Click 'OK'
-
Run
arp -a, and check for the AP's MAC address in the ARP table.
Note: these instructions were developed on Windows 10.