學(xué)習(xí)啦 > 學(xué)習(xí)英語 > 專業(yè)英語 > 計(jì)算機(jī)英語 > 什么是Subnetwork

什么是Subnetwork

時(shí)間: 澤燕681 分享

什么是Subnetwork

  在政府、企業(yè)集團(tuán)等大型網(wǎng)絡(luò)中,IT基礎(chǔ)結(jié)構(gòu)復(fù)雜、設(shè)備眾多,數(shù)據(jù)類型繁雜,數(shù)據(jù)量越龐大,且存在較多樹形或星形拓?fù)涞姆种C(jī)構(gòu)。而各分支結(jié)構(gòu)也已基本完成了各自的網(wǎng)絡(luò)建設(shè),與總部IT網(wǎng)絡(luò)之間相對(duì)獨(dú)立。接下來小編為大家整理了什么是Subnetwork,希望對(duì)你有幫助哦!

  The word subnetwork (subnet for short) has two related meanings. In the older and more general meaning, it meant one physical network of an internetwork. In the Internet Protocol (IP), a subnetwork (usually known as a subnet) is a division of a classful network. The rest of this article is about the second meaning.

  Subnetting an IP network allows you to break down what appears (logically) to be a single large network into smaller ones. It was originally introduced before the introduction of classful network numbers in IPv4, to allow a single site to have a number of local area networks. Even after the introduction of classful network numbers, it continued to be useful, as it reduced the number of entries in the Internet-wide routing table (by hiding information about all the individual subnets inside a site). As a side benefit, it also resulted in reduced network overhead, by dividing the parts which receive IP broadcasts.

  Network masks

  A network mask, also known as a subnet mask, netmask or address mask, is a bitmask used to tell how much of an IP address identifies the subnetwork the host is on and how much identifies the host.

  Subnet masks are usually represented in the same representation used for addresses themselves; in IPv4, dotted decimal notation - four numbers from zero to 255 separated by periods, e.g. 255.128.0.0.

  But in subnet masks only some of the numbers are allowed: 0,128,192,224,240,248,252,254,255

  Less commonly, it can be represented as an eight-digit hexadecimal number (e.g. FF.80.00.00 = 255.128.0.0).

  A shorter form, which is known as Classless Inter-Domain Routing (CIDR) notation, gives the network number followed by a slash and the number of 'one' bits in the binary notation of the netmask (i.e. the number of relevant bits in the network number). For example, 192.0.2.96/28 indicates an IP address where the first 28 bits are used as the network address (same as 255.255.255.240).

  Subnetworking concept

  IPv4 addresses are broken down into three parts, the network part, the subnet part (now often considered part of the network part, although originally it was part of the rest part) and the host part. There are three classes of IP address which determine how much is which.

  he 127.0.0.0 Network ID is left out because it is designated for loopback and cannot be assigned to a network

  Class E reserved

  Subnetting is the process of allocating bits from the host portion as a network portion. For example, giving the class A network 10.0.0.0 a subnet mask of 255.255.0.0 would break it down into 256 sub-networks (10.0.0.0 to 10.255.0.0). Indicating that the first octet of the IP address shows the network address, the second one shows the subnet number and the last two show the host part. A bitwise AND operation of the host address with the subnet mask extracts the complete subnetwork address (see example below).

  Subnet masks are not limited to whole octets, either. For example 255.254.0.0 (or /15) is also a valid mask. Applied to a class A address this would create 128 subnetworks in intervals of two (1.2.0.1 - 1.3.255.254, 1.4.0.1 - 1.5.255.254, etc).

469047