lnxfrk's profile

Contributor

 • 

32 Messages

Friday, March 27th, 2026 11:02 PM

Cloudflare Anycast IPs being blocked by comcast ASBR

I've already attempted to report this issue via Assistant/chat and over a voice call but apparently gaining zero traction or not getting to the correct level of support . During the voice call to support the representative said give it 4 to 6 hours and it should be resolved. I didn't have much hope in the statement considering the first thing the person did was restart my modem... 

First of all this is not a home network issue, it's at least 8 hops away from my home network. Using a VPN from my home network is not blocked. Also proved that using VZW home internet is not blocked. Obviously true since the traffic is taking same route to to the site. Also forced a home IP change to prove out it's not just my IP - CF dashboards would reveal that if that was the case anyway.

Issue: I have a site hosted in another cloud provider and use Cloudflare services to front it. Cloudflare places Anycast IPs in front of sites for protection and to improve performance. In my mind these are essentially like a reverse proxy where there are several 100s, 1000s? sites behind the pair of IPs. These IPs were working prior to 19-March - ever sense then reaching a site behind them just times out.

I have not received any statement that these are blocked by reputation, I have checked with SPA and they reported no blocks. These are Cloudflare Anycast IPs and are used by many CF customers, not a dedicated resource. Plus there is now way to force a site to use a different set of IPs w/o an enterprise plan.

Based upon tracing it's quite clear that there is a border router that is causing the issue in Roseville MN - identified by asbrXX. Perhaps only impacts twin cities comcast subscribers? TBD as I don't have a means to test from a different comcast household.

Suspicion that both 172.67.165.172 and 104.21.11.83 are being blocked / null-routed and must be a /32 block rule as other anycast IPs in the same CIDR range are open.

https://www.cloudflare.com/ips/ as you can see these IP ranges are quite large - I have scanned 10 to 20 surrounding the non working ones and confirmed surrounding IPs work (see below).

172.64.0.0/13 --> 172.64.0.1 - 172.71.255.254
104.16.0.0/13 --> 104.16.0.1 - 104.23.255.254

Running mtr  -w -c 10 -i 1 -4 172.67.165.172:

Start: 2026-03-26T18:02:21-0500
HOST: router                                             Loss%   Snt   Last   Avg  Best  Wrst StDev
  1.|-- 10.27.32.2                                        0.0%    10    8.0   9.2   8.0  10.8   0.8
  2.|-- po-309-351-rur201.maplegrove.mn.minn.comcast.net  0.0%    10    9.9  10.9   8.7  16.0   2.3
  3.|-- bundle-2019-tcr04.maplegrove.mn.minn.comcast.net  0.0%    10   11.8  12.2   9.8  15.0   1.8
  4.|-- 68.85.201.121                                     0.0%    10    9.4  11.0   9.4  12.6   1.1
  5.|-- bundle-3061-ccr201.roseville.mn.minn.comcast.net  0.0%    10   11.3  11.4   9.4  13.0   1.1
  6.|-- bundle-2100-tcr01.roseville.mn.minn.comcast.net   0.0%    10    8.9  11.4   8.9  15.2   1.9
  7.|-- bundle-2068-asbr02.roseville.mn.minn.comcast.net  0.0%    10   11.6  10.3   9.1  11.7   1.0
  8.|-- ???                                              100.0    10    0.0   0.0   0.0   0.0   0.0

small range test, only .172 fails

for i in {165..180}; do 
    if ! ping -q -c 1 -W 1 172.67.165.$i > /dev/null; then
        echo -e "\nFAILED: 172.67.165.$i"
        ping -q -c 1 172.67.165.$i
    fi
done

FAILED: 172.67.165.172
PING 172.67.165.172 (172.67.165.172) 56(84) bytes of data.

--- 172.67.165.172 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Running mtr  -w -c 10 -i 1 -4 104.21.11.83:

Start: 2026-03-26T18:04:04-0500
HOST: router                                             Loss%   Snt   Last   Avg  Best  Wrst StDev
  1.|-- 10.27.32.3                                        0.0%    10   10.5  12.8   9.7  17.3   2.7
  2.|-- po-309-352-rur202.maplegrove.mn.minn.comcast.net  0.0%    10   12.2  12.2  10.1  19.5   2.8
  3.|-- bundle-2022-tcr03.maplegrove.mn.minn.comcast.net  0.0%    10   14.0  13.6  11.4  17.8   2.0
  4.|-- 68.85.201.117                                     0.0%    10   13.5  14.4  11.8  21.0   3.1
  5.|-- bundle-3061-ccr201.roseville.mn.minn.comcast.net  0.0%    10   11.0  13.8  10.9  22.4   3.9
  6.|-- bundle-2102-tcr03.roseville.mn.minn.comcast.net   0.0%    10   10.8  12.3  10.8  14.8   1.4
  7.|-- bundle-2066-asbr01.roseville.mn.minn.comcast.net  0.0%    10   10.9  12.7   9.9  15.9   2.0
  8.|-- ???                                              100.0    10    0.0   0.0   0.0   0.0   0.0

