질문
Orange Pi Zero 3 및 Ubuntu 운영 체제를 사용하여 브리지 액세스 포인트를 만들었습니다. 그러나 꽤 오랜 시간을 구성한 후 Orange Pi Zero 3 액세스 포인트에 연결하는 데 문제가 발생했습니다.
문제는 '인증' 상태에서 멈춰 있고 스마트폰에 비밀번호를 입력하라는 팝업이 표시되지 않는다는 것입니다.
구성
파일 시스템 /etc/network/interfaces 설정
# Network is managed by Network manager
#auto lo
#iface lo inet loopback
#
#Eth Static Configuration
#auto eth0
#iface eth0 inet dhcp # HiBob Configuration
# address 192.168.6.55
# netmask 255.255.255.0
# gateway 192.168.6.254
# dns-nameservers 8.8.8.8
#
#Wlan0 Static Configuration
#auto wlan0
#allow-hotplug wlan0
#iface wlan0 inet manual
#wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
#iface default inet static
# address -
# netmask 255.255.255.0
# gateway 192.168.6.254
#
#Access Point Configuration
auto lo
iface lo inet loopback
# Eth0 Configuration
auto eth0
allow-hotplug eth0
iface eth0 inet manual
# Wlan0 Configuration
auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
#wireless power off
# Br0 Configuration
auto br0
iface br0 inet static
address 192.168.6.55
netmask 255.255.255.0
gateway 192.168.6.254
bridge_ports eth0 wlan0
bridge_fd 0
bridge_stp off
파일 시스템 /etc/hostapd.conf 설정
#
# orangepi hostapd configuration example
#
# nl80211 mode
#
ssid=HBGateway
interface=wlan0
hw_mode=g
channel=40
bridge=br0
driver=nl80211
logger_syslog=0
logger_syslog_level=0
wmm_enabled=1
wpa=2
preamble=1
wpa_psk=66eb31d2b48d19ba216f2e50c6831ee11be98e2fa3a8075e30b866f4a5ccda27
wpa_passphrase=6666666666
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
auth_algs=1
macaddr_acl=0
### IEEE 802.11n
ieee80211n=1
ht_capab=[SHORT-GI-20][SHORT-GI-40][HT40+]
country_code=ID
ieee80211d=1
### IEEE 802.11n
### IEEE 802.11a
hw_mode=a
### IEEE 802.11a
### IEEE 802.11ac
ieee80211ac=1
#vht_capab=[MAX-MPDU-11454][SHORT-GI-80][TX-STBC-2BY1][RX-STBC-1][MAX-A-MPDU-LEN-EXP3]
vht_oper_chwidth=1
vht_oper_centr_freq_seg0_idx=42
### IEEE 802.11ac
# controlling enabled
ctrl_interface=/var/run/hostapd
ctrl_interface_group=0
결과 구성
ifconfig 결과
br0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.6.55 netmask 255.255.255.0 broadcast 192.168.6.255
inet6 fe80::a84f:ff:fec0:5cc8 prefixlen 64 scopeid 0x20<link>
ether aa:4f:00:c0:5c:c8 txqueuelen 1000 (Ethernet)
RX packets 8075 bytes 1468199 (1.4 MB)
RX errors 0 dropped 2 overruns 0 frame 0
TX packets 1316 bytes 162441 (162.4 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
ether 02:00:08:3d:19:71 txqueuelen 1000 (Ethernet)
RX packets 8118 bytes 1588035 (1.5 MB)
RX errors 0 dropped 41 overruns 0 frame 0
TX packets 1316 bytes 162441 (162.4 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
device interrupt 43
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 10 bytes 1612 (1.6 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 10 bytes 1612 (1.6 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
ether f8:b4:76:a0:3d:7b txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 1687 bytes 276151 (276.1 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
질문
나는 Orange Pi Zero 2에서 이 구성을 사용했으며 성공적으로 작동합니다. 이 설정을 사용하여 프로덕션 환경에서 약 100개의 장치가 실행되고 있습니다. 하지만 동일한 구성을 Orange Pi Zero 3에 적용하려고 했을 때 실패했고, 이에 대해 논의하는 포럼도 많이 찾지 못했습니다. 오렌지 파이 제로 3가 아직 비교적 새롭기 때문일까요?
이 문제를 어떻게 해결할 수 있나요? Orange Pi Zero 3의 Ubuntu 운영 체제에 버그가 많다고 들었습니다.
Ubuntu 운영 체제 다운로드:https://drive.google.com/drive/folders/1CJYrhHyyje9dEY4-t7JhcZBJfdAFBJro?usp=drive_link
Orangepizero3_1.0.2_ubuntu_jammy_desktop_xfce_linux6.1.31