Skip to main content

Exim how to format to catch a list of IPs

Comments

2 comments

  • martin MHC
    About Slash Notation Many things use slash notation, also known as CIDR (Classless Inter-Domain Routing) notation, for many purposes, such as policy configuration. You use slash notation differently for IPv4 and IPv6 addresses. IPv4 Slash notation is a compact way to show or write an IPv4 subnet mask. When you use slash notation, you write the IP address, a forward slash (/), and the subnet mask number. To find the subnet mask number: Convert the decimal representation of the subnet mask to a binary representation. Count each "1" in the subnet mask. The total is the subnet mask number. For example, to write the IPv4 address 192.168.42.23 with a subnet mask of 255.255.255.0 in slash notation: [QUOTE]Convert the subnet mask to binary.
    In this example, the binary representation of 255.255.255.0 is:
    11111111.11111111.11111111.00000000.
    Count each 1 in the subnet mask.
    In this example, there are twenty-four (24).
    Write the original IP address, a forward slash (/), and then the number from Step 2.
    The result is 192.168.42.23/24.

    This table shows common network masks and their equivalents in slash notation. Network Mask Slash Equivalent 255.0.0.0 /8 255.255.0.0 /16 255.255.255.0 /24 255.255.255.128 /25 255.255.255.192 /26 255.255.255.224 /27 255.255.255.240 /28 255.255.255.248 /29 255.255.255.252 /30 255.255.255.254 /31 255.255.255.255 /32
    0
  • cPRex Jurassic Moderator
    Hey there! You'd need to use a /16 for that CIDR class, so you'd use 123.456.0.0/16 to catch that entire range.
    0

Please sign in to leave a comment.