1. 布置拓扑,展示拓扑图。 要求:网络共划分为 5 个网段,共设置 3 台 DNS 服务器,1 台 Web 服务器。 example.edu 域由学校的 authority.example.edu服务器负责解析,学校 WWW站点对外域 名为 www.example.edu,其有一个别名 server.example.edu。外部主机 PC1想请求域名解 析,需先请求本地 DNS服务器,再请求根域名服务器,注意观察实验过程。其 IP地址 规划如下表所示。 设备名称 端口 IP地址 网关 备注 路由器 School Fa0/0 10.0.0.1/24 Se0/0/0(DCE) 10.1.0.1/24 需配置时钟频率 路由器 Internet Fa0/0 10.2.0.1/24 Se0/0/0 10.1.0.2/24 Se0/0/1(DCE) 10.3.0.1/24 需配置时钟频率 路由器 Example Se0/0/0 10.3.0.2/24 Fa0/0 10.4.0.1/24 PC1 Fa0 10.0.0.2/24 10.0.0.1/24 Local DNS Server Fa0 10.0.0.3/24 10.0.0.1/24 Root DNS Server. Fa0 10.2.0.2/24 10.2.0.1/24 authority.example.edu Fa0 10.4.0.2/24 10.4.0.1/24 server.example.edu Fa0 10.4.0.3/24 10.4.0.1/24
时间: 2023-08-20 14:07:20 浏览: 113
好的,以下是该网络的拓扑图:
```
+-----------------------+
| School Router |
| (10.0.0.1) |
| Fa0/0 |
+-----------+-----------+
|
|
|
|
|
|
+-------------------+---------------------+
| | |
+----------+---------+ +-------+--------+ +---------+-------+
| Local DNS Server | | Root DNS Server | | authority.example |
| (10.0.0.3) | | (10.2.0.2) | | (10.4.0.2) |
| Fa0 | | Fa0 | | Fa0 |
+----------+---------+ +-------+--------+ +---------+-------+
| | |
| | |
| | |
+----------+---------+ +-------+--------+
| PC1 | | server.example |
| (10.0.0.2) | | (10.4.0.3) |
| Fa0 | | Fa0 |
+-------------------+ +-----------------+
```
其中,School Router连接了本地网络10.0.0.0/24和Internet网络10.1.0.0/24,Root DNS Server连接了Internet网络10.2.0.0/24和authority.example.edu网络10.4.0.0/24,authority.example.edu网络中的server.example.edu则连接了authority.example.edu网络10.4.0.0/24和PC1所在的本地网络10.0.0.0/24。本地DNS服务器连接了PC1所在的本地网络10.0.0.0/24。
阅读全文