A bitwise mask that shows which part of the IP address is shared by all computers in the subnetwork and is used to identify them all together in some larger network. The IP address part that is not flagged by this mask identifies individual computers in the subnetwork.

learn more… | top users | synonyms

0
votes
0answers
24 views

how to take subnet mask for an IP. [migrated]

I am having difficulties to find the subnetmask for a given ip address. I am reading one textbook and there i saw an example which i still dont understand how they picked up a subnetmask. here it ...
1
vote
1answer
120 views

know if a IP belong to a specific subnet and netmask in delphi

I need a function written in Delphi to know if an IP belongs to a certain NETMASK SUBNET. I have not much knowledge of networking, but I need a function to do this. I would be very grateful if you can ...
1
vote
1answer
350 views

Given the IP and netmask, how can I calculate the network address using bash?

In a bash script I have an IP address like 192.168.1.15 and a netmask like 255.255.0.0. I now want to calculate the start address of this network, that means using the &-operator on both ...
1
vote
1answer
75 views

Calculate subnet in Solaris shell

I need to calculate the subnet, having a IP address and net mask in a Solaris machine shell (bash, but could be other). Some examples: IP=192.168.100.6, MASK=255.255.255.0 => SUBNET=192.168.100.0 ...
1
vote
2answers
332 views

Extracting netmask from ifconfig output and printing it in CIDR format

I need to extract the netmask for two sets of IPs and print it in CIDR format, out on to the screen. Thinking of using either shell or tcl to do this. Guess the major sticky points here is converting ...
0
votes
0answers
174 views

IP range caclulator from IP Address/netmask using VBScript

I hate to ask this question, but am very new to scripting and need help. I would like to create a calculator using VBS that will accept my input and give me a range of IP address acceptable. For ...
0
votes
2answers
107 views

How calculate next IP adress having ip in bit representation?

I get IP address form DHCP info. How calculate next IP address when I have IP in bit representation. WifiManager wifii = (WifiManager) context.getSystemService(Context.WIFI_SERVICE); DhcpInfo d = ...
0
votes
1answer
120 views

Socket programming - broadcast with net mask class B

I have a problem with broadcasting data when I'm using class B of netmask. For example I have 3 PC's with these configs: PC1: IP Address: 192.168.1.10 Netmask: 255.255.0.0 PC2: IP Address: ...
-1
votes
1answer
197 views

Converting netmasks php

How can I convert a netmask to a specific netmask. Example: 127.0.0.0/16 Convert to /24 netmask. It should output something like: 127.0.0.0/24 127.0.1.0/24 127.0.2.0/24 127.0.2.0/24 etc. all the ...
0
votes
2answers
63 views

having trouble returning a best possible interface from a set of routing entries

so i am trying to return a best possible matching interface from routing entries. However, it is not exactly working the way i want it to. I got 5 out 6 values returned the way should be but I am ...
6
votes
3answers
1k views

Java & Windows 7: Reliably getting IPv4 netmask?

I've run into a known bug with Java 6 on Windows. My understanding is that the normal way to get the netmask is to look up the network prefix length and do some bit shifts. The problem is that on ...
2
votes
1answer
200 views

Inverting netmask using commons SubnetUtils.SubnetInfo.getNetmask() in Java

Lets say I have this: SubnetUtils utils = new SubnetUtils("192.168.1.0/24"); utils.getInfo().getNetmask() // = 255.255.255.0 Is there a easy way of getting the mask inverted (Cisco ACL style)? ...
2
votes
1answer
776 views

How to get the ip range out of a CIDR Notation or an address netmask pair using Java

For example: How to get the lower-higher ip address of the CIDR Notation 10.66.114.0/24 In this case the answer is: 10.66.114.1 - 10.66.114.254
2
votes
1answer
2k views

How can I get netmask from Android device?

I need to get the netmask and ip from the Android so I can calculate all the IP's within my subnet range. I've been searching and so far I've found this: How to get gateway and subnet mask details in ...
3
votes
2answers
1k views

How to determine netmask of active interface in Objective-C on a Mac?

I'm trying to determine the network segment my Macbook is in, because I then want to scan this segment for active hosts (basic IP scanner) by using the CFHost class. Therefore I need the IP and ...
-1
votes
2answers
386 views

JavaScript IP regexp

I need a JavaScript code that changes the IP address into rexexp, i.e: 123.123.123.123 to ^123\.123\.123\.123$ and the same operation for netmask. Anyone has an idea?
1
vote
0answers
503 views

how to abtain netmask and gateway for 3g connection in android?

there is a way to obtain the netmask and gateway value for the 3g network? I've searched for it but found nothing else than using ifconfig. anyone can help me? Thanks, Andrea
-1
votes
1answer
329 views

Netmask and ip are incompatible in dlink dir-300

I have Dlink Dir-300 wireless router. I have to set a static ip settings there. I specify Ip as 192.168.242.3 Netmask: 255.255.0.0. When I press enter it says that the ip is invalid. Although such ...
0
votes
0answers
248 views

Configure netmask for wireless router dlink

I need to configure the Wireless Router. In our dorm IP's are being assigned statically and correspond to the room numbers. So someone who has IP like 192.168.231.1 lives in room #231 and it is his ...
0
votes
1answer
318 views

How to get netmask?

I know how to get from ifconfig. (linux) But is there another way? Can found it in socket.
2
votes
3answers
1k views

T-Sql: check if IP matches netmask

My SQL-Server db stores IP netmasks as binary. I need a way to match these with a given IP For example, is 192.168.21.5 part of a netmask which is stored in the DB? The binary representation of ...
-3
votes
2answers
1k views

IP Filtering/Matching by host mask with PHP & MySQL

I'm wanting to do something similar to this: http://stackoverflow.com/questions/594112/matching-an-ip-to-a-cidr-mask-in-php5 Except, I want to store a list of disallowed IP/Masks in a MySQL table and ...
15
votes
5answers
37k views

How to calculate the IP range when the IP address and the netmask is given?

When a IP-Range is written as aaa.bbb.ccc.ddd/netmask (CIDR Notation) I need to calculate the first and the last included ip address in this range with C#. Example: Input: 192.168.0.1/25 Result: ...
2
votes
5answers
4k views

IP subnet verification in JSP

I have the following JSP code, that protects my web page and displays it only to know IP's String ip_h = request.getRemoteAddr(); String host_h = request.getRemoteHost(); String iplist[] = new ...