急等答案!!一道网络题目 高分悬赏

来源:百度知道 编辑:UC知道 时间:2024/05/31 08:10:32
题目要求如下:某公司有两个分支机构:总部和分公司,网络连接拓扑图如下:
要求:
IP地址段规划如下:
总部网络: 192.168.10.0/24, 分公司网络: 192.168.13.0/24
路由器互联网段:192.168.12.0/24
1、请你规划各PC和路由器端口的IP,并填写下面IP地址分配表。
PC PC的IP 子网掩码 网关
PC1 255.255.255.0|
PC2 255.255.255.0|
---------------------------------------- |
PC3 255.255.255.0|
PC4 255.255.255.0|
写出上面的PC的IP和网关

路由器 端口S1/2的IP 端口F1/0的IP
RrouterA
RrouterB

写出上面的 端口S1/2的IP和端口F1/0的IP
2、设置两台路由器间的路由,写出操作过程;
3、在总部网络的交换机上划分VLAN 2和VLAN 3,将PC1和PC2分别放到VLAN 2和VLAN 3中,写出操作过程。

switch1:
en
conf t
vlan database
vlan 2
vlan 3
exit
int f0/1
sw acc vlan 2
no shu
int f0/2
sw acc vlan 3
(把和路由器连接的交换机的端口用no shutdown打开,同时用命令sw mode trunk打开中继就行了)

switch2同switch1同样

router1
en
conf t
int f1/0
ip add 192.168.10.1 255.255.255.0
no shutdown
int s1/2
ip add 192.168.11.1 255.255.255.0
no shutdown
ip route 192.168.12.0 255.255.255.0 192.168.11.2

router2
en
conf t
int f1/0
ip add 192.168.12.1 255.255.255.0
no shu
int s1/2
ip add 192.168.11.2 255.255.255.0
no shu
ip route 192.168.10.0 255.255.255.0 192.168.11.1