Files
CN-Educoder/README.md
2024-10-25 22:13:22 +08:00

59 lines
1.9 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# CN-Educoder
高级算机网络 Educoder 课堂实验 TDUN
对于大量重复的体力工作做一次就行了不如直接git clone
## 目录格式解释
**实验名** - repo 中答案所在文件夹,注意有的实验对应多个文件夹。
### 网络协议分析实验
- **网络协议分析** - myshixun
### 网络组网和配置实验
- **GNS3 组建小型局域网** - first
- **静态路由配置** - second
- **动态路由 RIP 与 OSPF 配置**
- **动态路由 RIP 与 OSPF 配置 1-3 关** - third1-3
- **动态路由 RIP 与 OSPF 配置 4 关** - third4
- **VLAN 间单臂路由配置** - fourth
- **DHCP 服务器配置** - fifth
### 代码类实验
- **WEB 服务器编程实现** - WEB 服务器编程实现
- **UDP Ping 程序实现** - UDP Ping 程序实现
- **基于 socket 的网络编程** - 基于 socket 的网络编程
## 使用说明
### 代码类和网络协议分析实验
对于代码类和网络协议分析实验,只需将代码或要求填写的文件内容手动复制到目标位置即可。
### 配置实验
实验环境可以访问互联网,只需按照以下步骤操作:
- 对于一般实验:
例如GNS3 组建小型局域网实验测试目录在/data/workspace/myshixun/first下则创建目录然后把对应的文件全部拷贝到该目录下
```bash
git clone https://github.com/SurvivorNo1/CN-Educoder.git
mkdir -p /data/workspace/myshixun/first
cp CN-Educoder/first/* /data/workspace/myshixun/first/
```
点击测评,下一关即可完成实验
- 特别的,动态路由 RIP 与 OSPF 配置实验,需要操作两次:
```bash
git clone https://github.com/SurvivorNo1/CN-Educoder.git
mkdir -p /tmp/third
cp CN-Educoder/third1-3/* /tmp/third/
```
点击3次测评完成前3关然后执行
```bash
cp CN-Educoder/third4/* /tmp/third/
```
---