> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/zh/ports-and-services/smb-445/smbserver-smb-tool.md).

# SMBServer（SMB 工具）

> **SMB（服务器消息块）** 是一种主要用于 Windows 网络的文件共享协议。它允许客户端访问服务器上的文件、打印机和其他资源。 `smbserver` 会在一台机器上创建一个 SMB 服务器，并通过网络公开本地目录。这对于 SMB 配置测试和受控的安全评估很有用。

### SMB 文件共享

```bash
smbserver.py share $(pwd) -smb2support
```

* **`共享`**：SMB 共享名称。
* **`$(pwd)`**：您希望共享的当前目录。
* **`-smb2support`**：用于启用 SMB2 支持的选项（SMB 协议的增强版本）。

### **访问 SMB 共享**

启动 SMB 服务器后，您可以使用以下地址从另一台设备访问您的共享：

```bash
//10.10.10.10/share/file
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/zh/ports-and-services/smb-445/smbserver-smb-tool.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
