A Windows 98 & ME forum. Win98banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Win98banter forum » Windows 98 » General
Site Map Home Authors List Search Today's Posts Mark Forums Read Web Partners

IP Subnet Mask



 
 
Thread Tools Display Modes
  #1  
Old April 4th 05, 04:29 AM
Eugene F.
external usenet poster
 
Posts: n/a
Default IP Subnet Mask

It seems that something other than me periodically sets subnet mask on
my Win'98SE computer to "255.0.0.0". IPConfig /release_all and IPConfg
/renew_all correctly resets it to "255.255.255.0".

My Linksys router shows internal mask "255.255.255.0". I have DHCP on.

I checked TCP/IP properties and I have get IP automatically checked.

Any ideas where the "bad" mask could be coming from?

TIA, Eugene

  #2  
Old April 4th 05, 05:56 AM
Hugh Candlin
external usenet poster
 
Posts: n/a
Default


"Eugene F." wrote in message
oups.com...
It seems that something other than me periodically sets subnet mask on
my Win'98SE computer to "255.0.0.0". IPConfig /release_all and IPConfg
/renew_all correctly resets it to "255.255.255.0".

My Linksys router shows internal mask "255.255.255.0". I have DHCP on.

I checked TCP/IP properties and I have get IP automatically checked.

Any ideas where the "bad" mask could be coming from?

TIA, Eugene


Default subnet masks are based on the IP address classes.


  #3  
Old April 4th 05, 02:41 PM
Eugene F.
external usenet poster
 
Posts: n/a
Default

Hugh,

Thank you very much for the reply.

Default subnet masks are based on the IP address classes.

What does it mean exactly? Sorry, but networking is not my cup of tea.

  #4  
Old April 4th 05, 05:10 PM
Hugh Candlin
external usenet poster
 
Posts: n/a
Default


"Eugene F." wrote in message
ups.com...
Hugh,

Thank you very much for the reply.

Default subnet masks are based on the IP address classes.

What does it mean exactly? Sorry, but networking is not my cup of tea.


It means that the network IP address range that you are using
is categorized as class A, ergo, the default subnet mask
used on a reset will be the class A default, 255.0.0.0


  #5  
Old April 4th 05, 05:13 PM
Haggis
external usenet poster
 
Posts: n/a
Default


"Eugene F." wrote in message
ups.com...
Hugh,

Thank you very much for the reply.

Default subnet masks are based on the IP address classes.

What does it mean exactly? Sorry, but networking is not my cup of tea.


this might explain it for you

An IP address is composed of 32 bits. These 32 bits are divided into 4
octets of 8 bits each. You may have seen an IP address represented like
this: 172.68.15.24. We must remember, however, that the computer understands
this number only in binary, so we must often deal with them in binary. Many
people are intimidated by this initially, but soon find that it is not
difficult. If you do not allow yourself to be flustered, you can master this
topic.

IP addresses are assigned to orginazations in blocks. Each block belongs to
one of three classes: class A, class B, or class C. You can tell what class
an IP address is by the value in its first octet.

Class A 1-126
Class B 128-191
Class C 192 --

An IP address consists of two fields. The first field identifies the
network, and the second field identifies the node on the network. Which bits
of the address are in the network field and which bits are in the host field
is determined by the subnet mask.

When a class A IP license is granted, you are assigned something like this:
99.0.0.0. Only the value of the bits in the first octet are assigned. This
means you are free to assign any values you wish in the second, third and
fourth octets.

The defualt subnet mask for a class A network is 255.0.0.0. High bits, ones,
indicate the bits that are part of the network field of the IP address. The
default subnet mask does not create subnets. Therefor, a class A network
with the default subnet mask is one network. The three octets that are
unassigned and unmasked are part of the host field of the address. There is
a total of 24 bits in those three octets. Each bit can be in one of two
states. Therefor, 2^24 is the number of host addresses that can be assigned
on that network, almost. Two addresses are reserved on every network,
x.x.x.0 and x.x.x.255. So the total number of hosts possible on this network
is 2^24. 2^24-2=16,777,214 hosts for a class A IP network.

When a class B license is granted, the first two octets are assigned. For
example, 172.198.x.x. The default subnet mask for a class B is 255.255.0.0.
One network, two octets free, 16 bits for the host address field.
2^16-2=65,534 possible host addresses on a class B IP network.

When a class C license is granted, the first three octets are assigned, for
example: 193.52.16.0. The default subnet mask for a class C is
255.255.255.0. Once octet makes up the host address field. 2^8-2=254 host
addresses possible on a class C network.


  #6  
Old April 4th 05, 06:01 PM
Eugene F.
external usenet poster
 
Posts: n/a
Default

Thanks. I'm starting to get it. (Have no problems understanding bits -
used to program in Assembler)

Where is the class A defined: on workstation or router? Is it
something "in stone" or can I change it?

TIA, Eugene

  #7  
Old April 4th 05, 08:45 PM
Eugene F.
external usenet poster
 
Posts: n/a
Default

My router (Linksys) IP is 192.168.1.1 and the worksation 192.168.1.101.
Then it should be class "C" - right?

  #8  
Old April 6th 05, 03:07 AM
Head Hunter
external usenet poster
 
Posts: n/a
Default

Yes, it is.
"Eugene F." wrote in message
ups.com...
My router (Linksys) IP is 192.168.1.1 and the worksation 192.168.1.101.
Then it should be class "C" - right?



  #9  
Old April 6th 05, 03:11 AM
Head Hunter
external usenet poster
 
Posts: n/a
Default

Yes, you can change it. You have to be careful, though. The subnet
determines what part of the address it "The Network", and what part
designates the hosts. You can have 2 PCs with similar IP addresses but, if
the subnets are different, they won't see each other because they would be
on different networks.

For example, using your address of 192.168.1.1, if the PC has a subnet of
255.255.255.0, then the network portion of the address is 192.168.1, and the
host portion is 1. If you have another PC with 192.168.1.2 with the subnet
of 255.255.0.0, it would NOT see the first PC, because it would be on
network 192.168 as host 1.1, and not compatible.

What would cause the subnet to spontaneously change, I don't have a clue.

"Eugene F." wrote in message
oups.com...
Thanks. I'm starting to get it. (Have no problems understanding bits -
used to program in Assembler)

Where is the class A defined: on workstation or router? Is it
something "in stone" or can I change it?

TIA, Eugene



  #10  
Old April 6th 05, 05:52 PM
Eugene F.
external usenet poster
 
Posts: n/a
Default

HH,

I understand the basic idea of subnets.

What would cause the subnet to spontaneously change, I don't have a
clue.

Most unfortunately me too. Still in the dark.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
ZoneAlarm missing Firewall Zones tab for subnet. New NAT router won't show Entire Network. Networking 5 July 5th 04 09:48 AM
ZoneAlarm missing Firewall Zones tab for subnet. New NAT router won't show Entire Network. Networking 5 July 5th 04 09:48 AM
strange subnet installed DAVID HHHHH Networking 3 July 2nd 04 07:02 AM
Subnet automatically changes phil Networking 0 June 16th 04 03:46 PM
DHCP subnet mask errors Al Prendag Networking 2 June 7th 04 10:02 PM


All times are GMT +1. The time now is 11:18 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Win98banter.
The comments are property of their posters.