计算机网络实验 配置交换机和路由器 使得PC0和PC1 ping通

2024年11月29日 21:30
有1个网友回答
网友(1):

这个问题倒是简单得很,但是你的需求不是很详细,我想问清楚几个问题:
1、PC0的网关是在交换机上还是路由器上?
2、所涉及的地址是否任意规划?
3、两台PC是否自动获取地址?

我这里给你做了一个配置,PC0网段为192.168.10.0/24、网关为192.168.10.1、网关在交换机上,PC1网段为192.168.20.0/24、网关为192.168.20.1,两台PC都自动获取地址

交换机配置:
ip dhcp pool 10 创建dhcp地址池
network 192.168.10.0 255.255.255.0
default-router 192.168.10.1
dns-server 8.8.8.8

ip routing 思科三层交换机,默认所有网段不能互访,所以必须开这条命令

vlan 10
interface FastEthernet0/1 这个端口和PC0连接
switchport access vlan 10
switchport mode access

interface FastEthernet0/2 这个端口和路由器连接
no switchport
ip address 1.1.1.1 255.255.255.252

interface Vlan10 创建PC0的网关
ip address 192.168.10.1 255.255.255
no shutdown

ip route 192.168.20.0 255.255.255.0 1.1.1.2 静态路由

路由器配置:
ip dhcp pool 20 创建PC1的dhcp地址池
network 192.168.20.0 255.255.255.0
default-router 192.168.20.1
dns-server 8.8.8.8

interface FastEthernet0/0 这个端口和交换机互联
ip address 1.1.1.2 255.255.255.252
no shutdown

interface FastEthernet0/1 这个端口和PC1互联
ip address 192.168.20.1 255.255.255.0
no shutdown

ip route 192.168.10.0 255.255.255.0 1.1.1.1