Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
15k 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
1answer
51 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
304 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 ...
2
votes
2answers
208 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 ...
2
votes
5answers
3k 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 ...
1
vote
1answer
86 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
0
votes
0answers
292 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
0
votes
0answers
135 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
201 views

How to get netmask?

I know how to get from ifconfig. (linux) But is there another way? Can found it in socket.
0
votes
3answers
886 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 ...
-1
votes
2answers
147 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
votes
1answer
180 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 ...