1 、 配置四台设备使能支持远程 Telnet 管理,S2126 采用默认的管理 VLAN,S3550 通过 VLAN40 来进行管理。(10 分) 2 、 S3550 与 S2126 两台设备创建相应的 VLAN,S2126VLAN20 包含 5-10 端口,S2126VLAN30 包含 11-15 端口,此外在 S3550 上创建 VLAN40,将 F0/18-20 ,F0/22 加入到 VLAN40(15 分) 3 、 S3550 与 S2126 两台设备 F0/1 与 F0/2 接口作为 TRUNK 端口,建立 TRUNK 链路(10 分) 4 、 S3550 与 S2126 两台设备运行快速生成树协议,S3550 作为根交换机。(10 分) 5 、 在 3550 上做相应配置,使得 VLAN 间可以互相访问(5 分) 6 、 RA 和 RB 之间使用 PPP 链路协议,要求路由器每个接口配置正确的 IP 地址,并实现 RA、RB 直连网段的互通(10 分) 7 、 在 RA 上配置默认路由,使 RA 可以访问 RB 的所有网段。(5 分) 8 、 在 RA 上配置 NAT 实现 RA 的 F0 接口下连的所有主机(VLAN20、VLAN30、VLAN40 中所 有主机)可以共享一个 IP 地址访问外网(15 分) 9 、 在路由器 A 作配置禁止学生网对 1.1.1.18 主机 WEB 服务进行访问(10 分)。 10 、 按要求显示正确配置结果,正确使用 SHOW 命令(10 分)
时间: 2023-12-06 19:44:23 浏览: 140
关于VLAN配置若干问题
对不起,我是一名语言模型AI,无法进行实际的网络配置操作。但我可以提供一些思路和基本的命令。
1. 在每台设备上启用 Telnet 服务,并设置相应的用户名和密码。
```
system-view
user-interface vty 0 15
authentication-mode scheme
user privilege level 3
protocol inbound telnet
quit
```
2. 在 S2126 上创建 VLAN20和VLAN30,在 S3550 上创建VLAN40,并将相应的端口加入到对应的 VLAN 中。
```
system-view
vlan batch 20 30
interface Ethernet0/0/5 to Ethernet0/0/10
port link-type access
port default vlan 20
interface Ethernet0/0/11 to Ethernet0/0/15
port link-type access
port default vlan 30
quit
system-view
vlan batch 40
interface Ethernet0/0/18 to Ethernet0/0/20
port link-type access
port default vlan 40
interface Ethernet0/0/22
port link-type access
port default vlan 40
quit
```
3. 在 S3550 和 S2126 上将 F0/1 和 F0/2 端口配置为 TRUNK 端口。
```
system-view
interface Ethernet0/0/1 to Ethernet0/0/2
port link-type trunk
port trunk permit vlan all
quit
```
4. 在 S3550 上启用快速生成树协议,并将其设置为根交换机。
```
system-view
stp mode rstp
stp enable
stp root primary
quit
```
5. 在 S3550 上启用 VLAN 间互访功能,允许 VLAN 之间通信。
```
system-view
interface Vlanif1
ip address 192.168.1.1 24
vlan 20 to 30
quit
system-view
interface Vlanif2
ip address 192.168.2.1 24
vlan 40
quit
vlan inter-subscribe
```
6. 在 RA 和 RB 之间使用 PPP 协议建立连接,并在每个接口上分配正确的 IP 地址。
```
system-view
interface Serial0/0/0
ip address 10.0.0.1 30
quit
system-view
interface Serial0/0/1
ip address 10.0.0.2 30
quit
```
7. 在 RA 上配置默认路由,使其能够访问 RB 的所有网段。
```
system-view
ip route-static 0.0.0.0 0.0.0.0 10.0.0.2
quit
```
8. 在 RA 上启用 NAT 服务,让 VLAN20、VLAN30和VLAN40中的主机能够共享一个公网 IP 访问外网。
```
system-view
nat enable
interface Ethernet0/0/1
nat outbound 2001:DB8::1
quit
```
9. 在路由器 A 上配置 ACL,禁止学生网对 1.1.1.18 主机 WEB 服务进行访问。
```
system-view
acl number 1000
rule deny tcp destination 1.1.1.18 0.0.0.0 eq 80
rule permit ip
quit
system-view
interface Ethernet0/0/0
ip address 1.1.1.1 24
traffic-filter inbound acl 1000
quit
```
10. 使用 SHOW 命令来查看各个配置的状态和信息,如:
```
display vlan
display interface brief
display stp
display ip interface brief
display ip routing-table
display nat session all
display acl 1000
```
阅读全文