按下表要求布置拓扑,并配置 Web 服务器(index.html 代码已给出)。访问 Web 服 务器,单击“点此调用 javascript 方法”按钮。 设备名称 端口 IP 地址 默认网关 Fa0/0 192.168.1.254/24路由器 R0 Fa0/1 192.168.2.1/24 路由器 R1 Fa0/0 192.168.3.254/24 Fa0/1 192.168.2.2/24 PC0 Fa0 192.168.1.1/24 192.168.1.254 HTTP server Fa0 192.168.3.1/24 192.168.3.254/24 index.html 代码 <html> <center><font size='+2' color='blue'> Cisco Packet Tracer</font></center> <hr>Welcome to Cisco Packet Tracer. Opening doors to new opportunities. Mind Wide Open. <p>Quick Links: <br><a href='helloworld.html'>A small page</a> <br><a href='copyrights.html'>Copyrights</a> <br><a href='image.html'>Image page</a> <br><a href='cscoptlogo177x111.jpg'>Image</a> <br><br> <b>Testing HTML pages with Javascript and Stylesheet</b> <ul> <li><button type="button" onclick="myFunction()">点此调用javascript方法</button> <script> function myFunction() { alert ("兄 der, 调用成功!"); } </script> <li><a href="index2.html">HTML page with an external javascript file (index2.html) </a> <li><a href="index3.html">HTML page with an external stylesheet file (index3.html) </a> <li><a href="index4.html">HTML page with both external javascript and stylesheet files (index4.html) </a> <li><a href='image.html'>Image page: Test for a previously saved file with the image file in the directory of the pkt file</a> <li><a href='image2.html'>Image page: Test for with the image file imported in the PT Server</a> </html>
时间: 2023-08-14 11:15:07 浏览: 2046
好的,这个问题我可以回答。根据题目要求,需要按照下表布置网络拓扑,并配置 Web 服务器:
| 设备名称 | 端口 | IP 地址 | 默认网关 |
| -------- | ---- | -------- | -------- |
| 路由器 R0 | Fa0/0 | 192.168.1.254/24 | - |
| | Fa0/1 | 192.168.2.1/24 | - |
| 路由器 R1 | Fa0/0 | 192.168.3.254/24 | - |
| | Fa0/1 | 192.168.2.2/24 | - |
| PC0 | Fa0 | 192.168.1.1/24 | 192.168.1.254 |
| HTTP server | Fa0 | 192.168.3.1/24 | 192.168.3.254/24 |
此外,还需要在 HTTP server 上部署提供的 index.html 文件。配置方法如下:
1. 在路由器 R0 上配置 Fa0/0 接口的 IP 地址和子网掩码:
```
interface Fa0/0
ip address 192.168.1.254 255.255.255.0
no shutdown
```
2. 在路由器 R0 上配置 Fa0/1 接口的 IP 地址和子网掩码:
```
interface Fa0/1
ip address 192.168.2.1 255.255.255.0
no shutdown
```
3. 在路由器 R1 上配置 Fa0/0 接口的 IP 地址和子网掩码:
```
interface Fa0/0
ip address 192.168.3.254 255.255.255.0
no shutdown
```
4. 在路由器 R1 上配置 Fa0/1 接口的 IP 地址和子网掩码:
```
interface Fa0/1
ip address 192.168.2.2 255.255.255.0
no shutdown
```
5. 在 PC0 上配置 IP 地址和默认网关:
```
ip address 192.168.1.1 255.255.255.0
ip default-gateway 192.168.1.254
```
6. 在 HTTP server 上配置 IP 地址和默认网关:
```
ip address 192.168.3.1 255.255.255.0
ip default-gateway 192.168.3.254
```
7. 在 HTTP server 上部署 index.html 文件。可以使用 TFTP 或 FTP 等文件传输协议将文件上传到服务器上。
8. 在浏览器中输入 HTTP server 的 IP 地址(例如 http://192.168.3.1),即可访问 Web 服务器。在页面中单击“点此调用 javascript 方法”按钮,即可调用 JavaScript 方法并弹出提示框。
希望这个回答能够帮到您。如果您有其他问题,欢迎随时向我提问。
阅读全文