Casual Articles
#1 in Business Subscribe Email Print

You are here: Home > Internet and Businesses Online > Domain Names > Subnet Mask - Subnets

Tags

  • online
  • works
  • establish
  • subnets addresses
  • different combinations

  • Links

  • Health Insurance Can Save Your Marriage!
  • New Growth Trend: Businesses That Serve Virtual Businesses
  • Online Dating Tip: Honesty Is Essential But Remember To Exercise Constraint!
  • Casual Articles - Subnet Mask - Subnets

    Resell Rights: Are They the Fastest Way to Online Profits?
    What’s the fastest way to online profits? Even if you don’t have a product or service to sell? Well, it’s likely getting your hands on some resell rights.Securing resell rights to a popular product means that you can sell it to your clients and keep all the profits. In order to work this deal out, you just need to find a product that currently has resell rights and purchase the rights. Many popular ebooks come with resell rights (along with any regular purchase). Others offer resell rights for an extra fee.The best resell rights products are those that can be resold for
    ----------------inserted
    ------------------(4)

    The IP addresses numbers are between the IP of the first subnet and the IP of the last subnet with the exclusion of the broadcast and network IP. Broadcast IP have all the bits of the host portion = 1 Network IP have all the bits of the host portion = 0

    Final Example: Let's divide a network with IP address 192.168.5.0 ( class C ) in two subnets. The necessary combinations are 3. In binary it is 11, so we have 2 bits. The class C subnetmask is 255.255.255.0 After the borrowing process, it's last group becomes 11000000 which is 192 (base 10). The new subnet mask is 255.255.255.192

    Hosts number is 2^6 -2 = 62 ( y = 6 )

    Subnets addresses: 256 - 192 = 64 ( s = 192 ) Then 192.168.5.64 and 192.168.5.128 It starts with 64 and goes on adding 64

    IP addresses: from 192.168.5.65 to 192.168.5

    Blogging Software - 7 Top Reasons to Choose Word Press
    If you are eager to create a blog there are many kinds of blogging software to get you going easily and quickly. One of most popular is Blogger.com. However if you are serious about growing a professional business, I'd suggest getting a real domain name and hosting account. This could be compared to the days when many companies offered free hosting so you could set up your own web site. After a few years these companies went belly up and so did your site. It therefore makes better sense to start correctly otherwise you will only regret it later.Here's some of the major b
    Subnet mask shows which bits of an IP address (read the article IP Addresses, by the same author) represent the network and which represent the host.

    By default we have:

    IP addresses - Subnet mask
    Class A - 255.0.0.0
    Class B - 255.255.0.0
    Class C - 255.255.255.0

    Example:
    IP address 192.168.8.4 ( class C ). The first 24 bytes represent the network - 192.168.8.0 - and the last 8 bits the host - 4 -.

    When a host A wants to be connected to a host B, the host A uses its subnet mask to check if the host B is on the same LAN - local area network - or on a remote network. For this purpose it is used the boolean ANDing process.

    Example:
    Host A IP address ( class B ) 172.16.2.4 - Subnet mask ( class B ) 255.255.0.0
    Host B IP address ( class B ) 172.16.2.5

    Host A IP in binary:
    10101100 00010000 00000010 00000100

    Host B IP in binary:
    10101100 00010000 00000010 00000101

    Subnet mask in binary:
    11111111 11111111 00000000 00000000

    -- ANDing process for Host A
    10101100 00010000 00000010 00000100
    11111111 11111111 00000000 00000000
    -----------------------------------------
    10101100 00010000 00000000 00000000 Result for HOST A

    -- ANDing process for Host B
    10101100 00010000 00000010 00000101
    11111111 11111111 00000000 00000000
    -----------------------------------------
    10101100 00010000 00000000 00000000 Result for HOST B

    The calculation works in this way:
    - 1 when the first and second bits are both 1.
    - 0 when they are 0 and 1, 0 when they are 0 and 0.

    Since result A = result B the two hosts are on the same network, so the communication is possible without using a gateway ( normally a router ) to establish a connection to another network.

    There are two ways to write an IP address using subnet mask:
    Example:
    1) 49.22.2.3 255.0.0.0 - class A IP and subnet mask
    2) 192.168.1.3/24 - class C IP and subnet mask ( showing its bits ) 255 in binary is 11111111 - 8 bits -.

    Since in a class C subnet mask there are three 255 groups we have 24 bits.

    Subnets

    Sometime it is useful to divide a network in smaller networks. Let's suppose we want divide a network, with a class B - IP address, in 8 subnets. The class B subnet mask is 255.255.0.0

    We must use some of the 16 bits of the host portion ( borrowing process ) to create the 8 subnets. Since the subnets are 8, we need 8 different combinations plus 1 ( the broadcast ): 9 in total.

    In binary 9 = 1001, that is 4 bits.

    Subnet mask:
    11111111 11111111 00000000 00000000
    Inserting 4 bits in the third group ( the first of the host portion ):
    11111111 11111111 11110000 00000000
    the third group becomes 11110000 = 240 ( base 10 )
    It means that we have a new subnet mask: 255.255.240.0

    Generally speaking:
    The calculation for the number of subnets is 2^x -2
    where x is the bits number for the subnet mask.
    ( In the example above x = 4 )

    The calculation for subnets addresses is
    256 - s
    where s is the value of the subnet mask: in the same example s = 240

    The calculation for the hosts number is
    2^y -2
    where y is the number of the remaining bits: in the same example y = 12 because

    ----------------------bits left (12)
    11111111 11111111 11110000 00000000
    ----------------- bits
    ----------------inserted
    ------------------(4)

    The IP addresses numbers are between the IP of the first subnet and the IP of the last subnet with the exclusion of the broadcast and network IP. Broadcast IP have all the bits of the host portion = 1 Network IP have all the bits of the host portion = 0

    Final Example: Let's divide a network with IP address 192.168.5.0 ( class C ) in two subnets. The necessary combinations are 3. In binary it is 11, so we have 2 bits. The class C subnetmask is 255.255.255.0 After the borrowing process, it's last group becomes 11000000 which is 192 (base 10). The new subnet mask is 255.255.255.192

    Hosts number is 2^6 -2 = 62 ( y = 6 )

    Subnets addresses: 256 - 192 = 64 ( s = 192 ) Then 192.168.5.64 and 192.168.5.128 It starts with 64 and goes on adding 64

    IP addresses: from 192.168.5.65 to 192.168.5

    A Hard Lesson Learned....
    Are you like me? I like to handle things on my own so I don't even THINK about incorporating help with anything I am working on ... especially my business as a whole.Well, I learned something new recently. It was a HORRIBLE experience that actually turned out for the better. Let me tell you my story:I have a team of about 2000 associates. Since all my sites are hosted at Host4Profit except for the site that their websites are hosted on, I decided to transfer everything over. Well, I have transferred many sites before so I knew how it worked. I knew I would get access to Host4

    Host A IP in binary:
    10101100 00010000 00000010 00000100

    Host B IP in binary:
    10101100 00010000 00000010 00000101

    Subnet mask in binary:
    11111111 11111111 00000000 00000000

    -- ANDing process for Host A
    10101100 00010000 00000010 00000100
    11111111 11111111 00000000 00000000
    -----------------------------------------
    10101100 00010000 00000000 00000000 Result for HOST A

    -- ANDing process for Host B
    10101100 00010000 00000010 00000101
    11111111 11111111 00000000 00000000
    -----------------------------------------
    10101100 00010000 00000000 00000000 Result for HOST B

    The calculation works in this way:
    - 1 when the first and second bits are both 1.
    - 0 when they are 0 and 1, 0 when they are 0 and 0.

    Since result A = result B the two hosts are on the same network, so the communication is possible without using a gateway ( normally a router ) to establish a connection to another network.

    There are two ways to write an IP address using subnet mask:
    Example:
    1) 49.22.2.3 255.0.0.0 - class A IP and subnet mask
    2) 192.168.1.3/24 - class C IP and subnet mask ( showing its bits ) 255 in binary is 11111111 - 8 bits -.

    Since in a class C subnet mask there are three 255 groups we have 24 bits.

    Subnets

    Sometime it is useful to divide a network in smaller networks. Let's suppose we want divide a network, with a class B - IP address, in 8 subnets. The class B subnet mask is 255.255.0.0

    We must use some of the 16 bits of the host portion ( borrowing process ) to create the 8 subnets. Since the subnets are 8, we need 8 different combinations plus 1 ( the broadcast ): 9 in total.

    In binary 9 = 1001, that is 4 bits.

    Subnet mask:
    11111111 11111111 00000000 00000000
    Inserting 4 bits in the third group ( the first of the host portion ):
    11111111 11111111 11110000 00000000
    the third group becomes 11110000 = 240 ( base 10 )
    It means that we have a new subnet mask: 255.255.240.0

    Generally speaking:
    The calculation for the number of subnets is 2^x -2
    where x is the bits number for the subnet mask.
    ( In the example above x = 4 )

    The calculation for subnets addresses is
    256 - s
    where s is the value of the subnet mask: in the same example s = 240

    The calculation for the hosts number is
    2^y -2
    where y is the number of the remaining bits: in the same example y = 12 because

    ----------------------bits left (12)
    11111111 11111111 11110000 00000000
    ----------------- bits
    ----------------inserted
    ------------------(4)

    The IP addresses numbers are between the IP of the first subnet and the IP of the last subnet with the exclusion of the broadcast and network IP. Broadcast IP have all the bits of the host portion = 1 Network IP have all the bits of the host portion = 0

    Final Example: Let's divide a network with IP address 192.168.5.0 ( class C ) in two subnets. The necessary combinations are 3. In binary it is 11, so we have 2 bits. The class C subnetmask is 255.255.255.0 After the borrowing process, it's last group becomes 11000000 which is 192 (base 10). The new subnet mask is 255.255.255.192

    Hosts number is 2^6 -2 = 62 ( y = 6 )

    Subnets addresses: 256 - 192 = 64 ( s = 192 ) Then 192.168.5.64 and 192.168.5.128 It starts with 64 and goes on adding 64

    IP addresses: from 192.168.5.65 to 192.168.5

    How to Deal With Career Transition 'Stress'
    Career transitions are stressful, especially if you have little experience dealing with them and don’t know how to leverage the stress they present to your future career advantage. Whether your employment loss was your choice or someone else’s, unavoidable feelings of anxiety and panic can prevail. If you find yourself in a career transition, you need to understand your own stress “profile” to minimize its potential negative interference with your daily life and personal health.Understand What “Stress” Is for YouSelf awareness of your own stress symptoms is a critical
    he communication is possible without using a gateway ( normally a router ) to establish a connection to another network.

    There are two ways to write an IP address using subnet mask:
    Example:
    1) 49.22.2.3 255.0.0.0 - class A IP and subnet mask
    2) 192.168.1.3/24 - class C IP and subnet mask ( showing its bits ) 255 in binary is 11111111 - 8 bits -.

    Since in a class C subnet mask there are three 255 groups we have 24 bits.

    Subnets

    Sometime it is useful to divide a network in smaller networks. Let's suppose we want divide a network, with a class B - IP address, in 8 subnets. The class B subnet mask is 255.255.0.0

    We must use some of the 16 bits of the host portion ( borrowing process ) to create the 8 subnets. Since the subnets are 8, we need 8 different combinations plus 1 ( the broadcast ): 9 in total.

    In binary 9 = 1001, that is 4 bits.

    Subnet mask:
    11111111 11111111 00000000 00000000
    Inserting 4 bits in the third group ( the first of the host portion ):
    11111111 11111111 11110000 00000000
    the third group becomes 11110000 = 240 ( base 10 )
    It means that we have a new subnet mask: 255.255.240.0

    Generally speaking:
    The calculation for the number of subnets is 2^x -2
    where x is the bits number for the subnet mask.
    ( In the example above x = 4 )

    The calculation for subnets addresses is
    256 - s
    where s is the value of the subnet mask: in the same example s = 240

    The calculation for the hosts number is
    2^y -2
    where y is the number of the remaining bits: in the same example y = 12 because

    ----------------------bits left (12)
    11111111 11111111 11110000 00000000
    ----------------- bits
    ----------------inserted
    ------------------(4)

    The IP addresses numbers are between the IP of the first subnet and the IP of the last subnet with the exclusion of the broadcast and network IP. Broadcast IP have all the bits of the host portion = 1 Network IP have all the bits of the host portion = 0

    Final Example: Let's divide a network with IP address 192.168.5.0 ( class C ) in two subnets. The necessary combinations are 3. In binary it is 11, so we have 2 bits. The class C subnetmask is 255.255.255.0 After the borrowing process, it's last group becomes 11000000 which is 192 (base 10). The new subnet mask is 255.255.255.192

    Hosts number is 2^6 -2 = 62 ( y = 6 )

    Subnets addresses: 256 - 192 = 64 ( s = 192 ) Then 192.168.5.64 and 192.168.5.128 It starts with 64 and goes on adding 64

    IP addresses: from 192.168.5.65 to 192.168.5

    Telecommuting: Info or Intox?
    New Information and Communication Technologies (NICT) continue to influence our lives on the professional, economic, social and family levels. As a consequence, we are faced with new values, new relations and new behaviours which we have to adopt or to adapt to.One of the innovations brought by these technologies -and in front of which we are still perplexed and hesitant- is telecommuting or distance work which is presented as a means to reduce costs and to increase productivity.The fundamental characteristics of telecommuting are: a- The place of work is no longer the s
    01, that is 4 bits.

    Subnet mask:
    11111111 11111111 00000000 00000000
    Inserting 4 bits in the third group ( the first of the host portion ):
    11111111 11111111 11110000 00000000
    the third group becomes 11110000 = 240 ( base 10 )
    It means that we have a new subnet mask: 255.255.240.0

    Generally speaking:
    The calculation for the number of subnets is 2^x -2
    where x is the bits number for the subnet mask.
    ( In the example above x = 4 )

    The calculation for subnets addresses is
    256 - s
    where s is the value of the subnet mask: in the same example s = 240

    The calculation for the hosts number is
    2^y -2
    where y is the number of the remaining bits: in the same example y = 12 because

    ----------------------bits left (12)
    11111111 11111111 11110000 00000000
    ----------------- bits
    ----------------inserted
    ------------------(4)

    The IP addresses numbers are between the IP of the first subnet and the IP of the last subnet with the exclusion of the broadcast and network IP. Broadcast IP have all the bits of the host portion = 1 Network IP have all the bits of the host portion = 0

    Final Example: Let's divide a network with IP address 192.168.5.0 ( class C ) in two subnets. The necessary combinations are 3. In binary it is 11, so we have 2 bits. The class C subnetmask is 255.255.255.0 After the borrowing process, it's last group becomes 11000000 which is 192 (base 10). The new subnet mask is 255.255.255.192

    Hosts number is 2^6 -2 = 62 ( y = 6 )

    Subnets addresses: 256 - 192 = 64 ( s = 192 ) Then 192.168.5.64 and 192.168.5.128 It starts with 64 and goes on adding 64

    IP addresses: from 192.168.5.65 to 192.168.5

    Help Wanted – One New Customer for Growing IT Business
    Every business owner needs new customers. They are constantly on the lookout for the next customer, then the next and so on.Your computer services business is the same, you need customers. But do you need as many as you think? Maybe not.Do you know how much each customer contributes to your business? How about how much it costs to bring in a new customer? Or to keep them after they become your customer?It’s the classic dilemma of quantity verses quality. Would you rather have fifty customers that pay you $5000.00 per month or ten that pay you $5000.00 per month? The re
    ----------------inserted
    ------------------(4)

    The IP addresses numbers are between the IP of the first subnet and the IP of the last subnet with the exclusion of the broadcast and network IP. Broadcast IP have all the bits of the host portion = 1 Network IP have all the bits of the host portion = 0

    Final Example: Let's divide a network with IP address 192.168.5.0 ( class C ) in two subnets. The necessary combinations are 3. In binary it is 11, so we have 2 bits. The class C subnetmask is 255.255.255.0 After the borrowing process, it's last group becomes 11000000 which is 192 (base 10). The new subnet mask is 255.255.255.192

    Hosts number is 2^6 -2 = 62 ( y = 6 )

    Subnets addresses: 256 - 192 = 64 ( s = 192 ) Then 192.168.5.64 and 192.168.5.128 It starts with 64 and goes on adding 64

    IP addresses: from 192.168.5.65 to 192.168.5.126 for the first subnet. from 192.168.5.129 to 192.168.5.190 for the second subnet Note: the broadcast address for the first subnet is 11000000.10101000.00000101.01111111, the fourth group is 127 (base 10 ) and the broadcast address of the second subnet is 11000000.10101000.00000101.10111111, the fourth group is 191 ( base 10 )

    HTTP = HTML link (for blogs, profiles,phorums):
    <a href="http://www.casualarticles.com/article/59375/casualarticles-Subnet-Mask--Subnets.html">Subnet Mask - Subnets</a>

    BB link (for phorums):
    [url=http://www.casualarticles.com/article/59375/casualarticles-Subnet-Mask--Subnets.html]Subnet Mask - Subnets[/url]

    Related Articles:

    Industrialisation And Education

    Essential Information About a Career in Banking

    Salary, Raises, & Perks: Negotiate to Get Paid What You're Worth

    Bookmark it: del.icio.us digg.com reddit.com netvouz.com google.com yahoo.com technorati.com furl.net bloglines.com socialdust.com ma.gnolia.com newsvine.com slashdot.org simpy.com shadows.com blinklist.com