Why is my samba4 [homes] share not browsable?

85

If you are trying to browse them from the samba server then the problem is the lo interface binding.

Using interfaces = lo,eth0 will only bind 127.0.0.1 and eth0 IP. For some reason loopback access is done via 27.0.1.1.

Either add 127.0.1.1/8 to interfaces or remove bind interfaces only = yes

interfaces = 127.0.1.1/8 lo,eth0
bind interfaces only = yes
Share:
85
user3284661
Author by

user3284661

Updated on September 18, 2022

Comments

  • user3284661
    user3284661 over 1 year

    I have a very heavy page and I am trying to better engineer the order in which elements are loaded, preload some stuff and strategically leave other things unloaded.

    Chrome seems to load the bottom of the page before the top of the page? This seems counter intuitive and I wonder if I am doing anything to cause this. Is this normal behavior? Will Chrome load elements by the order they appear in the CSS or by the order they are called in HTML?

  • Gabriel Syme
    Gabriel Syme over 11 years
    Unfortunately I am trying to connect from another computer (both a Mac and a Windows machine). Could the lo interface binding affect this?