bonienl

Community Developer
  • Posts

    10233
  • Joined

  • Last visited

  • Days Won

    65

Posts posted by bonienl

  1. This involves the GUI only, any other activities a plugin may do, such as cron jobs, background tasks, package installations or scripting are not touched. This requires the plugin to be uninstalled to remove them.

     

  2. 8 minutes ago, Squid said:

    Nice.  But, doesn't stop any running scripts a plugin might install.  And doesn't handle if anything is installed outside of $docroot/plugins....

     

    True, that’s why I say “mimics” safe mode, because for complete disabling you would need to uninstall the plugin.

    The idea here is when the GUI has “issues” you can quickly disable the plugins to see if that resolves it without rebooting your system in safe mode.

     

  3. 13 hours ago, BOGu said:

     

    Yes, I'm having this problem too! I am a Chinese user

     

    Please update the chinese language pack to the latest version.

     

    Or remove the language pack and install again, this will automatically update to the latest version.

     

    image.png

     

    • Like 1
    • Upvote 2
  4. ssh is restarted because your system looses network connection halfway.

     

    Jun 25 17:36:33 narvi kernel: bond0: (slave eth0): link status definitely down, disabling slave
    Jun 25 17:36:33 narvi kernel: device eth0 left promiscuous mode
    Jun 25 17:36:33 narvi kernel: bond0: now running without any active interface!
    Jun 25 17:36:33 narvi kernel: br0: port 1(bond0) entered disabled state
    Jun 25 17:36:33 narvi dhcpcd[1345]: br0: carrier lost
    Jun 25 17:36:33 narvi dhcpcd[1345]: br0: deleting route to 192.168.1.0/24
    Jun 25 17:36:33 narvi dhcpcd[1345]: br0: deleting default route via 192.168.1.1

     

    Disable bonding in the network configuration and see if that solves the issue.

    It might also be that the plugin "tips and tweaks" interferes. Uninstall this plugin and retest.

     

  5. 2 minutes ago, oeci said:

    Thanks for your reply. I would indeed welcome it if it was possible to set an absolute value like 100 GB. And for those who prefer a relative value in form of a percentage unraid could keep accepting those as well.

     

    Both absolute values or percentage values can be entered, but as explained earlier the GUI displays the value as a percentage

     

  6. 28 minutes ago, TheOgre said:

    Just wanting to tag onto this thread, even after switching to ipvlan, the plugin is still detecting macvlan traces. Any way to diagnose why or anything else I need to do?

     

    The plugin checks the content of the syslog, you would need to reboot your server to clear the reported occurrences.

     

  7. None of the services can bind to the IPv6 address (I x'd the address)

     

    Jun 24 01:02:35 Pikachu sshd[1764]: error: Bind to port 22 on 2406:e001:1:df07:5ebb:2cff:xxxx:xxxx failed: Cannot assign requested address.
    Jun 24 01:02:37 Pikachu ntpd[1797]: bind(22) AF_INET6 2406:e001:1:df07:5ebb:2cff:xxxx:xxxx#123 flags 0x11 failed: Cannot assign requested address
    Jun 24 01:02:54 Pikachu rpcbind[6026]: cannot bind 2406:e001:1:df07:5ebb:2cff:xxxx:xxxx on udp6: Cannot assign requested address
    Jun 24 01:02:56 Pikachu nginx: 2023/06/24 01:02:56 [emerg] 6198#6198: bind() to [2406:e001:1:df07:5ebb:2cff:xxxx:xxxx]:80 failed (99: Cannot assign requested address)

     

    DHCP is also complaining about not getting an IPv6 address

    Jun 24 01:02:35 Pikachu rc.inet1: can't obtain IP address, continue polling in background on interface br0
    Jun 24 01:02:35 Pikachu rc.inet1: dhcpcd -b -q -n -t 10 -h Pikachu -6 br0

     

    Do have any lines in your go file or somewhere else which disables IPv6?

     

    I would need diagnostics to see more details

  8. 16 hours ago, TBT said:

    I use Zerotier, same problems as Tailscale.

     

    You need to disable "netbios" to make SMB work over tunnel interfaces.

    The service binding to interfaces reveals the shortcomings of netbios: (1) it does not support IPv6 and (2) it wants to use broadcast addresses.

    Hence tunnels are excluded from Samba when netbios is enabled to prevent errors.

     

    Here is a picture of using SMB over tailscale

    image.png

  9. These settings actually relate to netbios and are okay to use.

    You need to enable netbios to make this work.

    There are a number of downsides using netbios:

    • netbios is not secure
    • netbios does not support ipv6
    • netbios uses broadcast, this doesn’t work over remote tunnels, like wireguard or tailscale

     

    • Thanks 1