small range test, only .83 fails

for i in {75..85}; do 
    if ! ping -q -c 1 -W 1 104.21.11.$i > /dev/null; then
        echo -e "\nFAILED: 104.21.11.$i"
        ping -q -c 1 104.21.11.$i
    fi
done

FAILED: 104.21.11.83
PING 104.21.11.83 (104.21.11.83) 56(84) bytes of data.

--- 104.21.11.83 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Example of a site with working CF anycast IPs in the same Anycast IP CIDR 

Running mtr  -w -c 10 -i 1 -4 172.67.133.25:

Start: 2026-03-26T18:05:39-0500
HOST: router                                             Loss%   Snt   Last   Avg  Best  Wrst StDev
  1.|-- 10.27.32.3                                        0.0%    10    9.5   9.9   8.1  14.4   1.9
  2.|-- po-309-352-rur202.maplegrove.mn.minn.comcast.net  0.0%    10   12.3  12.7   8.6  20.9   4.2
  3.|-- bundle-2021-tcr02.maplegrove.mn.minn.comcast.net  0.0%    10    9.5  11.8   9.5  18.1   2.6
  4.|-- 68.85.201.113                                     0.0%    10   14.7  12.9   9.7  20.9   3.5
  5.|-- bundle-3061-ccr201.roseville.mn.minn.comcast.net  0.0%    10   13.3  13.4   8.8  19.1   3.1
  6.|-- bundle-2102-tcr03.roseville.mn.minn.comcast.net   0.0%    10   12.2  12.6   9.3  16.3   2.4
  7.|-- bundle-2066-asbr01.roseville.mn.minn.comcast.net  0.0%    10    9.4  12.4   9.4  17.2   2.6
  8.|-- be-1001-ar-sp01.roseville.mn.minn.comcast.net     0.0%    10   10.8  12.7  10.0  20.3   3.1
  9.|-- be-2101-ar-ex01.roseville.mn.minn.comcast.net     0.0%    10   13.4  13.7  10.1  16.9   2.5
 10.|-- ???                                              100.0    10    0.0   0.0   0.0   0.0   0.0
 11.|-- 172.67.133.25                                     0.0%    10   12.0  13.5   9.7  18.7   3.1

Running mtr  -w -c 10 -i 1 -4 104.21.16.168:

Start: 2026-03-26T18:06:48-0500
HOST: router                                             Loss%   Snt   Last   Avg  Best  Wrst StDev
  1.|-- 10.27.32.3                                        0.0%    10    9.7  12.4   8.0  19.3   3.3
  2.|-- po-309-352-rur202.maplegrove.mn.minn.comcast.net  0.0%    10   14.2  13.7  10.4  16.6   2.3
  3.|-- bundle-2021-tcr02.maplegrove.mn.minn.comcast.net  0.0%    10   15.9  12.1  10.0  15.9   1.9
  4.|-- 68.85.201.113                                     0.0%    10   14.5  14.0  10.9  16.9   2.1
  5.|-- bundle-3061-ccr201.roseville.mn.minn.comcast.net  0.0%    10   10.9  15.1  10.9  27.1   5.2
  6.|-- bundle-2103-tcr04.roseville.mn.minn.comcast.net   0.0%    10   14.6  14.4  10.7  18.4   2.7
  7.|-- bundle-2079-asbr04.roseville.mn.minn.comcast.net  0.0%    10   10.8  15.8  10.8  19.0   2.8
  8.|-- be-1004-ar-sp04.roseville.mn.minn.comcast.net    20.0%    10   12.9  13.0   9.9  15.9   1.9
  9.|-- be-2401-ar-ex01.roseville.mn.minn.comcast.net     0.0%    10   17.0  16.8  12.8  22.7   3.0
 10.|-- ???                                              100.0    10    0.0   0.0   0.0   0.0   0.0
11.|-- 104.21.16.168                                     0.0%    10   18.1  15.8  12.2  21.2   3.0

