Contiguous mask only
Result: Netmask 255.255.255.0 ↔ Wildcard 0.0.0.255
Wildcard masks are the binary inverse (logical NOT) of subnet masks. Where a subnet mask has a "1" bit, the wildcard mask has a "0", and vice versa.
Conversion Formula: Wildcard Mask = 255.255.255.255 - Subnet Mask
Common Conversions:
Usage in Cisco ACLs:
In a Cisco ACL, "0" means "must match" and "1" means "don't care". For example:
access-list 10 permit 192.168.1.0 0.0.0.255 matches all hosts in 192.168.1.0/24access-list 10 permit 10.0.0.0 0.255.255.255 matches all hosts in 10.0.0.0/8This tool ensures accurate conversion for all contiguous masks, preventing configuration errors in production networks.