我是网络新手,最近开始使用数据包跟踪器。我正在尝试熟悉子网,并且我制作了一个简单的网络,但该网络出现了严重错误。我有 4 个部门:IT、HR、管理和安全。以下是它们每个的子网:
- IT:192.168.0.33/27
- 人力资源:192.168.0.65/28
- 管理:192.168.0.81/28
- 安全:192.168.0.97/28
我有两个路由器:router1 和 router2
IT 和 HR 连接到路由器 1。路由器 1 具有用于 IT 和 HR 的 dhcp 池。管理和安全连接到路由器 2。路由器 2 具有用于管理和安全的 dhcp 池
路由器通过 fa0/0 连接在一起,如下所示: router1 fa0/0:192.168.0.1/30 .router2 fa0/0: 192.168.0.2/30
编辑:这里是路由器配置:
路由器1:
!
version 15.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Router
!
!
!
!
ip dhcp excluded-address 192.168.0.33
ip dhcp excluded-address 192.168.0.65
!
ip dhcp pool IT
network 192.168.0.32 255.255.255.224
default-router 192.168.0.33
ip dhcp pool HR
network 192.168.0.64 255.255.255.240
default-router 192.168.0.65
!
!
!
no ip cef
no ipv6 cef
!
!
!
!
license udi pid CISCO2811/K9 sn FTX101784EX-
!
!
!
!
!
!
!
!
!
!
!
spanning-tree mode pvst
!
!
!
!
!
!
interface FastEthernet0/0
ip address 192.168.0.1 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.0.65 255.255.255.240
duplex auto
speed auto
!
interface FastEthernet1/0
ip address 192.168.0.33 255.255.255.224
duplex auto
speed auto
!
interface FastEthernet1/1
no ip address
duplex auto
speed auto
shutdown
!
interface Vlan1
no ip address
shutdown
!
ip classless
!
ip flow-export version 9
!
!
!
!
!
!
!
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
!
!
end
路由器2:
version 15.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Router
!
!
!
!
ip dhcp excluded-address 192.168.0.81
ip dhcp excluded-address 192.168.0.97
!
ip dhcp pool management
network 192.168.0.80 255.255.255.240
default-router 192.168.0.81
ip dhcp pool security
network 192.168.0.96 255.255.255.240
default-router 192.168.0.97
!
!
!
no ip cef
no ipv6 cef
!
!
!
!
license udi pid CISCO2811/K9 sn FTX1017913G-
!
!
!
!
!
!
!
!
!
!
!
spanning-tree mode pvst
!
!
!
!
!
!
interface FastEthernet0/0
ip address 192.168.0.2 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.0.97 255.255.255.240
duplex auto
speed auto
!
interface FastEthernet1/0
ip address 192.168.0.81 255.255.255.240
duplex auto
speed auto
!
interface FastEthernet1/1
no ip address
duplex auto
speed auto
shutdown
!
interface Vlan1
no ip address
shutdown
!
ip classless
!
ip flow-export version 9
!
!
!
!
!
!
!
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
!
!
end
问题是,当我尝试 ping IT 到安全性时,我发现主机无法访问。我非常感谢您对我做错了什么以及我应该改变什么的意见。请记住,我对此仍然很陌生,我不知道自己在做什么。对不起,如果我的格式和标签不是最佳的,我也是这个网站的新手。提前致谢。