mikearama wrote: I think I know what you need... Given these subnets: 192.168.10.0 /24 192.168.11.0 /24 192.168.12.0 /24 192.168.13.0 /24 192.168.14.0 /24 192.168.15.0 /24 ... what's the summary address / mask? mike
mikearama wrote: I think I know what you need... Now, slightly tougher (from our actual network): 10.22.178.0 /23 10.22.180.0 /23 10.22.182.0 /23 10.22.184.0 /23 10.22.186.0 /23 10.22.188.0 /23 10.22.190.0 /23 ... what's the summary address / mask? Have fun, mike
r_durant wrote: Those were my answers as well bighorn... 192.168.8.0/21...encapsulates 8.0 - 7.255 10.22.176.0/20...encaps 176.0 - 191.255
mikearama wrote: Here's one more: 172.16.64.0 /20 172.16.80.0 /20 172.16.96.0 /20 172.16.112.0 /20 172.16.128.0 /20 172.16.144.0 /20 172.16.160.0 /20
bighornsheep wrote: I just remembered you said they were remote networks. This is a long shot, but I would say that the routes would have to go through the default gateway running NAT, since the addresses overlap with the local subnet. If I am wrong, can you explain what could be done in such a situation? Thanks in advance.
dtlokee wrote: Also keep in mind the router will attempt to make a longest match, so it would refer the 172.16.20.0/24 route over the 172.16.0.0/16 route for a packet destined to 172.16.20.100 because it is a better match. This allows you to have summary routes that overlap other routes that are locally known because it will prefer the longer match.
Tricon7 wrote: Just a question - I solved the summarization problems, but only by drawing out the bits, which is time-consuming. Is there a shortcut to keep from having to "binary out" each IP octet?
r_durant wrote: dtlokee wrote: Also keep in mind the router will attempt to make a longest match, so it would refer the 172.16.20.0/24 route over the 172.16.0.0/16 route for a packet destined to 172.16.20.100 because it is a better match. This allows you to have summary routes that overlap other routes that are locally known because it will prefer the longer match. DT, when you say "longest match", do you mean that it will try to match more octects in the subnet mask versus the octects the packet is destined to?
mikearama wrote: You can group most of the subnets with 172.16.64.0 /18, which would cover 172.16.64.0 through 172.16.127.254 Now you have a choice... either leave the other three lines in as they are, or summarize again. Personally, I'd summarize again with 172.16.128.0 /18, which covers 172.16.128.0 through 172.16.191.254
mikearama wrote: » I think I know what you need... Given these subnets: 192.168.10.0 /24 192.168.11.0 /24 192.168.12.0 /24 192.168.13.0 /24 192.168.14.0 /24 192.168.15.0 /24 ... what's the summary address / mask? mike
bakes00 wrote: » Hi guys, Please help me, I seem to have a fundamental misunderstanding here. Everytime I do the route summary for these addresses I come up with: 192.168.0.0/20 How do you arrive at 192.168.8.0/21? 192.168.15.0 = 192.168.00001111.00000000 Only the last 4 bits are ever changed to reach 15, so the first 4 are all common among the given network addresses? I guess I'm missing the point, but I thought I understood it. Hope someone has the patience to help me understand how everyone arrived at the other answer.