bonienl

Community Developer
  • Posts

    10233
  • Joined

  • Last visited

  • Days Won

    65

Posts posted by bonienl

  1. 1 hour ago, polishprocessors said:

    Aha, I think I'm having this same issue. When I reboot *everything* on unraid (including unraid itself) loses connection to the internet and my DHCP server reports unraid's IP is no longer live. I've rolled back to 6.11.3 in the meantime to see if there's something that can be changed to fix it, but it seems I'm not the only one having this issue, so hopefully it's straightforward...

     

    If using macvlan in docker settings, change it to ipvlan

     

  2. 3 minutes ago, DjJoakim said:

     

    Yes, but to be safe - here is a fresh diagnostic from just now.
    I haven't rebooted unraid since 2-3 days, and the problem has been the last 2 days.

    Also, when i try to "Check for update" on the plugin page, i get this 
     

    Checking connectivity ...
    No response, aborting!

     

     

    slave-diagnostics-20230705-1129.zip 156.17 kB · 0 downloads

     

    In your latest log there is a macvlan call trace, change docker settings to use ipvlan instead.

     

  3. 20 hours ago, realies said:

    The Wireguard changes to this release locked me out of a remote server. This is because the interfaces properties PostUp and PostDown in the WG Interfaces config section are overwritten instead of appending the new config there. In my instance,

     

    PostUp=logger -t wireguard 'Tunnel WireGuard-wg0 started';/usr/local/emhttp/webGui/scripts/update_services
    
    PostDown=logger -t wireguard 'Tunnel WireGuard-wg0 stopped';/usr/local/emhttp/webGui/scripts/update_services

     

    Should have been

    PostUp=logger -t wireguard 'Tunnel WireGuard-wg0 started';ip rule add sport 22 table main;/usr/local/emhttp/webGui/scripts/update_services
    
    PostDown=logger -t wireguard 'Tunnel WireGuard-wg0 stopped';ip rule del sport 22 table main;/usr/local/emhttp/webGui/scripts/update_services

     

    ip rule add sport 22 table 

    This is not a standard rule and not included, how is this added to the configuration?

     

  4. 43 minutes ago, Masterwishx said:

    @bonienl can you explain please how new plugin (Safe Mode) work ? 

     

    This plugin allows the user to run the GUI with or without plugins. Click on the 'X' icon to switch between modes.

    Note that plugins are only disabled for the GUI, but not other tasks or jobs they have created themselves.

    The idea of this plugin is to quickly test the GUI in case something doesn't work and determine whether a plugin is causing this.

     

    • Thanks 1
    • Upvote 1
  5. 2 hours ago, itimpi said:

    I noticed that the 6.12.2 release did not seem to have the checkbox to confirm you have read the release notes?  Is this intentional as I thought it was a good idea?

     

    This is new in 6.12.2 and only becomes visible when upgrading to the next version, e.g. 6.12.3.

     

  6. You need to read the Dynamix variables. This is done as given in the code below

     

    $docroot = $docroot ?? $_SERVER['DOCUMENT_ROOT'] ?: '/usr/local/emhttp';
    require_once "$docroot/webGui/include/Wrappers.php";
    extract(parse_plugin_cfg('dynamix',true));

     

    After this the variable $display is available as a global variable.

     

  7. 4 minutes ago, Kilrah said:

    Yup seen that, it would indeed be nice to have e.g. an "enable" checkbox for each plugin on the plugins page

     

    A true enable / disable of a plugin is not possible. Plugins may install and activate all kind of things.

    The purpose of Dynamix Safe Mode is to quickly validate GUI operation without the need to reboot the system.

     

    • Like 1