Probably because it's been 3 months since the build, there seems to be a problem with the availability of the snapshot packages (e.g. not being able to install luci).
It's normal that snapshots do not come with LUCI installed. You'll have to ssh into the Hub and install it manually from there. Only stable versions ship with LUCI.
FYI
I believe you can use the firmware selector to pick the onhub
& under customise > Installed Packages you can add luci
so you can use it to download a snapshot image with luci
i think snapshot is still using 5.15, need to do a selfbuild.
failed to boot when i tried, tplink has no uart pin, so i dont know what is going on,
in my test tplink onhub will be able to boot only if using kernel 5.10 or 5.15,
so far i tested with 5.4 and 6.1, it failed.
edit: by failed i mean, nothing happened, no led indicator, led is turned off completely.
correct I just sysupgraded to
SNAPSHOT (r23147-4b8b2f4f97)
2023-05-28T18:22:23.000000Z
& it's still on 5.15
6.1 is very early days
better to wait until they switch the snapshot
as when it is in a working state they will do this
Thank you to everyone who help make this project a huge success!!! I am loving openwrt because of the great community support from people like you!!!
I have a question about vlans on this tplink onhub.
For starters, @dadogroove I am now using your latest 23.05 image with CT drivers. Thank you it seems to work just fine but why do you include the "SWITCH" section under "NETWORKING" when I thought this devices is supposed to use only DSA to configure the vlans?
I am trying to use it as a "dumb access point" (as OneMarcFifty calls it) and for other devices I just bridge the physical ports, use DSA to assign VLANS and then attach wireless ssid to the interface. But for this Onhub, I am running into lots of problems because there is already VLAN1 and VLAN2 assigned under SWITCH. I don't know which physical devices to bridge and wether I can delete VLAN1 and VLAN2. WHen I try, it always breaks.
Does anyone have good luck creating wireless access to VLANs on this thing??? Even if we can't bridge, that will be fine for me. I can use 1 dedicated physical port to hold all the VLAN traffic. With the other port I can keep as spare or just disable, so it's fine.
@UniqueNoSpaces , My builds are very close to ACwifidudes with a few added extras. Do the stock 23.05 images work the way you'd like? I would imagine the switch setup is configured by the dts files for each individual device. I do not make any changes at that level.
an easy script to setup tplink onhub as dump AP
do change the password fields from password
and location wifi etc from a factory reset state
uci del system.ntp.enabled
uci del system.ntp.enable_server
uci set system.cfg01e48a.zonename='Australia/Melbourne'
uci set system.cfg01e48a.timezone='AEST-10AEDT,M10.1.0,M4.1.0/3'
uci set system.cfg01e48a.hostname="$(nslookup $(ifstatus wan | jsonfilter -e '@["ipv4-address"][0].address') | awk '/name/{print $4}' | sed 's/.\{4\}$//')"
uci commit system
uci del network.cfg0a1ec7
uci set network.cfg091ec7.vid='1'
uci set network.cfg061ec7.ports='1 2 6t'
uci del network.cfg050f15
uci del network.cfg030f15.ports
uci add_list network.cfg030f15.ports='eth0.1'
uci del network.wan
uci del network.wan6
uci del network.lan.ipaddr
uci del network.lan.netmask
uci del network.lan.ip6assign
uci set network.lan.proto='dhcp'
uci set network.lan.delegate='0'
uci set network.lan6=interface
uci set network.lan6.proto='dhcpv6'
uci set network.lan6.device='@lan'
uci set network.lan6.reqaddress='try'
uci set network.lan6.reqprefix='no'
uci commit network
uci set network.cfg061ec7.ports='0t 1 2'
uci commit network
uci del firewall.cfg02dc81.network
uci set firewall.cfg02dc81.network='lan lan6'
uci del firewall.cfg01e63d.synflood_protect
uci commit firewall
/etc/init.d/dnsmasq disable
/etc/init.d/dnsmasq stop
uci del dhcp.lan
uci del dhcp.wan
uci del dhcp.odhcpd
uci set dhcp.lan=dhcp
uci set dhcp.lan.interface='lan'
uci set dhcp.lan.ignore='1'
uci add_list dhcp.lan.ra_flags='none'
uci commit dhcp
/etc/init.d/odhcpd disable
/etc/init.d/odhcpd stop
uci set wireless.@wifi-device[0].country='AU'
uci set wireless.@wifi-device[0].htmode='HT40'
uci set wireless.@wifi-device[0].disabled=0
uci set wireless.@wifi-device[0].channel='auto'
uci set wireless.@wifi-iface[0].ssid='OnHub'
uci set wireless.@wifi-iface[0].encryption='psk2+ccmp'
uci set wireless.@wifi-iface[0].key='password'
uci set wireless.@wifi-iface[0].wpa_disable_eapol_key_retries='1'
uci set wireless.@wifi-device[1].country='AU'
uci set wireless.@wifi-device[1].htmode='VHT80'
uci set wireless.@wifi-device[1].disabled=0
uci set wireless.@wifi-device[1].channel='auto'
uci set wireless.@wifi-iface[1].ssid='ONHUB'
uci set wireless.@wifi-iface[1].encryption='psk2+ccmp'
uci set wireless.@wifi-iface[1].key='password'
uci set wireless.@wifi-iface[1].wpa_disable_eapol_key_retries='1'
uci set wireless.@wifi-device[2].country='AU'
uci set wireless.@wifi-device[2].htmode='VHT80'
uci set wireless.@wifi-device[2].disabled=1
uci set wireless.@wifi-device[2].channel='auto'
uci set wireless.@wifi-iface[2].ssid='OnHub'
uci set wireless.@wifi-iface[2].encryption='psk2+ccmp'
uci set wireless.@wifi-iface[2].key='password'
uci set wireless.@wifi-iface[2].wpa_disable_eapol_key_retries='1'
uci commit wireless
echo -e "password\npassword" | (passwd root)
echo "# Put your custom commands here that should be executed once" > /etc/rc.local
echo "# the system init finished. By default this file does nothing." >> /etc/rc.local
echo "" >> /etc/rc.local
echo "/etc/init.d/dnsmasq disable" >> /etc/rc.local
echo "/etc/init.d/dnsmasq stop" >> /etc/rc.local
echo "/etc/init.d/odhcpd disable" >> /etc/rc.local
echo "/etc/init.d/odhcpd stop" >> /etc/rc.local
echo "exit 0" >> /etc/rc.local
uci add system led # =cfg038bba
uci set system.@led[-1].sysfs='red:status-0'
uci set system.@led[-1].trigger='netdev'
uci set system.@led[-1].dev='phy2-ap0'
uci add_list system.@led[-1].mode='link'
uci add_list system.@led[-1].mode='tx'
uci add_list system.@led[-1].mode='rx'
uci add system led # =cfg048bba
uci set system.@led[-1].sysfs='red:status-3'
uci set system.@led[-1].trigger='netdev'
uci set system.@led[-1].dev='phy2-ap0'
uci add_list system.@led[-1].mode='link'
uci add_list system.@led[-1].mode='tx'
uci add_list system.@led[-1].mode='rx'
uci add system led # =cfg058bba
uci set system.@led[-1].sysfs='green:status-1'
uci set system.@led[-1].trigger='netdev'
uci set system.@led[-1].dev='phy1-ap0'
uci add_list system.@led[-1].mode='link'
uci add_list system.@led[-1].mode='tx'
uci add_list system.@led[-1].mode='rx'
uci add system led # =cfg068bba
uci set system.@led[-1].sysfs='green:status-4'
uci set system.@led[-1].trigger='netdev'
uci set system.@led[-1].dev='phy1-ap0'
uci add_list system.@led[-1].mode='link'
uci add_list system.@led[-1].mode='tx'
uci add_list system.@led[-1].mode='rx'
uci add system led # =cfg078bba
uci set system.@led[-1].sysfs='blue:status-2'
uci set system.@led[-1].trigger='netdev'
uci set system.@led[-1].dev='phy0-ap0'
uci add_list system.@led[-1].mode='link'
uci add_list system.@led[-1].mode='tx'
uci add_list system.@led[-1].mode='rx'
uci add system led # =cfg088bba
uci set system.@led[-1].sysfs='blue:status-5'
uci set system.@led[-1].trigger='netdev'
uci set system.@led[-1].dev='phy0-ap0'
uci add_list system.@led[-1].mode='link'
uci add_list system.@led[-1].mode='tx'
uci add_list system.@led[-1].mode='rx'
uci commit system
reboot
Hi dadogroove, thank you. Yes the 23.05 stock image has the same menus options as yours: DSA and SWITCH.
It;s confusing because those are both 2 ways for setting the same thing: vlans for my wifi access points. Before I would just use to use DSA or SWITCH and it was worked fine but on this image i see both and no matter what combination i try i can never get wifi access to my vlans. I tried just changing just DSA, just SWITCH, and then both. no luck.
HAs anybody had success to make wifi access to VLANs on this onhub with v23.xx openwrt?
I have has instances where it seems the save profile from when sysupgrade with settings
seems to keep coming back
it's like it should be erase after use but if you factory reset
it still finds this info from last time you did it
I had to erase all of the flash as show somewhere in this thread & that solved the problem
I'm sure I have had to use the reset button a few times to get it to end up with the erased state
now I just don't upgrade with keeping setting
I was unable to repeat this when I did try tho
I also think this maybe due to it's current snapshot status
opkg update - updates the package list
&& - if first command was successful continues to the next one
opkg install luci - Pretty self explanatory here I'd guess :slight_smile:
(downloads and installs 'luci' and packages needed by luci)
I have. Last time I ran that I had several errors so then I tried to install older versions had the same problems. I am going to give it a few more tries. Thanks for the reply. Have a great day.
when you are using snapshots
you have to install the programs just after you get the snapshot
the programs will be available for a while
so you must update to the current snapshot & then install programs
not install now & a month later
because the matching programs will be over written with new by then
That’s the other problem I have not been able to install anything. The snapshot says it’s read only then my after a short amount of time the internet quits working then after a reboot it’s completely inaccessible. I tried to use an older snapshot and I could not get it to work at all.
I'm experiencing the exact same issue using stock OpenWRT build and following @ryjelsum's instructions. @dadogroove Did you find a resolution for it? @ryjelsum did you get a chance to better document the bluetooth setup process? TIA guys!