View: 1627|Reply: 5

Orange Pi Zero 3 WiFi Access Point Broken using Ubuntu Image

[Copy link]

4

threads

5

posts

68

credits

Registered member

Rank: 2

credits
68
Published in 2023-12-6 14:46:53 | Show all floors |Read mode
This post was finally edited by renaldyks at 2023-12-6 14:47

Problem
I created a Bridge Access Point using Orange Pi Zero 3 with the Ubuntu OS. However, after going through a fairly lengthy configuration, there is an issue when trying to connect to my Orange Pi Zero 3 Access Point.

The problem is: it gets stuck at 'authenticate,' and there is no pop-up to enter the password on my smartphone.

Configuration
Setting file system /etc/network/interfaces
  1. # Network is managed by Network manager
  2. #auto lo
  3. #iface lo inet loopback
  4. #
  5. #Eth Static Configuration
  6. #auto eth0
  7. #iface eth0 inet dhcp # HiBob Configuration
  8. #    address 192.168.6.55
  9. #    netmask 255.255.255.0
  10. #    gateway 192.168.6.254
  11. #    dns-nameservers 8.8.8.8
  12. #
  13. #Wlan0 Static Configuration
  14. #auto wlan0
  15. #allow-hotplug wlan0
  16. #iface wlan0 inet manual
  17. #wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
  18. #iface default inet static
  19. #    address -
  20. #    netmask 255.255.255.0
  21. #    gateway 192.168.6.254
  22. #
  23. #Access Point Configuration
  24. auto lo
  25. iface lo inet loopback
  26. # Eth0 Configuration
  27. auto eth0
  28. allow-hotplug eth0
  29. iface eth0 inet manual
  30. # Wlan0 Configuration
  31. auto wlan0
  32. allow-hotplug wlan0
  33. iface wlan0 inet manual
  34. #wireless power off
  35. # Br0 Configuration
  36. auto br0
  37. iface br0 inet static
  38. address 192.168.6.55
  39. netmask 255.255.255.0
  40. gateway 192.168.6.254
  41. bridge_ports eth0 wlan0
  42. bridge_fd 0
  43. bridge_stp off
Copy code

Setting file system /etc/hostapd.conf
  1. #
  2. # orangepi hostapd configuration example
  3. #
  4. # nl80211 mode
  5. #

  6. ssid=HBGateway
  7. interface=wlan0
  8. hw_mode=g
  9. channel=40
  10. bridge=br0
  11. driver=nl80211

  12. logger_syslog=0
  13. logger_syslog_level=0
  14. wmm_enabled=1
  15. wpa=2
  16. preamble=1

  17. wpa_psk=66eb31d2b48d19ba216f2e50c6831ee11be98e2fa3a8075e30b866f4a5ccda27
  18. wpa_passphrase=6666666666
  19. wpa_key_mgmt=WPA-PSK
  20. wpa_pairwise=TKIP
  21. rsn_pairwise=CCMP
  22. auth_algs=1
  23. macaddr_acl=0

  24. ### IEEE 802.11n
  25. ieee80211n=1
  26. ht_capab=[SHORT-GI-20][SHORT-GI-40][HT40+]
  27. country_code=ID
  28. ieee80211d=1
  29. ### IEEE 802.11n

  30. ### IEEE 802.11a
  31. hw_mode=a
  32. ### IEEE 802.11a

  33. ### IEEE 802.11ac
  34. ieee80211ac=1
  35. #vht_capab=[MAX-MPDU-11454][SHORT-GI-80][TX-STBC-2BY1][RX-STBC-1][MAX-A-MPDU-LEN-EXP3]
  36. vht_oper_chwidth=1
  37. vht_oper_centr_freq_seg0_idx=42
  38. ### IEEE 802.11ac

  39. # controlling enabled
  40. ctrl_interface=/var/run/hostapd
  41. ctrl_interface_group=0
Copy code

