如何对网络进行子网划分或构建具有特定 IP 范围的网络

how to subnet a network or build a network with specific IP ranges

假设:- 考虑到我在一家公司工作 有 12 个部门,每个部门有 7-10 台 PC 每个部门都有 2-5 台打印机,所以我需要 divide/subnetting 我的网络,以便为每个部门的 PC 和打印机创建一个 IP 地址范围,并开始为每台 PC / 打印机设置一个静态 IP 地址 我该怎么做 ??

我需要的是:如何建立这样一个网络的指南 或者要学习什么才能做这样的事情,要搜索的关键字,计算器的类型才能做这样的事情

注意:我看了很多课程和视频,但都在 cisco packet tracer 中,我需要知道如何在现实生活中做到这一点

所以你需要 12 x /28 子网和 12 x /29

for example:
192.160.0.0 /28 pcs locaacion 1
192.168.0.16 /28 pcs location 2
192.168.0.32 /28 pcs location 3
.
.
192.168.0.192 /28 pcs location 13

so, you have 13 availabe addresses on each site for your pcs and 1 address for your default gateway (router), each subnet with a mask of 255.255.255.240

now do the same for your printers, but with a /29 subnet mask:

192.168.1.0 /29 printer loc 1
192.168.1.8 /29 printer loc 2
192.168.1.16 /29 printer loc 3
.
.
192.168.1.96 /29 printer loc 13

each subnet has space for 5 printer plus 1 address for the router. subnetmask would be 255.255.255.248

https://www.google.com/url?sa=t&source=web&cd=1&ved=2ahUKEwi_z6TcxuXlAhXxx6YKHXs6C20QFjAAegQIBBAB&url=https%3A%2F%2Fwww.cisco.com%2Fc%2Fen%2Fus%2Fsupport%2Fdocs%2Fip%2Frouting-information-protocol-rip%2F13788-3.pdf&usg=AOvVaw1yWOeJIvOH0nY7UyR-Oe8j

为了优化路由,你可以分配2x/28到你的位置,那么你有: 192.168.0.0/28 和 192.168.0.16/28,一个用于打印机,一个用于 location1.. 中的 pc,所以每个站点上都有一个 /27 (255.255.255.224)。意味着,网络中只有 1 个路由条目可以到达站点 printer&pc

如您所见,如果您对子网划分一无所知,这似乎很复杂。仔细阅读以上内容link 以了解 ip 地址!