Skip to content
Snippets Groups Projects
  1. Jan 09, 2023
  2. Jan 07, 2023
    • Linus Lüssing's avatar
      gluon-l3roamd: site: make node_client_prefix6 optional+deprecated · b3a9221b
      Linus Lüssing authored
      
      The site.node_client_prefix6() is only used internally by the l3roamd
      protocol. Therefore it is unnecessary to expose it to an administrator.
      
      Instead, if node_client_prefix6 is unspecified in the site, generate an
      IPv6 Unique Local Address prefix from the site domain_seed.
      
      This updates the site documentation as well and marks this setting as
      both optional and deprecated.
      
      Note: If you had the node_client_prefix6 specified before and want to
      use the new autogeneration from the domain_seed instead then this will
      break compatibility and will need a gluon-scheduled-domain switch.
      
      Signed-off-by: default avatarLinus Lüssing <linus.luessing@c0d3.blue>
      b3a9221b
  3. Jan 04, 2023
  4. Jan 03, 2023
  5. Jan 02, 2023
  6. Dec 27, 2022
  7. Dec 15, 2022
  8. Dec 13, 2022
  9. Dec 10, 2022
  10. Dec 09, 2022
  11. Nov 08, 2022
  12. Oct 31, 2022
  13. Sep 12, 2022
  14. Aug 15, 2022
  15. Aug 10, 2022
  16. Aug 09, 2022
    • lemoer's avatar
      gluon-respondd: fix missing section "wifi" for request type "neighbours" (#2599) · 70951318
      lemoer authored
      The below mentioned commit introduced a regression, that the "wifi"
      section of the request type "neighbours" was empty:
      
          ~# gluon-neighbour-info -d ::1 -r neighbours | ffh_pretty_json
          {
            "wifi": [
            ],
            ...
          }
      
      After this commit, the section (correctly) looks like this:
      
          root@UFU-FWH-A272-Tresckowstr-GemR-vorne:~# gluon-neighbour-info -d ::1 -r neighbours | ffh_pretty_json
          {
            "wifi": {
              "ca:38:7e:42:5f:21": {
                "neighbours": {
                  "fe:9f:4d:01:ea:e1": {
                    "noise": -102,
                    "inactive": 50,
                    "signal": -84
                  },
                  "fe:df:b9:84:37:51": {
                    "noise": -102,
                    "inactive": 20,
                    "signal": -73
                  }
                }
              }
            },
            ...
          }
      
      The issue was due to the fact, that the iteration over the (mesh) wifi interfaces
      was broken. The code was assuming, that the section
      
          config interface 'mesh_radio0'
                  option proto 'gluon_mesh'
      
      in /etc/config/network contains an option "ifname", which it does not.
      The ifname property is only stored in the corresponding section in
      /etc/config/wireless:
      
          config wifi-iface 'mesh_radio0'
                  option ifname 'mesh0'
                  option network 'mesh_radio0'
                  option mode 'mesh'
                  ...
      
      Therefore, we now iterate over wifi-ifaces in /etc/config/wireless, that
      have the mode 'mesh' instead. This resolves the issue.
      
      Fixes 0f1fa243
      Unverified
      70951318
Loading