Group Details Private

Moderator

User moderators

Member List

  • RE: 23.05.3 iwinfo scan disconnects AP

    @DocHardinger I'm currently travelling so haven't completed my testing since I don't carry a Windoze machine with me. However what I found thus far is that if I slow down iwinfo by ~200ms each probe, the windows machine does not disconnect.

    The question I want to answer, is whether this tiny delay simply reduces the load on the Omega2p so it can respond to the network requests in a more timely manner. If this is the case, then my earlier hypothesis that windoze is simply less tolerant of response time variations than lesser systems, would appear to be true.

    But I am not yet prepared to make that conclusion until I have done more testing, but if this were the case then we just create a patch to add this functionality.

    posted in Omega Talk
  • RE: LuCi installation on Omega2+

    @eng_Ahmed So this is where you need to do bit of hacking. Since both luci and OnionOS want to use the same directory, we need to backup the /www directory to some place else:

    cd /
    mv www www2
    

    Which moves the current www directory and it's content to a new directory named www2.

    Now force opkg to install luci, ignoring the perceived conflict:

    opkg --force <luci package name>
    

    Now you'll have both packages installed, you just need to configure lighttpd to find luci the www directory and OnionOS in the www2 directory.

    One thing buzzing around in the back of my head is that I seem to recall (but may be wrong) there was some hardcoded /www references in the OnionOS stuff, so you may need to do the reverse and put OnionOS in /www and Luci in /www2. Just juggle them like this:

    cd /
    mv www www3
    mv www2 www
    mv www3 www2
    

    Those directory names are abitrary, you could call them something like www_luci and www_onion you just have to tell lighttpd where to find them.

    posted in Omega Talk
  • RE: LuCi installation on Omega2+

    @eng_Ahmed Take a look in /etc/opkg/distfeeds.conf, I don't have one available to me right now but you can uncomment lines 2 and 5 and then run opkg update, then try installing again. Otherwise post your distfeeds.conf here so I can see. My internet is like a yoyo right now (thanks to the earthquake on Thursday) but I login when I can.

    posted in Omega Talk
  • RE: Missing apcli0 interface with openwrt 23.05

    @Alberto-Brosich Try this configuration of network and wireless and tell me how you go ,just change only the client parameters (nothing secret in mine):

    /etc/config/network:

    config interface 'loopback'
            option device 'lo'
            option proto 'static'
            option ipaddr '127.0.0.1'
            option netmask '255.0.0.0'
            option disabled '0'
    
    config globals 'globals'
            option ula_prefix 'fd80:3b06:c6c7::/48'
    
    config device
            option name 'br-lan'
            option type 'bridge'
            list ports 'eth0'
    
    config interface 'wlan'
            option device 'br-lan'
            option proto 'static'
            option ipaddr '192.168.3.1'
            option netmask '255.255.255.0'
            option ip6assign '60'
            option disabled '0'
    
    config switch
            option name 'switch0'
            option reset '1'
            option enable_vlan '0'
    
    config interface 'wwan'
            option proto 'dhcp'
            option device 'apcli0'
            option disabled '0'
    
    config  interface 'lan'
            option device 'eth0'
            option proto 'static'
            option netmask '255.255.255.0'
            option ipaddr '192.168.4.1'
    
    

    /etc/config/wireless

    config wifi-device 'radio0'
            option type 'mac80211'
            option path 'platform/10300000.wmac'
            option channel '11'
            option band '2g'
            option htmode 'HT20'
            option disabled '0'
            option country 'ID'
    
    config wifi-iface 'default_radio0'
            option device 'radio0'
            option network 'wlan'
            option mode 'ap'
            option ssid 'dash'
            option encryption 'psk2'
            option key 'gnkdsjhfksfksgf;isyuf'
            option hidden '0'
            option disabled '1'
    
    config wifi-iface 'client'
            option device 'radio0'
            option network 'wwan'
            option mode 'sta'
            option ssid 'MarriottBonvoy'
            option key ''
            option encryption 'none'
            option ifname 'apcli0'
            option disabled '0'
            option disassoc_low_ack '0'
    
    
    posted in Omega Talk
  • RE: Missing apcli0 interface with openwrt 23.05

    @Alberto-Brosich your ssid key in your post is only 5 characters in both the sta and ap, perhaps you masked them out for the post, but if not then this will cause the issue ifup issue. Since you have selected psk2 encryption, your keys need to be between 8 and 63 characters.

    posted in Omega Talk
  • RE: LuCi installation on Omega2+

    @eng_Ahmed OnionOS OOTB uses Lighttpd as does Luci, so both can run on a bare bones web server. The main issue is how they can both coexist on the same server and how your browser request gets directed to the correct site.

    I should note that I haven't tried this specific configuration, but I do use a multisite configuration on my devices, Lighttpd is amazingly functional for such a small footprint and includes conditional processing of requests.

    Take a look at the configuration tutorial, you can see it is possible to create virtual hosts using the conditional url parsing.

    posted in Omega Talk
  • RE: Missing packages when building Custom Firmware posted in Omega Talk
  • RE: Missing packages when building Custom Firmware

    @DocHardinger Oops yes you are correct. Let me see if any of the other slow mirrors I found previously have it. Otherwise we can always build it.

    posted in Omega Talk
  • RE: Missing apcli0 interface with openwrt 23.05

    @Alberto-Brosich can you post the output of the command uci show network

    posted in Omega Talk
  • RE: Missing packages when building Custom Firmware

    @DocHardinger These are some of the reasons I build my own firmware šŸ™‚

    Their log indicates some issue with missing rust compiler.

    Report the issue on openwrt forum, some of the devs haunt that place so you might get noticed, it's broken on 24.10 as well so it'll get some attention.

    Here is a link to a mirror of the openwrt repo that seems to sync every few days, I just checked and the ipks you need are still there so you can grab them ASAP.

    posted in Omega Talk

Looks like your connection to Community was lost, please wait while we try to reconnect.