BH206 SMB send to server 2016 fail

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Sing
    Junior Member
    • Nov 2023
    • 8

    #1

    BH206 SMB send to server 2016 fail

    BH206 SMB send to Windows 7, Windows 10, Windows 11 works fine. But fail to send to server 2016.
    With the same setting on BH423, it works fine to send to server 2016 SMB.
    Can some one suggest what to fine tune on server 2016 to accept BH206 SMB traffic ?
    Thanks
    At the moment I am using FTP to server 2016.
    Last edited by Sing; 11-11-2023, 03:04 AM. Reason: Additional info added
  • CP-1015
    Trusted Tech

    Site Contributor
    250+ Posts
    • Nov 2020
    • 298

    #2
    Re: BH206 SMB send to server 2016 fail

    It seems you send with SMB1 Protocol.
    Open PowerShell Ise as administrator and copy this lines in it:

    $Pro = Get-WindowsFeature FS-SMB1
    If ($Pro.InstallState -eq 'Available') {Enable-WindowsOptionalFeature -online -FeatureName SMB1Protocol}
    $1 = Get-SMBServerConfiguration | Select-Object -ExpandProperty EnableSMB1Protocol
    If (!$1) {Set-SmbServerConfiguration -EnableSMB1Protocol $true -Force}

    Then perform Enter. Maybe restart is necessary.

    Comment

    • CP-1015
      Trusted Tech

      Site Contributor
      250+ Posts
      • Nov 2020
      • 298

      #3
      Re: BH206 SMB send to server 2016 fail

      Originally posted by CP-1015
      It seems you send with SMB1 Protocol.
      Open PowerShell Ise as administrator and copy this lines in it:

      $Pro = Get-WindowsFeature FS-SMB1
      If ($Pro.InstallState -eq 'Available') {Enable-WindowsOptionalFeature -online -FeatureName SMB1Protocol}
      $1 = Get-SMBServerConfiguration | Select-Object -ExpandProperty EnableSMB1Protocol
      If (!$1) {Set-SmbServerConfiguration -EnableSMB1Protocol $true -Force}

      Then perform Enter. Maybe restart is necessary.
      I see, I'm wrong. SMB1 is on. Then test if SMB2 is enabled:
      $2 = Get-SMBServerConfiguration | Select-Object -ExpandProperty EnableSMB2Protocol
      If (!$2) {Set-SmbServerConfiguration -EnableSMB1Protocol $true -Force}

      Comment

      • CP-1015
        Trusted Tech

        Site Contributor
        250+ Posts
        • Nov 2020
        • 298

        #4
        Re: BH206 SMB send to server 2016 fail

        What error code?

        Comment

        • Sing
          Junior Member
          • Nov 2023
          • 8

          #5
          Re: BH206 SMB send to server 2016 fail

          Thanks for reply.
          [Caution Communication Error SMB Server]
          No changes after aply PowerShell command, Now I can only scan image to server 2016 throught FTP service.
          While as BH423 has no problem on SMB to server 2016.
          Happy week ends..

          Comment

          • Sing
            Junior Member
            • Nov 2023
            • 8

            #6
            Re: BH206 SMB send to server 2016 fail

            This2.gifThanks Ronny, SMB for client, FTP for server, ans USB for Pen drive.
            Right ?
            Attached Files

            Comment

            Working...