As you can see the last two tests successfully make it to their destination without timing out.

Oldest First
Selected Oldest First

Accepted Solution

Contributor

 • 

32 Messages

4 hours ago

The two IPv4 addresses continue to remain unblocked and working for over a week now [31-July-2026]. I am considering this issue officially resolved and have communicated this to my Comcast Corporate Escalation contact. It has been a long, grueling four months...

For anyone else who faces this sort of backbone routing situation in the future, prepare yourself for a heavy amount of structural misdirection from support along the way. If you have absolute proof that routing is being dropped inside the ISP network, use tools like traceroute or mtr to save your raw results along with continuous, timestamped historical updates.

In my particular case, two specific Cloudflare Anycast IPv4 addresses accessed over TCP port 443 (HTTPS web traffic) were being dropped deep inside a regional core routing cluster. Because Cloudflare utilizes a large range of Anycast IPs, the key to disproving a local equipment issue is testing adjacent IPs within the same subnet. If adjacent IPs route perfectly over your hardware but your target IPs hit a hard wall, the issue is an internal infrastructure filter.

To completely eliminate support desk comments that standard ICMP pings "aren't a reliable network test," I tweaked my diagnostics to run a TCP-based MTR on Port 443 using the following command syntax:
mtr -w -c 10 -i 1 -T -P 443 -4 [Target_IP]

This forces real web handshake packets over the wire, proving that application-layer web traffic is being killed exactly where the infrastructure trace dies.

Documenting this level of detail allows you to systematically push back on the common deflection tactics you will encounter:
  1. The Email Blacklist/DMARC Script: Support repeatedly pointed out that the destination IPs were listed on UCE blocklists via MXToolbox. Remind support that a web server handling HTTPS traffic on port 443 is not an SMTP mail server. Furthermore, front-line teams will openly admit Comcast doesn't use third-party UCE lists anyway, meaning the topic is brought up simply to muddy the waters.
  2. The "End-of-Life / Unapproved Hardware" Script: Support will eventually claim your customer-owned modem is obsolete or unsupported. This argument instantly loses all mathematical water the moment your side-by-side logs prove that exact same hardware is routing traffic to adjacent subnets perfectly.
This technical merry-go-round consumed roughly 3.5 months of the investigation. This is not an aggressive dig at the front-line support staff—I know you are bound by internal scripts and are genuinely trying to help talk frustrated customers off the ledge. I also appreciate the proactive dialogue regarding billing discounts, but as I pointed out in direct messages, no amount of financial credit was ever going to fix a core backbone IP blocking issue.

I am incredibly relieved this is resolved, and I hope this documentation helps the next subscriber navigate the pipeline.

(edited)

Gold Problem Solver

 • 

27.6K Messages

4 months ago

... 172.67.165.172 and 104.21.11.83 ...

Comcast/Xfinity appears to be blocking both of those IPs. Their Customer Security Assurance group may be able to help you with this. Contact info is at https://spa.xfinity.com/contact-us.

Contributor

 • 

32 Messages

@BruceW​ Thank you for the reply. I actually had tried that in Thursday as well. They said they couldn't assist nor check to see if either IPs are blocked. They then just transferred me to Internet support which is where the representative said a ticket was logged and to expect the issue to be fixed in 4 to 6 hours.

Gold Problem Solver

 • 

27.6K Messages

4 months ago

... They said they couldn't assist nor check to see if either IPs are blocked ....

Sorry to hear that. Sounds like another CSA FAIL.

Have you tried https://spa.xfinity.com/report?

Contributor

 • 

32 Messages

@BruceW​ - I had tried that a couple of times too. I suspect it's AI or some sort of automation that checks but both times I received an email within an hour like the following

Our review is complete

Your website unblocking request review

Thank you for your patience while we reviewed your request. We've confirmed that there is no xFi Advanced Security block related to the reported website. Please contact the website owner if access issues persist.

Gold Problem Solver

 • 

27.6K Messages

4 months ago

... there is no xFi Advanced Security block ...

That's nuts. It hardly matters if "there is no xFi Advanced Security block" if their routers are blocking an IP address. CSA controls IP blocking, and CSA should fix this, or explain why they don't want to unblock those IPs.

Official Employee

 • 

1.1K Messages

4 months ago

Hello @lnxfrk thank you for reaching out on our community forum. Since you did already try what @BruceW suggested as well as trying tickets with CSA we would love to assist you further. 

