标签: yes

2 篇文章

FreeNAS禁用IPv6 和 jails 启用IPv6
禁用IPv6 /etc/src.conf 文件中添加参数 WITHOUT_IPV6="YES"   jails 启用IPv6 rc.conf中参数 修改 ipv6_activate_all_interfaces="YES" rtsold_enable="YES" 到 ifconfig_epair0b_ipv6="inet6 accept_rtadv auto_linklocal"   相关资料: https://forums.freebsd.org/threads/completely-disable-ipv6-in-freebsd-10.50569/ https://www.ixsystems.com/community/threads/iocage-and-ipv6-autoconf.61700/
如何禁用samba身份验证
2019-11 from--https://askubuntu.com/questions/1189945/how-to-disable-samba-authentification 我需要创建一个没有密码身份验证的Samba共享。服务正在运行,文件夹可用,但只有密码。这是配置 [global] workgroup = workgroup security = user [share] comment = share_test path = /samba-share/share writable = yes guest ok = yes read only = no public = yes [guest] comment = test_guest path = /samba-share/guest force user = nobody …