Dans certaines situations il peut être utile de disposer d'un partage qui ne nécessite pas de mot de passe pour y accéder et donc ouvert à tous. Nous allons donc voir comment mettre en place un serveur Samba sur Debian en mode sans authentification.
root@host:~# apt-get install samba
root@host:~# mkdir /share
root@host:~# chown -R nobody:nogroup /share/
root@host:~# chmod -R 777 /share/
[global]
workgroup = WORKGROUP
server string = serv01
security = user
map to guest = bad user
[share]
browseable = yes
path = /share
read only = no
guest ok = yes
create mask = 777
root@host:~# testparm
root@host:~# systemctl restart smbd; systemctl restart nmbd
Contact :