Tagged Questions
0
votes
1answer
320 views
How to get VLSM IP range from pool of assignable addresses a.b.c.d/x - e.f.g.h/y
If I have a pool of addressable IP's in 214.97.254/23, is it possible to assign addresses to 6 subnets that require:
Subnet A - 250 interfaces,
Subnet B - 120 interfaces,
Subnet C - 120 interfaces,
...
8
votes
5answers
10k views
Converting CIDR address to subnet mask and network address
Given a CIDR address, e.g. 192.168.10.0/24
How to determine mask length? (24)
How to determine mask address? (255.255.255.0)
How to determine network address? (192.168.10.0)
10
votes
4answers
4k views
Is there way to match IP with IP+CIDR straight from SELECT query?
Something like
SELECT COUNT(*) AS c FROM BANS WHERE typeid=6 AND (SELECT ipaddr,cidr FROM BANS) MATCH AGAINST 'this_ip';
So you don't first fetch all records from DB and then match them one-by ...