Please send us a direct message with your full name and service address so that we can assist you further. To do so, click on the chat icon located at the top right of this forum's page. Here are the detailed steps to direct message us: 

  • Click "Sign In" if necessary
  • Click the "Direct Message” icon (upper right corner of this page)
  • Click the "New message" (pencil and paper) icon
  • Type "Xfinity Support" in the "to" line and select "Xfinity Support" from the drop-down list
  • Type your message in the text area near the bottom of the window
  • Press Enter to send your message

 

Contributor

 • 

32 Messages

message left in chat at 11:37 am CDT on 29-March-2026

(edited)

Expert

 • 

119.7K Messages

4 months ago

@lnxfrk @XfinityAbby 

Please circle back here and post any possible solutions for the issue here in these open public forums so that all readers here may benefit from the exchange / info. This is in keeping with the spirit for which these public help forums were originally intended. Thank you.

Contributor

 • 

32 Messages

4 months ago

Just to keep the thread up to date. It was suggested for me to call CSA again to report the issue. The first person I contacted at CSA said that wasn't something they can normally help with but then redirected my call to a Tier 2 person for internet support. The person from internet support seemed to understand the problem and gathered some additional information from me such as what site I was being blocked from as well as the IP address currently assigned to my home. A ticket was logged and I was told to expect a call within 48 hours or so. It's currently past the 48 hours but that's fine. I have confirmed the site (or the two IPs) are still being blocked / null routed. 

Contributor

 • 

32 Messages

2 months ago

A couple of months later... still an issue. 

The only thing that has happened was receiving a call from support a whole back and they reported they did not find anything which they can see that may be blocking those IPs. During the call the person did mention that they can see those IPs on a UCE blocklist on mxtoolbox.com. After the call with support I did a bit research on mxtoolbox.com and had noted I could see known working CF proxy IPs also listed on the same UCE block list so I think that pretty much disproves this being the issue plus what I gathered that Comcast does not use those block lists for routing. 

Official Employee

 • 

1.4K Messages

I appreciate you circling back to let us know where things stand lnxfrk. We still want to help and pickup where we left off, so since it's been awhile, please send us a new message with your full name and full address so we may reauthenticate your account 👍

 

Contributor

 • 

32 Messages

@XfinitySeth​ I just replied with that information which I see you replied to my update last night as well. Thank you. 

Contributor

 • 

32 Messages

10 days ago

Well, good news, after nearly four months it appears we've made progress on this.

As of noon CDT today (21-July-2026) traffic to the two IPs began working again.

=== UNBLOCKED AT 2026-07-21T12:00:01 ===
Start: 2026-07-21T12:00:01-0500
HOST: loki                                             Loss%   Snt   Last   Avg  Best  Wrst StDev
  1.|-- router                                            0.0%     5    0.4   0.3   0.2   0.4   0.1
  2.|-- 10.27.32.2                                        0.0%     5   35.9  19.5   9.2  35.9  13.2
  3.|-- po-309-351-rur201.maplegrove.mn.minn.comcast.net  0.0%     5   29.9  17.6   8.5  29.9   8.4
  4.|-- bundle-2018-tcr03.maplegrove.mn.minn.comcast.net  0.0%     5   19.4  15.0   8.1  22.4   6.3
  5.|-- 68.85.201.117                                    20.0%     5   21.3  14.7   8.5  21.3   5.6
  6.|-- bundle-3061-ccr201.roseville.mn.minn.comcast.net  0.0%     5   10.1  20.6  10.1  33.6  11.2
  7.|-- bundle-2101-tcr02.roseville.mn.minn.comcast.net   0.0%     5    8.9  18.4   8.9  29.1   9.1
  8.|-- bundle-2065-asbr01.roseville.mn.minn.comcast.net  0.0%     5    9.3  19.2   9.3  39.4  13.0
  9.|-- be-1001-ar-sp01.roseville.mn.minn.comcast.net    20.0%     5   15.2  18.1  10.5  34.6  11.2
 10.|-- be-2101-ar-ex01.roseville.mn.minn.comcast.net     0.0%     5   11.9  19.7  11.3  41.2  12.6
 11.|-- ???                                              100.0     5    0.0   0.0   0.0   0.0   0.0
 12.|-- 162.158.212.21                                   20.0%     5   23.4  24.0  19.8  26.6   3.1
 13.|-- 172.67.165.172                                   20.0%     5   56.0  30.1  16.2  56.0  17.8

