Enterprise Network Setup with Windows Server

A step-by-step guide to setting up an enterprise-level network environment using Hyper-V, Windows 10, and Windows Server 2022. Includes AD domain setup, DHCP, DFS, PowerShell automation, and more.

View the Project on GitHub hexwarrior6/Enterprise-Network-Setup-with-Windows-Server

English 简体中文

使用 Windows Server 构建企业网络环境

GitHub 仓库 Gitee 仓库 CSDN 专栏阅读量 许可证


一个完整的实验指南,教你从零开始搭建一个完整的企业网络环境,包括以下组件:

graph TB
    subgraph 域控制器 01
        DC01[AD, DNS, DHCP]
    end

    subgraph 域控制器 02
        DC02[AD, DNS, DHCP]
    end

    subgraph 虚拟交换机
        VS[虚拟交换机]
    end

    subgraph 客户端 01
        PC01[客户端]
    end

    subgraph 客户端 02
        PC02[客户端]
    end

    DC01 -- "网络连接" --> VS
    DC02 -- "网络连接" --> VS
    PC01 -- "网络连接" --> VS
    PC02 -- "网络连接" --> VS

    style VS fill:#eef,stroke:#333,stroke-width:2px  
    style DC01 fill:#f9f,stroke:#333,stroke-width:2px
    style DC02 fill:#f9f,stroke:#333,stroke-width:2px
    style PC01 fill:#efe,stroke:#333,stroke-width:2px
    style PC02 fill:#efe,stroke:#333,stroke-width:2px

该项目详细指导你如何从头开始配置一个模拟的企业网络环境,包括域服务、用户管理、文件共享以及通过 PowerShell 实现自动化。


📚 目录

  1. 需求与前提条件
  2. 开始之前
  3. 章节列表
  4. 贡献 / 反馈建议

需求 & 前提条件


开始之前

  1. 在你的 Windows 10 设备上启用 Hyper-V
  2. 下载 Windows Server 2022 ISO 和 Windows 10 ISO
  3. 按顺序阅读每个文件夹中的指南并操作

章节列表

章节 主题
01 🖥️ 使用 Hyper-V 创建虚拟机
02 🔐 Active Directory 域服务安装配置
03 📡 DHCP 服务器配置
04 📁 DFS(分布式文件系统)实现文件共享
05 👥 AD 用户与组管理 + PowerShell 自动化

贡献 / 反馈建议

如果你有任何建议、发现错误或希望贡献新的章节,请随时转到 github 仓库 提交 Issues 或 Pull Requests!


License

本项目根据 CC BY-SA 4.0 许可证获得许可。