I have a Windows 10 host, on which I run guest VMware Ubuntu 22.04.
Samba is installed on the guest. I've added the [homes] section in /etc/samba/smb.conf
Code:
[homes]
comment = Home Directories
browseable = yes
path = /home/me
valid users = me
read only = no
Also set a samba password:
Code:
(echo me; echo me) | sudo smbpasswd -s -a me
sudo systemctl restart smbd
But I cannot log in from the host to samba.
wireshark recorded on the guest, shows the host resets the connection:
How can I fix it? Which more information is needed?
Thanks