UniFi Dream Machine: One WiFi Client Connected, AP Not Connecting
The UniFi Dream Machine (UDM) is a popular choice for home networks due to its advanced features and ease of use. It allows users to create split networks (VLANs) for different types of devices, such as home devices, guests, and IoT devices. However, some users may encounter issues with WiFi clients connecting to the access point (AP). This article will cover the key concepts related to this issue and provide a detailed context for troubleshooting.
Understanding the UniFi Dream Machine
The UniFi Dream Machine is a powerful all-in-one network solution that includes a router, switch, and access point. It is designed to provide fast and reliable WiFi coverage for homes and small businesses. The UDM supports the latest WiFi 6 technology, which offers faster speeds, better performance, and improved battery life for connected devices.
Troubleshooting WiFi Client Connection Issues
If you are experiencing issues with WiFi clients connecting to the access point, there are a few things you can check:
- Check the WiFi client's settings to ensure it is configured to connect to the correct network.
- Make sure the access point is properly connected to the UDM via an Ethernet cable.
- Check the UDM's WiFi settings to ensure the correct network is enabled and the WiFi channel is not overlapping with other networks.
- Restart the UDM and the WiFi client to see if that resolves the issue.
Creating Split Networks (VLANs)
The UDM allows users to create split networks (VLANs) to separate different types of devices. This can help improve network security and performance. To create a split network, follow these steps:
- Log in to the UniFi Network Controller.
- Click on "Settings" and then "Networks".
- Click on "Create New Network" and select the type of network you want to create (e.g. VLAN).
- Enter a name for the network and configure the settings as desired.
- Click "Save" to create the network.
- Assign devices to the new network by editing their settings in the UniFi Network Controller.
Code Block Example
Here is an example of how to create a VLAN using the UniFi Network Controller's API:
POST /api/self/networks
{
"name": "IoT",
"type": "vlan",
"vlanId": 10,
"ipSchema": "static",
"ip": "192.168.10.1",
"netmask": "255.255.255.0",
"dhcp-range-start": "192.168.10.100",
"dhcp-range-end": "192.168.10.200",
"dns-servers": [
"8.8.8.8",
"8.8.4.4"
],
"dns-search-domains": [
"home.lan"
]
}
The UniFi Dream Machine is a powerful all-in-one network solution that offers advanced features such as split networks (VLANs) for improved network security and performance. If you are experiencing issues with WiFi clients connecting to the access point, check the WiFi client's settings, ensure the access point is properly connected to the UDM, check the UDM's WiFi settings, and restart the UDM and the WiFi client. To create a split network, use the UniFi Network Controller to create a new network and assign devices to it.
References
- UniFi Dream Machine: https://www.ui.com/unifi-routing/udm/
- UniFi Network Controller API: https://docs.ui.com/api/usermanagement/