假设我在一家有12个部门的公司工作,每个部门有7-10台pc,每个部门有2-5台打印机,所以我需要划分/划分我的网络,以便为每个部门的pc和打印机划分IP地址范围,并开始为每台pc/打印机设置静态IP地址。我该如何做到这一点?
我需要的是:如何建立这样的网络或学习什么能够做这样的事情的指南,关键字搜索,计算器的类型,使这样的事情
注意:我看了很多课程和视频,但都是在cisco packet tracer中,我需要知道在现实生活中如何操作
发布于 2019-11-13 04:45:33
因此,您需要12个/28子网和12个/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
为了优化路由,您可以将2x/28分配给您的位置,然后您将拥有: 192.168.0.0/28和192.168.0.16/28,一个用于打印机,一个用于location1中的pc。因此,每个站点上都有一个/27 (255.255.255.224)。意味着,网络中只有1个路由条目可以到达站点打印机和pc
如您所见,如果您对子网划分一无所知,这似乎很复杂。仔细阅读上面的链接,了解下面的ip地址!
https://stackoverflow.com/questions/58826200
复制相似问题