Commit e3ff04766c24
systems/aix/extra.nix
@@ -11,7 +11,9 @@
samba.settings."vincent" = {
path = "/data/share";
public = true;
- browseable = true;
+ browseable = "yes";
+ "read only" = "no";
+ "guest ok" = "yes";
writable = true;
comment = "Vincent's share";
"create mask" = "0644";
systems/common/services/samba.nix
@@ -11,9 +11,13 @@
openFirewall = true;
settings = {
global = {
+ security = "user";
+ workgroup = "WORKGROUP";
"server smb encrypt" = "required";
"server min protocol" = "SMB3_00";
"server string" = "Aix";
+ "hosts allow" = "192.168. 10.100. 127.0.0.1 localhost";
+ "hosts deny" = "0.0.0.0/0";
};
};
};