thorzeen

Members
  • Posts

    16
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

thorzeen's Achievements

Noob

Noob (1/14)

0

Reputation

  1. So every once in awhile I get O.C.D about something and this has turned into just that. I had this running in the post I made on page 2 but i just kept messing with it..some of you know how that goes. Anyway Let me preface this ... This is a docker network on it's own network port separate from the host system. Separate meaning: Unraid host and all network BUT one are under one router and THIS ONE docker network is under a separate switch and router. This is running atm using unraid 6.12.rc6 and Unifi UDMP 3.0.20. IF you are running VM's this is proably not for you. The only thing I really did different is how I created this network vs on page 2 and turning off bridge on both eth0 AND eth1. So first turn off bridging Then I created the network using docker run docker network create -d macvlan \ --subnet=192.168.50.0/26 \ --ip-range=192.168.50.0/27 \ --gateway=192.168.50.1 \ -o parent=eth1 proxy Under the docker settings you see the eth1 network but I did NO configuring left it blank. As I created containers I added --mac-address under "Extra Parameters" and gave them all a static IP UDMP: I let the router handle DHCP and configured it to use the same gateway as above BUT to had out leases from .33 to .62 I also directed the router to use a Pi-Hole I have set up in the network to handle DNS. As I created containers mac-address I configured DHCP reservations and DNS records in the router (even tho pi-hole does the DNS) Reason: UDMP atm floats what it see's. UDMP has had DNS issues from creation so this just kind of locks it in you my not have to do this. I was messing with this in the middle of them upgrading from 1.0.1 to 3.0.20. And of course DNS records in the pi-hole. Thats it works great no errors. Unraid Network Docker-Network Unraid routes Docker container network Docker Dash Have fun!!
  2. That was it 👍. Thanks for all of you guy's hard work, this is a fun system! P.S. I obviously miss you adding support for smb multichannel.
  3. They were set eth0=1 and br2.xx=1013-1015 Since the subnet in question was a storage network I set to 0 and metric 100 Same results: works with old and new settings on RC5 does not work on RC6
  4. Here is the diagnostics you asked for. When this happened the first time the log's said somthing about unexpected host config or something like that. I don't see it this time. I tried leaving active directory and changing group policy to accept insecure logins to no avail. This was what windows quick diag said "the remote device or resource won't accept the connection" and "The device or resource (UNRAID) is not set up to accept connections on port "The File and printer sharing (SMB)"." Downgrading and connection resumes as expected. unraid-diagnostics-20230518-1703.zip
  5. SMB shares to windows 11 stoped working. Can someone point me to directions to downgrade from rc6 to rc5? Downgraded in tools duh! Edit: Downgrade to RC5 and smb works again. Unraid would not accept login credentials no matter what I tried. Active Directory or Workstation /shrug I also changed gp to allow insecure made no difference.
  6. I am just curious are you using a custom docker network on a vlan off br0, or on a separate ethernet port ?
  7. There's a interesting discussion going on over here about this bugreports>prereleases 6.12.0-rc4 "macvlan call traces found", but not on <=6.11.x - Prereleases - Unraid Basically if your not using bridge (VM's) turn it off on br0 and br1 and eth1 shows up in docker for a custom network on v6.12.0-rc5
  8. One thing I have run into with unraid networking is it has a memory. I have not researched this, it might be a bug or it might be a safe guard. I have deleted networks that still call out for dhcp untill I literally shutdown not reboot but shutdown. Clearing arp might help ip -s -s neigh flush all
  9. Ya I am trying to remember I had to bridge something inorder to get it to show up as docker custom network and then it was definitely tied to br0. We are talking about a separate network port controled by a separate router
  10. I had that same problem i just remembered it reading your post. IIRC it has to do how br0 is configured you have to enable bridging? It has to do with how your networks are set up and i also think i had to reboot the server after configured. It seems most of "Unraid Docker" underpinning is tied to br0. It has been a frustrating ordeal to figure it out and make it play nice (docker) with UDMP on something other then br0 and then UDMP changes OS but thats another story PS. UDMP changing OS is a good thing!
  11. I am running JUST br1 network on a UDMP router all other networks are behind a different router. I remember reading that "unraid docker" uses the host netwok (br0) configured DNS server to resolve (I confirmed this by removing br1 dns entry from br0 and it left br1 in the dark) So I started adding --dns Labels are a way docker containers can reach each other using host names (vs IP addresses) when on same network in my case running "Traefik" and "Authentik" containers Docker DHCP allows docker to know which container is on the network thus "hostnames" = labels vs IP addresses. Just an easier way to configure containers that need to talk to each other