Null 세션 공유가 Windows 7에서 작동하지 않습니다.

Null 세션 공유가 Windows 7에서 작동하지 않습니다.

Windows 7 SP 1 Ultimate(IP 192.168.11.100)를 실행하는 컴퓨터가 있습니다. 나는널 세션 공유(명명 된WIA_RIS_SHARE) 을 위한Serva PXE 서버네트워킹을 통해 Windows XP를 설치할 수 있습니다.

에 따르면해당 문서, 내가 만들었다:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters\NullSessionShares = "WIA_RIS_SHARE"
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\LSA\restrictanonymous = 0

나는 그것을 한 번에했다윈도우XP SP3(IP 192.168.11.2), 정상적으로 작동하는 것 같습니다.

다음은 동일한 LAN에 있는 다른 컴퓨터에서 확인하는 방법입니다.

C:\>net view \\192.168.11.2
Shared resources at \\192.168.11.2
Resource name           Type    Used ad Comments
-----------------------------------------------------------------------------
WIA_RIS_SHARE       Disk

그러나 Win7 시스템에서 이를 확인할 때:

C:\>net view \\192.168.11.100
System error 5.
Access denied.

내가 아는 한 Null Share Session은 공유 리소스의 탐색(열거)을 허용해야 한다고 가정하므로 이것이 적절한 테스트라고 생각합니다.

내가 또 무엇을 해야 할 수 있을까?Null 세션 공유 활성화윈도우 7에서?

답변1

내 생각에는 당신이 읽지 않은 것 같아요Serva의 NSS 문서바르게; "를 클릭해 주세요.윈도우 7"장.

클라이언트가 RIS인 경우 Windows 7 호스팅 NSS의 경우표시된 단계는 다음과 같습니다.

1. Enabling Anonymous Logon:

   1. Run the Control Panel

   2. Navigate to:

   Network and Internet\Network and Sharing Center\Change advanced sharing settings\

   Select:

   Turn off password protected sharing

   3. Save changes and close the Control Panel.

2. Creating the Share:

    1. From File Explorer right click the TFTP root directory and select "Properties."

    2. Select the "Sharing" tab and click [Advanced Sharing...]

    3. Check "Share this folder", set "Share Name" = WIA_RIS_SHARE and click [Permissions]

    4. Remove all users/groups then add the user "Guest" with "Read" rights only and 
       click [OK] twice.

    5. Back at the Properties dialog now select the "Security" tab and click [Edit...]

    6. Click [Add..], enter the user "Guest" and click [OK]

    7. Selecting the user "Guest" at the "Group or user names:" pane edit its permissions 
       at the "Permissions for Guest" pane. Make sure you check the "Allow" column with 
       "Read & execute", "List folder contents" and, "Read" permissions, then click 
       [OK] twice.

클라이언트용 NSS를 생성해야 하는 경우(RIS 이외) "LANMAN1.0", "LANMAN1.2" 등과 같은 이전 방언이 필수로 필요한 경우 호스트에서 해당 방언을 활성화하려면 추가 단계가 필요할 수 있습니다. 즉

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters\NullSessionShares = "WIA_RIS_SHARE"
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\LSA\restrictanonymous = 0

귀하의 경우에는 RIS 클라이언트를 부팅할 때 이러한 추가 단계가 필요하지 않습니다...

관련 정보