SAMBA(Openwrt)共有はファイルエクスプローラに表示されません(Windows 7)

SAMBA(Openwrt)共有はファイルエクスプローラに表示されません(Windows 7)

Samba 4.14.12の設定は次のとおりです。

[global]
        netbios name = MyRouter
        interfaces = br-lan eth0 
        server string = MyRouter
        unix charset = UTF-8
        workgroup = WORKGROUP

        bind interfaces only = yes

        #server min protocol = SMB2
        passdb backend = smbpasswd
        dns proxy = no
        socket options = IPTOS_LOWDELAY TCP_NODELAY
        use sendfile = yes
        map to guest = Bad User
        load printers = no
        printcap name = /dev/null
        disable spoolss = yes
        printing = bsd
        client signing = mandatory

        ## disable core dumps
        enable core files = no
        #smb encrypt = desired
        security = user
        mdns name = mdns


        #delete veto files = yes

######### Dynamic written config options #########
        disable netbios = yes
        smb ports = 445
        aio read size = 0
        aio write size = 0

[HDDSoft]
        path = /media/HDDSoft/HDD_DATI/+PC
        create mask = 0666
        directory mask = 0777
        read only = yes
        guest ok = no
        guest only = yes

[hdd]
        path = /media/HDDSoft/HDD_DATI
        valid users = root
        create mask = 0666
        directory mask = 0777
        browseable = no
        read only = no
        guest ok = no

ネットワークファイルエクスプローラに表示されないのはなぜですか?

ベストアンサー1

Windows 7はSMBバージョン2.1を使用します。最新バージョンのSambaはバージョン3を好みます。以前のバージョンとの互換性を確保するには、このディレクティブのコメントを外してください。

server min protocol = SMB2

さらに(私が提案したように前のコメント)W7クライアントはネットワーク上の他のデバイスを見ることができますか?それ以外の場合、デフォルトでは常にオンになっていないため、ネットワーク検索を有効にしていることを確認してください。

おすすめ記事