Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

bonienl

Community Developer
  • Joined

  • Last visited

Everything posted by bonienl

  1. The original go file does not call emhttpd directly, but refers to emhttp. This was done to maintain compatability with older Unraid versions.
  2. Can you try Unraid version 6.12.0-rc7. It has some networking improvements
  3. Try the following. Edit the file /config/share.cfg on your USB device and change to shareAvahiEnabled="no" Save the update and reboot your system.
  4. Thanks, made a fix.
  5. These changes are currently under test and likely too soon for 6.12.0 release. I expect to include them in 6.12.1
  6. A fix will come in a future release. It will allow users to specify additional interfaces or IP addresses to listen to, this may include any custom tunnels.
  7. DFM does not allow you to rename a share name. Use the regular rename function under Shares to do this. Renaming a share manually on a single disk will break that share if it exists on other disks as well!
  8. No, in this case you use a custom bridge network which does network address translation. The container uses an address in the 172.20.0.x network but communicates to the outside world using address 10.0.0.211 (this is expected)
  9. Check your docker containers running on a custom network. To avoid IP overlap, you need to set a DHCP range for the custom network which assigns addresses outside to what your router is assigning.
  10. Thanks, I will look into this when time permits. Currently the focus is on Unraid 6.12, which should be released "soon"
  11. Sorry, there is an error in the latest version which needs to be corrected, but I haven't had time yet to do so.
  12. Normally I don't recommend this, because people tend to forget this in the future, but you can add the disable line in the 'go' file on your USB device. Put the line before starting the GUI (emhttp). The all setting is not used because you should enable or disable IPv6 per individual interface, it is allowed to mix between ipv4 and ipv6 depending on requirements
  13. When docker is stopped all the shim interfaces are removed, they only exist when docker is running You can, but look at my test with Unraid 6.12.0-rc5
  14. The command I gave is a temporary fixe and does not survive a reboot (you need to run it again) That is correct, loopback interface is configured for both ipv4 and ipv6. It won't interfere with docker
  15. I did a quick test, docker network create my-bridge --subnet=192.168.255.0/24 --gateway=192.168.255.1 # docker network inspect my-bridge [ { "Name": "my-bridge", "Id": "a92c67493cc6ae2dc42c23b538c6d2eae3faf0498b456a017edddad091a3d8ed", "Created": "2023-05-02T19:30:31.173992897+02:00", "Scope": "local", "Driver": "bridge", "EnableIPv6": false, "IPAM": { "Driver": "default", "Options": {}, "Config": [ { "Subnet": "192.168.255.0/24", "Gateway": "192.168.255.1" } ] }, "Internal": false, "Attachable": false, "Ingress": false, "ConfigFrom": { "Network": "" }, "ConfigOnly": false, "Containers": {}, "Options": {}, "Labels": {} } ] 268: br-a92c67493cc6: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default link/ether 02:42:9a:6e:fa:95 brd ff:ff:ff:ff:ff:ff inet 192.168.255.1/24 brd 192.168.255.255 scope global br-a92c67493cc6 valid_lft forever preferred_lft forever No IPv6 address. I am using Unraid 6.12.0-rc5 with docker version 20.10.23
  16. Yes config looks alright, docker apparently doesn't fully disable ipv6 and always create the link-local address
  17. You need to delete and recreate this network "'my-bridge" without ipv6 settings.
  18. The shim-br0 interface is created because host access to custom network is enabled. If you don't need host access, you should disable it under Docker settings I put on my todo list to include shim interfaces as well when not using ipv6. Merci You can manually disable ipv6 for this interface by doing echo 1 > /proc/sys/net/ipv6/conf/shim-br0/disable_ipv6
  19. We were typing at the same time.... Yes you should do that.
  20. A container created this interface, it won't go away when you stop docker. If you can't find out, reboot your system but don't autostart docker containers, that should clear it.
  21. br-22a634b77f67 is created by a docker container, you need to find out which container
  22. Your "regular" interface is br0, which is ipv4 only Try the following: - Re-enable IPv6 for br0 (docker and vm services must be stopped to do this) - Go to docker configuration and if any IPv6 assignment is checked, uncheck it - Reconfigure br0 back to ipv4 only again - Start docker and vm services
  23. When IPv4 only is used all the "regular" interfaces have no IPv6 assignments at all Example 217: br0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000 link/ether a0:36:9f:79:84:ac brd ff:ff:ff:ff:ff:ff inet 10.0.101.13/24 scope global br0 valid_lft forever preferred_lft forever 218: br0.2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000 link/ether a0:36:9f:79:84:ac brd ff:ff:ff:ff:ff:ff 219: br0.3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000 link/ether a0:36:9f:79:84:ac brd ff:ff:ff:ff:ff:ff 220: br0.4: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000 link/ether a0:36:9f:79:84:ac brd ff:ff:ff:ff:ff:ff 221: br0.5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000 link/ether a0:36:9f:79:84:ac brd ff:ff:ff:ff:ff:ff 222: br0.6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000 224: br1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000 link/ether a0:36:9f:79:84:ad brd ff:ff:ff:ff:ff:ff inet 10.0.101.84/24 brd 10.0.101.255 scope global dynamic noprefixroute br1 valid_lft 85402sec preferred_lft 74602sec In your picture the IPv6 assignments are to virtual interfaces (veth). Make sure your docker configuration and docker containers are not configured for ipv6. As a test disable the docker and vm services and check again.
  24. I need to test this on a system with older Unraid version to see what happens exactly. The plugin is supposed to be compatible from 6.9 onwards.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.