This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

"No Proxy for" example

  • 6 replies
  • 10 have this problem
  • 1 view
  • Last reply by cubewano

more options

There's an example in the manual proxy configurations under the "No Proxy for" field:

192.168.1.0/24

What does this mean exactly? Is 24 the upper bound of the IP range (i.e. 192.168.1.0 - 192.168.1.24)? Is it a mask? I seem to be able to connect to anything on 192.168.1.xxx with this setting.

There's an example in the manual proxy configurations under the "No Proxy for" field: 192.168.1.0/24 What does this mean exactly? Is 24 the upper bound of the IP range (i.e. 192.168.1.0 - 192.168.1.24)? Is it a mask? I seem to be able to connect to anything on 192.168.1.xxx with this setting.

All Replies (6)

more options

Ok, apparently it's CIDR notation, so the 24 indeed forms the netmask (255.255.255.0) for class C.

more options

It specifies the number of bits in the mask, so 24 means 24 bits. That is the whole 192.xxx.xxx.xxx range. If you only need 192.168.1.xxx then 192.168.1.0/8 is sufficient.

See also http://kb.mozillazine.org/network.proxy.no_proxies_on

more options

Not according to the CIDR calculator: http://www.subnet-calculator.com/cidr.php . It's the first 24 bits (left to right) which are set to 1 in the netmask. So if you want 192.168.1.xxx the CIDR notation is 192.168.1.0/24 (CIDR Netmask 255.255.255.0).

more options

I should add: 192.168.1.0/8 will leave you with the 192.xxx.xxx.xxx range (netmask 255.0.0.0), effectively the same as 192.0.0.0/8

more options

Thanks for the correction. See also http://en.wikipedia.org/wiki/CIDR_notation

more options

Sure thing. Also check out http://en.wikipedia.org/wiki/Classful_network for a historical perspective of network classes.