Everything posted by xcore
-
Is there a way to populate "search" option in /etc/resolv.conf?
The system is supposed to work over reboots and updates with no unintended configuration changes, that's the reason of the feature request. Is there a way to specify domainname in the Unraid configuration? Because if not, I'm back to square 1, and if it's possible, it's clearly my bad for not paying attention. Please point me to the place where it's configured in UI in the latter case. Please don't suggest putting FQDN into "settings->Identification->Server name" unless it's parsed and only host part ends up in /etc/hostname.
-
Is there a way to populate "search" option in /etc/resolv.conf?
Thank you, I put a feature request for /etc/rc.inet1.conf
-
Unraid system - add a setting to populate "search" in /etc/resolv.conf
Hi, Please consider adding some loginc into /etc/rc.inet1.conf to populate "search" option of /etc/resolv.conf.'' Thank you.
-
Is there a way to populate "search" option in /etc/resolv.conf?
I looked quickly thru /etc/rc.inet1.conf, and it does not include "search" at all. On the other hand, it seems like /etc/resolv.conf is staying more or less intact in-between upgrades/IP address changes. Question: is there a way to specify search domain list from gui, or I just edit /etc/resolv.conf and hope it does not change?
-
How to change default Docker bridge allocation?
Hi, I changed my question to answer since I figured it out. Might be it will help soneone else down the road. By default Docker assigns 172.17/16 subnet to the bridge. In my case I needed 172.17/16 for macvlan network, so I swapped default allocation to 172.18/16. In order to do this: 1. # mkdir /etc/docker && cd /etc/docker 2. # echo > /etc/docker/daemon.json <<EOF { "bip": "172.18.0.1/16", "default-address-pools": [ {"base": "172.18.0.0/16", "size": 24} ] } EOF 3. Restart Docker and enjoy your new bridge allocation. If at any point you need to observe Docker log: # tail -f /var/log/docker.log Thank you.