Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Given a CIDR, how can I convert it to a subnet mask.

share|improve this question

2 Answers

up vote 1 down vote accepted

Same way you do in any other language

set n 24
set mask [expr {~ 0 << ( 32 - $n )}]
format "%d.%d.%d.%d" [expr {$mask >> 24 & 255}] [expr {$mask >> 16 & 255}] [expr {$mask >> 8 & 255}] [expr {$mask & 255}]
share|improve this answer
Thanks. What does set mask line actually do ? – user211491 Nov 15 '09 at 16:46
It creates a mask of "bits" that get shifted around, truly working with the data as a bitmask. – Nerdling Nov 15 '09 at 16:57
Related to this question, How can I add 1 to an IP address (Example: 192.168.1.0). I have an IP address and a Subnet mask and I am trying to get the first valid IP address in the range. If I do a logical AND between IP and Subnet, I get the subnet number. I need to add 1 to the subnet number to get the first IP. – user211491 Nov 15 '09 at 17:09
How about the reverse of this? If given a net mask (in hex) how would I get the cidr using tcl? – egorulz Dec 17 '12 at 10:13

Sure it's easy to do in plain Tcl, but you may consider using ip package from Tcllib for IP addresses transformations as it provides numerous convenience functions that make it easy to almost anything you need to do with IPv4 and IPv6 addresses.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.