=== UNBLOCKED AT 2026-07-21T12:00:01 ===
Start: 2026-07-21T12:00:58-0500
HOST: loki                                             Loss%   Snt   Last   Avg  Best  Wrst StDev
  1.|-- router                                            0.0%     5    0.3   0.3   0.2   0.7   0.2
  2.|-- 10.27.32.3                                        0.0%     5   16.6   9.7   5.3  16.6   4.1
  3.|-- po-309-352-rur202.maplegrove.mn.minn.comcast.net  0.0%     5   16.8  12.5   8.5  17.4   4.3
  4.|-- bundle-2022-tcr03.maplegrove.mn.minn.comcast.net  0.0%     5   16.8  12.5  10.0  16.8   2.8
  5.|-- 68.85.201.117                                     0.0%     5   17.2  13.9   9.8  22.0   5.5
  6.|-- bundle-3061-ccr201.roseville.mn.minn.comcast.net  0.0%     5   11.4  11.8   9.7  16.1   2.5
  7.|-- bundle-2102-tcr03.roseville.mn.minn.comcast.net   0.0%     5   11.7  11.3   9.2  13.3   1.6
  8.|-- bundle-2070-asbr02.roseville.mn.minn.comcast.net 20.0%     5   11.1  11.2  10.6  12.2   0.7
  9.|-- 96.108.10.158                                    40.0%     5   10.5  10.2   9.6  10.5   0.5
 10.|-- be-2201-ar-ex01.roseville.mn.minn.comcast.net    20.0%     5   14.5  11.7  10.6  14.5   1.9
 11.|-- ???                                              100.0     5    0.0   0.0   0.0   0.0   0.0
 12.|-- 162.158.212.21                                    0.0%     5   12.6  12.4  11.0  15.3   1.8
 13.|-- 104.21.11.83                                      0.0%     5   11.8  12.1  10.6  16.2   2.4

I'm going to continue to monitor this to confirm whatever changed sticks. I'll report back to this forum post once I'm confident this is resolved.

Official Employee

 • 

1.4K Messages

I'm glad you've seen some good news lnxfrk! How have things been since this comment?

 

Contributor

 • 

32 Messages

@XfinitySeth​ Connectivity is still working and stable to both IPs since mid day on the 21st of July.

========================================================================
=== SYSTEM CHECK RUN AT 2026-07-21T12:30:01 ===
========================================================================

--- TARGET IP: 172.67.165.172 over TCP port 443 ---
Start: 2026-07-21T12:30:01-0500
HOST: loki                                             Loss%   Snt   Last   Avg  Best  Wrst StDev
  1.|-- router                                            0.0%     5    0.5   0.4   0.2   0.6   0.2
  2.|-- 10.27.32.2                                        0.0%     5    6.6   8.2   6.6  10.6   1.5
  3.|-- po-309-351-rur201.maplegrove.mn.minn.comcast.net  0.0%     5   12.0   8.5   4.7  12.0   2.6
        po-309-352-rur202.maplegrove.mn.minn.comcast.net
  4.|-- bundle-2023-tcr04.maplegrove.mn.minn.comcast.net  0.0%     5    5.7  10.5   5.7  12.5   2.9
        bundle-2019-tcr04.maplegrove.mn.minn.comcast.net
        bundle-2022-tcr03.maplegrove.mn.minn.comcast.net
        bundle-2020-tcr01.maplegrove.mn.minn.comcast.net
        bundle-2018-tcr03.maplegrove.mn.minn.comcast.net
  5.|-- 68.85.201.117                                     0.0%     5   23.5  11.1   5.7  23.5   7.1
        68.85.201.113
        68.85.201.41
  6.|-- bundle-3061-ccr201.roseville.mn.minn.comcast.net  0.0%     5   11.7  11.5   9.1  14.8   2.1
  7.|-- bundle-2101-tcr02.roseville.mn.minn.comcast.net   0.0%     5   11.0  10.8   8.4  16.6   3.4
        bundle-2100-tcr01.roseville.mn.minn.comcast.net
        bundle-2103-tcr04.roseville.mn.minn.comcast.net
  8.|-- bundle-2077-asbr04.roseville.mn.minn.comcast.net  0.0%     5    9.1   9.9   9.1  11.1   0.9
        bundle-2064-asbr01.roseville.mn.minn.comcast.net
        bundle-2075-asbr03.roseville.mn.minn.comcast.net
        bundle-2069-asbr02.roseville.mn.minn.comcast.net
        bundle-2078-asbr04.roseville.mn.minn.comcast.net
  9.|-- 96.108.10.158                                     0.0%     5  2058. 625.3   8.1 2058. 916.1
        be-1001-ar-sp01.roseville.mn.minn.comcast.net
        be-1003-ar-sp03.roseville.mn.minn.comcast.net
 10.|-- be-2301-ar-ex01.roseville.mn.minn.comcast.net     0.0%     5   10.6 213.6  10.2 1023. 452.8
        be-2401-ar-ex01.roseville.mn.minn.comcast.net
        be-2201-ar-ex01.roseville.mn.minn.comcast.net
 11.|-- ???                                              100.0     5    0.0   0.0   0.0   0.0   0.0
 12.|-- 162.158.212.21                                    0.0%     5   11.5  15.5  11.5  19.6   3.1
 13.|-- ???                                              100.0     5    0.0   0.0   0.0   0.0   0.0
 14.|-- 172.67.165.172                                    0.0%     5   18.2  18.1  17.7  18.5   0.3