Result Configuration
ifconfig result
  1. br0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
  2.         inet 192.168.6.55  netmask 255.255.255.0  broadcast 192.168.6.255
  3.         inet6 fe80::a84f:ff:fec0:5cc8  prefixlen 64  scopeid 0x20<link>
  4.         ether aa:4f:00:c0:5c:c8  txqueuelen 1000  (Ethernet)
  5.         RX packets 8075  bytes 1468199 (1.4 MB)
  6.         RX errors 0  dropped 2  overruns 0  frame 0
  7.         TX packets 1316  bytes 162441 (162.4 KB)
  8.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

  9. eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
  10.         ether 02:00:08:3d:19:71  txqueuelen 1000  (Ethernet)
  11.         RX packets 8118  bytes 1588035 (1.5 MB)
  12.         RX errors 0  dropped 41  overruns 0  frame 0
  13.         TX packets 1316  bytes 162441 (162.4 KB)
  14.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
  15.         device interrupt 43

  16. lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
  17.         inet 127.0.0.1  netmask 255.0.0.0
  18.         inet6 ::1  prefixlen 128  scopeid 0x10<host>
  19.         loop  txqueuelen 1000  (Local Loopback)
  20.         RX packets 10  bytes 1612 (1.6 KB)
  21.         RX errors 0  dropped 0  overruns 0  frame 0
  22.         TX packets 10  bytes 1612 (1.6 KB)
  23.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

  24. wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
  25.         ether f8:b4:76:a0:3d:7b  txqueuelen 1000  (Ethernet)
  26.         RX packets 0  bytes 0 (0.0 B)
  27.         RX errors 0  dropped 0  overruns 0  frame 0
  28.         TX packets 1687  bytes 276151 (276.1 KB)
  29.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
Copy code
Question
I have used this configuration on Orange Pi Zero 2, and it worked successfully. There are around 100 devices running in production using this setup. However, when I tried to apply the same configuration to Orange Pi Zero 3, it failed, and I haven't found many forums discussing it yet. Could it be because Orange Pi Zero 3 is still relatively new?

How can I resolve this issue? I've heard there are quite a few bugs in the Ubuntu OS for Orange Pi Zero 3.

Orangepizero3_1.0.2_ubuntu_jammy_desktop_xfce_linux6.1.31

1

threads

6

posts

35

credits

Novice

Rank: 1

credits
35
Published in 2023-12-6 19:48:37 | Show all floors
This post was finally edited by ag123 at 2023-12-6 19:50

try a channel between 1 to 14 in hostapd.conf

I tend to find that hostapd needs a bridge to work, but that I'm not sure about it, e.g. if it works for you without adding a bridge clause in hostapd.conf can you post a feedback?

4

threads

5

posts

68

credits

Registered member

Rank: 2

credits
68
 Author| Published in 2024-7-9 14:15:12 | Show all floors
ag123Published in 2023-12-6 19:48
This post was finally edited by ag123 at 2023-12-6 19:50

try a channel between 1 to 14 in hostapd ...

It's not work. But, if i user 'orangepi-config' to setting AP, it's worked.

16

threads

227

posts

898

credits

Senior member

Rank: 4

credits
898
Published in 2024-9-16 20:24:27 | Show all floors
This medication, which is a prescription-only weight loss solution, is gaining attention for its potential effectiveness. Saxenda from Canada works by mimicking a hormone that helps regulate appetite, leading to reduced food intake. It's crucial to consult with a healthcare professional before starting Saxenda to ensure it's suitable for your health needs. For those exploring weight management strategies, saxenda from canada might be a viable option worth discussing with your doctor.

3

threads

218

posts

604

credits

Senior member

Rank: 4

credits
604
Published in 2024-9-20 01:27:19 | Show all floors
A few months ago, on a whim after a particularly tough week at work, I decided to explore the world of online gambling. I stumbled upon a platform boasting a vast array of slot games and a tempting sign-up https://1xslotcassino.com/ bonus. Feeling adventurous, I registered and deposited a modest amount, eager to test my luck. The interface was vibrant and user-friendly, and I was soon captivated by the variety of slots available, from classic fruit machines to high-definition video slots with elaborate themes.

My excitement, however, quickly turned into frustration. Initially, the wins were frequent and small, but as I continued playing, the wins became rarer, and the losses began to stack up. It was easy to get caught up in the flashy graphics and sound effects, losing track of time and money. My attempts to chase after the elusive big win only led to deeper losses. This experience served as a powerful lesson in the dangers of getting swept up in the spectacle of online slots. I learned the hard way that while the games can be incredibly entertaining, it's crucial to set a budget and stick to it to avoid falling into the trap of compulsive gambling.

0

threads

6

posts

20

credits

Novice

Rank: 1

credits
20
Published in 2024-11-11 15:36:23 | Show all floors
Confirm that the WiFi module on the Orange Pi Zero 3 Worldle is compatible with the Ubuntu image you're using. Some Ubuntu versions may lack drivers for certain WiFi chipsets.
You need to log in before you can reply login | Register

Points Rule

Quick reply Top Return list