用ensp1.按拓扑配置主机名和IP地址 2.总公司配置单臂路由使VLAN互通,子接口ID和VLAN ID一致,IP地址网络第一个可用地址,做相应的配置。 3.分公司配置三层交换使VLAN间互通,VLANIF 的IP地址网络第一个可用地址,三层交换机使用VLANIF 100和R2通信,做相应配置 4.R1、R2 配置静态路由,3LSW配置默认路由使全网互通 5.测试PC机之间的连通性
时间: 2023-06-15 11:03:13 浏览: 281
好的,我会依照您提供的步骤为您进行解答。
1. 根据拓扑图配置主机名和IP地址:
| 设备名称 | 接口 | IP地址 | 子网掩码 |
| --- | --- | --- | --- |
| PC1 | Ethernet0 | 192.168.1.1 | 255.255.255.0 |
| PC2 | Ethernet0 | 192.168.2.1 | 255.255.255.0 |
| R1 | Ethernet0/0 | 192.168.1.254 | 255.255.255.0 |
| R1 | Ethernet0/1 | 10.0.0.1 | 255.255.255.0 |
| R2 | Ethernet0/0 | 10.0.0.2 | 255.255.255.0 |
| R2 | Ethernet0/1 | 192.168.2.254 | 255.255.255.0 |
| 3LSW | VLANIF 100 | 192.168.3.1 | 255.255.255.0 |
2. 总公司配置单臂路由使VLAN互通,子接口ID和VLAN ID一致,IP地址网络第一个可用地址,做相应的配置。
在 R1 上进行如下配置:
```
interface Ethernet0/0
no shutdown
interface Ethernet0/0.1
encapsulation dot1q 1 native
ip address 192.168.1.1 255.255.255.0
interface Ethernet0/0.2
encapsulation dot1q 2
ip address 10.0.0.1 255.255.255.0
```
在 R2 上进行如下配置:
```
interface Ethernet0/1
no shutdown
interface Ethernet0/1.2
encapsulation dot1q 2
ip address 192.168.2.1 255.255.255.0
interface Ethernet0/1.1
encapsulation dot1q 1 native
ip address 10.0.0.2 255.255.255.0
```
3. 分公司配置三层交换使VLAN间互通,VLANIF 的IP地址网络第一个可用地址,三层交换机使用VLANIF 100和R2通信,做相应配置。
在 3LSW 上进行如下配置:
```
interface vlan 10
name VLAN10
interface vlan 20
name VLAN20
interface vlan 100
name VLAN100
ip address 192.168.3.1 255.255.255.0
interface vlan 10
ip address 192.168.1.2 255.255.255.0
interface vlan 20
ip address 192.168.2.2 255.255.255.0
ip route 0.0.0.0 0.0.0.0 10.0.0.2
```
4. R1、R2 配置静态路由,3LSW配置默认路由使全网互通。
在 R1 上进行如下配置:
```
ip route 192.168.2.0 255.255.255.0 10.0.0.2
```
在 R2 上进行如下配置:
```
ip route 192.168.1.0 255.255.255.0 10.0.0.1
```
在 3LSW 上进行如下配置:
```
ip route 0.0.0.0 0.0.0.0 10.0.0.2
```
5. 测试PC机之间的连通性
现在您可以测试 PC1 和 PC2 是否可以相互通信。您可以使用 ping 命令进行测试:
```
PC1> ping 192.168.2.1
PC1> ping 192.168.3.1
PC2> ping 192.168.1.1
PC2> ping 192.168.3.1
```
如果 ping 命令可以正常执行并且没有丢包,那么表示您的网络配置成功,PC1 和 PC2 可以相互通信。
阅读全文