--- TARGET IP: 104.21.11.83 over TCP port 443 ---
Start: 2026-07-21T12:31:19-0500
HOST: loki                                             Loss%   Snt   Last   Avg  Best  Wrst StDev
  1.|-- router                                            0.0%     5    0.3   0.3   0.2   0.4   0.1
  2.|-- 10.27.32.2                                        0.0%     5   13.6  10.2   7.3  13.6   2.9
        10.27.32.3
  3.|-- po-309-351-rur201.maplegrove.mn.minn.comcast.net  0.0%     5    7.9   9.4   7.8  11.9   1.7
        po-309-352-rur202.maplegrove.mn.minn.comcast.net
  4.|-- bundle-2023-tcr04.maplegrove.mn.minn.comcast.net  0.0%     5    9.8   9.3   8.5  10.0   0.6
        bundle-2020-tcr01.maplegrove.mn.minn.comcast.net
        bundle-2018-tcr03.maplegrove.mn.minn.comcast.net
        bundle-2017-tcr02.maplegrove.mn.minn.comcast.net
  5.|-- 68.85.201.41                                      0.0%     5   15.2  11.2   9.5  15.2   2.3
        68.85.201.121
  6.|-- bundle-3061-ccr201.roseville.mn.minn.comcast.net  0.0%     5   10.6 216.7   8.8 1032. 456.0
  7.|-- bundle-2102-tcr03.roseville.mn.minn.comcast.net   0.0%     5   10.7   8.6   6.5  10.7   1.6
        bundle-2103-tcr04.roseville.mn.minn.comcast.net
        bundle-2101-tcr02.roseville.mn.minn.comcast.net
  8.|-- bundle-2066-asbr01.roseville.mn.minn.comcast.net  0.0%     5  1026. 214.5   8.8 1026. 453.7
        bundle-2073-asbr03.roseville.mn.minn.comcast.net
        bundle-2076-asbr04.roseville.mn.minn.comcast.net
        bundle-2069-asbr02.roseville.mn.minn.comcast.net
        bundle-2077-asbr04.roseville.mn.minn.comcast.net
  9.|-- 96.108.10.158                                     0.0%     5  1019. 212.0   9.4 1019. 451.2
        be-1003-ar-sp03.roseville.mn.minn.comcast.net
        be-1001-ar-sp01.roseville.mn.minn.comcast.net
 10.|-- be-2301-ar-ex01.roseville.mn.minn.comcast.net     0.0%     5   13.0 215.7   9.1 1032. 456.8
        be-2101-ar-ex01.roseville.mn.minn.comcast.net
        be-2201-ar-ex01.roseville.mn.minn.comcast.net
 11.|-- ???                                              100.0     5    0.0   0.0   0.0   0.0   0.0
 12.|-- 162.158.212.21                                    0.0%     5   11.6  11.4   9.4  13.5   1.7
 13.|-- ???                                              100.0     5    0.0   0.0   0.0   0.0   0.0
 14.|-- 104.21.11.83                                      0.0%     5   22.2  18.9  16.0  22.2   2.2

I'll send a final update on the status to Comcast Corporate Escalation after the weekend is over. 

Official Employee

 • 

1.9K Messages

Sounds like a plan. Please let us know if anything else comes up as well.

I am an Official Xfinity Employee.
Official Employees are from multiple teams within Xfinity: CARE, Product, Leadership.
We ask that you post publicly so people with similar questions may benefit from the conversation.
Was your question answered? Please mark as Best Answer.tick
forum icon

New to the Community?

Start Here