ADB Configuration
Configure Wired Network Dynamic IP Address
The 2nd Generation Smart Camera is configured with a static IP address by default (192.168.1.123/24). If the upstream device on your LAN has a DHCP service and you want to automatically obtain an IP address, follow these steps:
- Press
Win+Ron the Windows PC, typecmdin the pop-up window, and enter the following commands in the terminal:
adb shell //Log into the system- Get the connection name:
nmcli -g GENERAL.CONNECTION device show eth0- Restore dynamic IP configuration
nmcli connection modify 'connection_name obtained in step 1' ipv4.method auto ipv4.addresses '' ipv4.gateway '' ipv4.dns ''- Apply network configuration
nmcli device reapply eth0Configure Wired Network Static IP Address
The 2nd Generation Smart Camera is configured with a static IP address by default (192.168.1.123/24). To configure a different static IP address, follow these steps:
- Press
Win+Ron the Windows PC, typecmdin the pop-up window, and enter the following command in the terminal:
adb shell //Log into the system- Get the connection name:
nmcli -g GENERAL.CONNECTION device show eth0- Configure static IP settings
nmcli connection modify 'connection_name obtained above' ipv4.method manual ipv4.addresses 192.168.1.231/24 ipv4.gateway 192.168.1.1 ipv4.dns '114.114.114.114'- Apply network configuration
nmcli device reapply eth0💡Note
The IP address and subnet mask shown here are for reference only. Please set them according to your actual network environment.
Configure Wireless WIFI
💡Tip
Qualcomm does not support WiFi WPA3 encryption by default. Please confirm the WIFI encryption method.
The 2nd Generation Smart Camera also supports wireless WIFI configuration via command line. Follow these steps:
- Press
Win+Ron the Windows PC, typecmdin the pop-up window, and enter the following command to access the system:
adb shell- Scan for WIFI networks
nmcli dev wifi list 2>&1 | less💡Note Use the up and down arrow keys to browse all scanned APs. Press
qto exit the scan view.
- Connect to WIFI
nmcli dev wifi connect "WiFi-SSID" password "WiFi-password"- Disconnect WIFI
nmcli connection down id <WIFI-SSID>- Delete WIFI connection
nmcli connection delete <WIFI-SSID>- List connected networks
nmcli connection show