普通用户的原始套接字权限
我一直在尝试在 Windows XP SP2 下的机器中使用原始套接字。由于我的用户没有管理员权限,因此我在尝试创建 sock_raw 套接字时遇到错误。有谁知道 Active Directory 或组策略下的特定权限,以便我可以要求我们的管理员授予我相同的权限?
提前致谢, 哈里
I have been trying to use the raw socket in my machine under windows xp sp2. since there is no admin privilege for my user i am getting error while trying to create a sock_raw socket. does anyone know the specific privilege under Active directory or group policy so that i can ask our administrator to grant me the same?
thanks in advance,
Hari
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 MSDN:
您需要是管理员组的成员。没有特定的 Active Directory 权限,您只需位于该组中即可。
According to MSDN:
You need to be a member of the Administrators group. There is no specific Active Directory privilege, you just need to be in the group.
对于 Windows 2003,Microsoft 注意到了这一点,但 XP SP2 可能会禁用它。
AllowUserRawAccess
键: Tcpip\Parameters
值类型: REG_DWORD - 布尔值
有效范围: 0, 1 (False, True)
默认值: 0 (False)
描述: 此参数控制对原始套接字的访问。如果为 true,则非管理用户可以访问原始套接字。默认情况下,只有管理员有权访问原始套接字。
For Windows 2003 Microsoft notes this, however XP SP2 probably disables it.
AllowUserRawAccess
Key: Tcpip\Parameters
Value Type: REG_DWORD—Boolean
Valid Range: 0, 1 (False, True)
Default: 0 (False)
Description: This parameter controls access to raw sockets. If true, non - administrative users have access to raw sockets. By default, only administrators have access to raw sockets.