summaryrefslogtreecommitdiff
path: root/79/b273f0d22fbb3cda5acd0a1119b4a8c726f9a5
blob: 5653e56f19311ca01136ab29beb4721ad571d05c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
Return-Path: <hurricanewarn1@aol.com>
Received: from smtp1.linuxfoundation.org (smtp1.linux-foundation.org
	[172.17.192.35])
	by mail.linuxfoundation.org (Postfix) with ESMTPS id BA85BFBC
	for <bitcoin-dev@lists.linuxfoundation.org>;
	Wed,  2 Sep 2015 13:44:58 +0000 (UTC)
X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6
Received: from omr-m018.mx.aol.com (omr-m018e.mx.aol.com [204.29.186.17])
	by smtp1.linuxfoundation.org (Postfix) with ESMTPS id 59FE51D0
	for <bitcoin-dev@lists.linuxfoundation.org>;
	Wed,  2 Sep 2015 13:44:56 +0000 (UTC)
Received: from mtaomg-aak02.mx.aol.com (mtaomg-aak02.mx.aol.com [172.27.2.228])
	by omr-m018.mx.aol.com (Outbound Mail Relay) with ESMTP id 643CD3800092
	for <bitcoin-dev@lists.linuxfoundation.org>;
	Wed,  2 Sep 2015 09:44:55 -0400 (EDT)
Received: from core-ada01c.mail.aol.com (core-ada01.mail.aol.com [172.27.0.1])
	by mtaomg-aak02.mx.aol.com (OMAG/Core Interface) with ESMTP id
	16C5238000081 for <bitcoin-dev@lists.linuxfoundation.org>;
	Wed,  2 Sep 2015 09:44:55 -0400 (EDT)
Received: from 162.227.126.201 by webprd-a78.mail.aol.com (10.72.92.217) with
	HTTP (WebMailUI); Wed, 02 Sep 2015 09:44:52 -0400
Date: Wed, 2 Sep 2015 09:44:53 -0400
From: hurricanewarn1@aol.com
To: bitcoin-dev@lists.linuxfoundation.org
Message-Id: <14f8e4d93c5-1774-fc36@webprd-a78.mail.aol.com>
In-Reply-To: <1954364.4gG0cHmrlB@crushinator>
MIME-Version: 1.0
Content-Type: multipart/alternative; 
	boundary="----=_Part_77569_518175199.1441201492930"
X-MB-Message-Source: WebUI
X-MB-Message-Type: User
X-Mailer: JAS STD
X-Originating-IP: [162.227.126.201]
x-aol-global-disposition: G
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mx.aol.com;
	s=20150623; t=1441201495;
	bh=QcD0jW9wfBMUo1qYGTi/xBqDTGEn1UuMGzEcojjLcI4=;
	h=From:To:Subject:Message-Id:Date:MIME-Version:Content-Type;
	b=tIHkJ1mXPFdOZcfL7zYqJSGxBoookoWml7AQIt7VNqemMCSqLZUFd0s0qXLEs1/tp
	lwGYiduBEEU4jkMJ3ST8KD+EHYfMaEK2yU/OFWhnoPj7d/qZpfOk3u99mLY/1Fhmu/
	pjr2dAxdXUKiXbfARtRPqRG/1l+2bnT7pKfARVC0=
x-aol-sid: 3039ac1b02e455e6fd577d33
X-Spam-Status: No, score=-0.3 required=5.0 tests=BAYES_05,DKIM_SIGNED,
	DKIM_VALID,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,HTML_MESSAGE,
	RCVD_IN_DNSWL_NONE,T_RP_MATCHES_RCVD autolearn=no version=3.3.1
X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on
	smtp1.linux-foundation.org
Subject: Re: [bitcoin-dev] AT&T has effectively banned Bitcoin nodes via
 utilizing private subnets.
X-BeenThere: bitcoin-dev@lists.linuxfoundation.org
X-Mailman-Version: 2.1.12
Precedence: list
List-Id: Bitcoin Development Discussion <bitcoin-dev.lists.linuxfoundation.org>
List-Unsubscribe: <https://lists.linuxfoundation.org/mailman/options/bitcoin-dev>,
	<mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=unsubscribe>
List-Archive: <http://lists.linuxfoundation.org/pipermail/bitcoin-dev/>
List-Post: <mailto:bitcoin-dev@lists.linuxfoundation.org>
List-Help: <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=help>
List-Subscribe: <https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev>,
	<mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=subscribe>
X-List-Received-Date: Wed, 02 Sep 2015 13:44:58 -0000

------=_Part_77569_518175199.1441201492930
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit

42 in the whole world, and I'm one of them. Clearly that is a problem, do you even know about AT&T or are you in another country? Cause that statement is utterly ridiculous given the fact there are hundreds of millions of people using AT&T. I was simply sharing my knowledge on this issue since it poses a threat to the health of the bitcoin network, no need for personal attacks. 

None of my accusations were false, there is a firewall in the DVR that is uncontrolled and all ports are blocked via private subnets and no fixed public IP allowed unless you pay. I confirmed every one of these details with AT&T technicians or I wouldn't be saying them.

 

 

 

-----Original Message-----
From: Matt Whitlock <bip@mattwhitlock.name>
To: hurricanewarn1 <hurricanewarn1@aol.com>
Sent: Wed, Sep 2, 2015 5:34 am
Subject: Re: [bitcoin-dev] AT&T has effectively banned Bitcoin nodes via utilizing private subnets.


According to BitNodes, 42 Bitcoin nodes are running on AT&T's
network:

https://getaddr.bitnodes.io/nodes/?q=AT%26T

So I'm thinking
there's nothing wrong with AT&T's default network configuration.

Frankly, the
things you've been writing strongly suggest that you aren't very knowledgeable
about computer networking. Instead of jumping right into making wild accusations
about AT&T, you probably should find someone knowledgeable to verify your
claims.


On Wednesday, 2 September 2015, at 5:20 am, Zach G via bitcoin-dev
wrote:
> First off I couldn't synch the wallet, it said no block source
available and there was zero connections. Bitcoin was literally getting thottled
every second. It would not even allow the connection to get block source. EVERY
port was blocked, making exceptions in the router firewall did nothing. I was
forced to use Blockchain.info which is a major security risk.
> 
> Secondly, I
am developing a program using Bitcoin Python modules, so I login to my computer
like it's a server and it was flat out rejecting the connection. I could not run
any code until this got fixed, and of course needed the block source to even do
anything. 
> 
> If Bitcoin Core worked but 8333 was blocked I would not be
emailing the list. Bitcoin Core was crippled and unusable due to the AT&T
settings, and they tried hard to get me to buy monthly subscriptions to get the
answer. This makes it likely that Bitcoin Core is unusable for most AT&T
customers and other ISPs, hence the massive node decline. I'm sure this disrupts
alot of other people besides Bitcoiners too, hence the monthly subscriptions
geared towards people who can't figure out their connection situation.
> 
>
AT&T literally blocked access to static IP if you don't buy one, so it wasn't a
normal network setup. Unfortunately the same security used to stop hackers and
viruses stops Bitcoin too, so this is probably the settings for almost every
router in the country. Nodes are in fact declining worldwide, down 15% in the
past year alone. Community needs to speak up and also educate before this gets
completely out of control. https://getaddr.bitnodes.io/dashboard/?days=365 6,000
nodes is pathetic as it is and it's constantly declining.
>  
> 
>  
> 
>
-----Original Message-----
> From: Matt Whitlock <bip@mattwhitlock.name>
> To:
hurricanewarn1 <hurricanewarn1@aol.com>
> Sent: Wed, Sep 2, 2015 4:32 am
>
Subject: Re: [bitcoin-dev] AT&T has effectively banned Bitcoin nodes via
utilizing private subnets.
> 
> 
> Respectfully, what the heck are you
talking about? Practically every home LAN
> runs on a private subnet. My own
desktop computer has the IP address
> 192.168.1.34, which is in a private
subnet. This doesn't prevent my Bitcoin Core
> node from making outbound
connections to other nodes. Moreover, almost all home
> Internet connections in
the world run on dynamically assigned IP addresses.
> Again, this does not
cause any problems for connecting outbound to other Bitcoin
> nodes. It's true
that your node can't accept incoming connections unless you
> forward port 8333
on your router to your computer, but you don't need to be able
> to accept
incoming connections to participate in the Bitcoin network.
> 
> 
> On
>
Wednesday, 2 September 2015, at 3:20 am, Zach G via bitcoin-dev wrote:
> > 
>
>  I
> was about to buy a VPS for Bitcoin, but I really do need Bitcoin Core
for
> business reasons so I didn't give up. I once again thoroughly went
through my
> computer and made sure there was nothing blocking 8333, a couple
useful tools
> are CurrPorts and TCPView. I went through the router to make
sure there was no
> block of port 8333. I researched everything thoroughly and
was sure these were
> the right settings, but Bitcoin was still getting
throttled every second and
> stuck in sys_sent, and python kept saying the
target was rejecting the
> connection.
> > 
> > I finally stumbled upon
subnet settings, and saw that I had a
> private subnet, one of the few IPs that
are private on earth (
> https://www.arin.net/knowledge/address_filters.html ).
Uverse put all their
> customers on a private subnet by default. This made my
computer not only hidden
> but unroutable for any computer on the Bitcoin
network. That alone is enough to
> totally stop Bitcoin connections on any
port, but they made it even crazier by
> generating a dynamic IP that changes
all the time, so public IP was meaningless
> for my computer. 
> > 
> > I
switched over to a public subnet, and right there was
> a checkbox to allow
incoming connections. My static IP showed for a minute then
> became
dynamic/hidden again without me even touching anything. The final
> roadblock
was AT&T charges $15-30/month for a public static IP, which is
> obviously
insane and actually one could argue that violates their own terms of
> service.
So the router was still ignoring my public IP settings simply because I
>
wasn't paying for a public IP, and intentionally changing the settings back.
I
> asked for a free public IP and there was no response for awhile.
> > 
> >
I found
> this article on cryptocoinnews while working out:
>
https://www.cryptocoinsnews.com/isps-intentionally-blocking-bitcoin/ It's
based
> on the first email I sent, and was displayed prominently on their front
page. I
> posted a tweet publicly about it which referenced AT&T (
>
https://twitter.com/turtlehurricane/status/638930065980551168 ) and believe
it
> or not I had a static public IP and port 8333 was open about 1 minute
later. I
> don't know if it was a coincidence cause I already messaged them to
please do
> that an hour before, or if that article and tweet spurred them to
action. The
> timing was so ridiculous I think it's the latter. Without twitter
I probably
> wouldn't have succeeded, the technicians on twitter actually
answered all my
> questions 24/7 unlike phone technicians which were clueless
and trying to sell
> me a subscription for connection services help. And shout
out to cryptocoinnews
> for making this public. 
> > 
> > So to clarify, it
appears AT&T has not blocked
> port 8333 itself, but rather effectively blocked
all ports via the private
> subnet, which makes the computer hidden and
unroutable for incoming peers.
> Although this severely limits functionality
and cripples the ability to run a
> full node and many other programs it is
understandable, since it just about 100%
> prevents hackers from getting in,
since they can't even see your computer. What
> isn't understandable is that
AT&T technicians did not inform me about this until
> I changed the settings
myself, despite the fact it is a very obvious cause of
> ports being blocked.
It's probably just ignorance since AT&T has so many complex
> network settings
it's hard to keep track of, although I have a suspicion that
> someone in their
command chain is withholding information in an attempt to make
> them buy a
$15/month connection service, and once they buy that another
> $15-30/month is
needed to get the static IP.
> > 
> > As far as I know there is no
> easy to
find info on the internet about private subnets crippling the ability to
> use
Bitcoin. I believe this needs to be explicitly said in instructions for
>
running a full node, maybe it wasn't a problem in 2009 but now it is a major
>
issue. On default settings Bitcoin is 100% blocked, and most people do not
have
> the time or motivation to fix this. I talked to at least 10 AT&T
technicians and
> worked on it 2-3 days straight, did not receive the right
answer until I found
> it myself, although they certainly gave me some useful
clues about how the
> network works.
> > 
> > I am very happy that AT&T fixed
it, since other ISPs like
> Comcast appeared even worse. I openly talked with
them about Bitcoin and they
> showed no prejudice, might've actually made them
more willing to help me cause
> otherwise they would think I'm a hacker.
> >

> > tl;dr The good news is anyone
> with AT&T can be a full node by getting a
public static IP, the bad news is
> almost no one will figure this out unless
we as a community make it well known.
> I guarantee node numbers will improve
if this information is spread to everyone.
> Database size and computing
expenditures is simply not the reason people don't
> run full nodes, it's
because their ISP has made it just about impossible without
> shelling out
nearly 100% more money per month. If you don't pay the fee AT&T
> would never
tell you about the private subnet, at least based on my
> experience.
> > 
>
> 
> > -----Original Message-----
> > From: odinn
>
<odinn.cyberguerrilla@riseup.net>
> > To: hurricanewarn1
>
<hurricanewarn1@aol.com>; bitcoin-dev <bitcoin-dev@lists.linuxfoundation.org>
>
>
> Sent: Tue, Sep 1, 2015 3:16 am
> > Subject: Re: [bitcoin-dev] AT&T has
>
effectively banned Bitcoin nodes by closing port 8333 via a hidden firewall
in
> the cable box
> > 
> > 
> > -----BEGIN PGP SIGNED MESSAGE-----
> >
Hash: SHA512
> >
> 
> > Another note on this subject
> > to add to the stuff
people have already
> >
> mentioned...
> > 
> > If you have the AT&T
> >
landline but don't use AT&T's
> standard internet /
> > tv (what they call
Uverse)
> > offering - that is, if you
> prefer to use
> > some local
internet provider - you are
> > probably better off
> (in terms
> > of
avoiding not only this sort of
> > blockage/censorship but as
> well,
> >
potentially getting a better privacy policy
> > that isn't going to
> be
> >
like AT&T's long-term data retention).  You can check
> > directly with
> >
>
the various local small ISPs to see what their policies
> > are
> >
specifically
> on ports and whatnot.
> > 
> > Ideally your ISP should let
>
> you:
> > 
> > port
> forward to SOMEPORTNUMBER for tcp and udp
> > 
> >
(above may or may not
> > be
> helpful for some if you are using
> >
decentralized markets)
> > 
> > have port
> 8333
> > open
> > 
> > (above
is for bitcoin of course)
> > 
> > Supposing you have
> FTTN because you
> >
are paying a local ISP for
> > internet service, and that
> local ISP has
contracted
> > with AT&T to be
> > able to provide service in an
> area where
old-style DSL has been
> > phased
> > out, thus your local ISP is
>
essentially providing you AT&T FTTN.
> > (FTTN
> > is Fiber to the Node,
FTTN-BP
> is FTTN Bonded Pair).  Even if a
> > local ISP has
> > its own
privacy policy
> posted which is different from
> > AT&T, everything is
> >
subject to AT&T data
> retention because the FTTN.
> > So get yourself a VPN
(or set
> > up your own) for
> your connection. Tor
> > will run through the
VPN.
> > 
> > General
> > observations
> - TWC stores your IP and other
stuffs for 6
> > months or longer. 
> > Same for
> Comcast.  Verizon retains
your stuffs for
> > 18 month minimum, probably
> >
> longer though.
Qwest/Century, 1 year.
> > Cox, 6 months.  AT&T retains for
> longer
> > than
a year.  This is just
> > what they are telling you, the reality
> is it's
>
> probably longer due to
> > stuff like
> > this:
> >
>
https://www.lawfareblog.com/odni-and-doj-release-last-section-215-collec
> >
>
tion-order
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > Zach
> >
G via bitcoin-dev:
> >
> > I have been struggling to get port 8333 open all
year, I
> > gave up
> > > and
> was using blockchain for months despite a
strong desire to
> > stay
> > > on
> Bitcoin Core, but now the issue has
reached critical mass since
> > >
> > I'm
> using the python Bitcoin server
module. I have literally spent
> > > my entire
> >
> day trying to open 8333,
I thoroughly made sure it was
> > > open on the router
> and
> > computer and
it's still closed. Strangely
> > > enough I got it open for
> 30 seconds
> >
once today but something closed
> > > it immediately.
> > > 
> > >
> After
hours of phone
> > calls and messaging AT&T finally told me the
> > > truth
>
of what was going on, and
> > only because I noticed it myself
> > > and
demanded
> an answer. The internet is
> > being routed through a
> > >
DVR/cable box, and
> they confirmed the DVR also has a
> > firewall. To
> > >
make this even more
> absurd they refused to turn the firewall
> > off
> > >
because it is their
> equipment. So effectively they can firewall any
> > >
>
> port they want even if
> the customer asks them not to, in the
> > >
unlikely event
> > the customer
> figures it out.
> > > 
> > > Perhaps this
is the driving force behind the
> >
> inexplicable and
> > > massive decline
in Bitcoin nodes. Bitcoin is being
> censored
> > by the
> > > ISPs
themselves, and they won't even tell you that. I
> had to get in
> > >
> >
touch with headquarters and threaten to rip it out of the
> wall to
> > > get
a
> > proper answer.
> > > 
> > > 
> > > 
> > >
>
_______________________________________________
> > bitcoin-dev mailing
> > >
list
> bitcoin-dev@lists.linuxfoundation.org 
> > >
> >
>
https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
> > > 
> > 
>
> -
> --
> > 
> > http://abis.io ~
> > "a protocol concept to enable
decentralization
> >
> and
> > expansion of a giving economy, and a new
social
> > good"
> >
> https://keybase.io/odinn
> > -----BEGIN PGP
> >
SIGNATURE-----
> > 
> >
>
iQEcBAEBCgAGBQJV5VDeAAoJEGxwq/inSG8CvkIH/jy4Vo+My3xeBdvFQmxkJWyQ
> >
>
U5mv2zWEvBYw71Xy1EDzQY1AhEBmatUU1eu2AbOqXdUR4511FxCNzFmTxy6roEiz
> >
>
EehBkvXNbBCbEzLRisjxuQw34OKM+xfieCqE1mzJok2uSdLMMQLcbWL1/k3/OmS5
> >
>
9O9z/wMXqU1Jc19MTK+vF1Lz5ilnRn3hEbTaCN3ivYnYFa0DpBH9r0Y07UcoJ6Wr
> >
>
ui/x0sSSuupAGzOkZ75HQ8yeQXckeAu6TB3/jE8QEqNUmAJkmR8eK4ofXZWFrIjy
> >
>
mOKeQL4c+jRQnTR8pt+y89g2QIpzFoHaV5T+WvQuC1t8xNOrxLgYFXWgl0dhoYE=
> > =UCLC
>
>
> -----END
> > PGP SIGNATURE-----
> > 
> >  
> 
>  

 

------=_Part_77569_518175199.1441201492930
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: 7bit

<font color='black' size='2' face='arial'>42<font size="2"> in the whole world, and I'm one of them. Clearly that is a problem, do you even know about AT&amp;T or are you in another country? Cause that statement is utterly ridiculous given the fact there are hundreds of millions of people using AT&amp;T. I was simply sharing my knowledge on this issue since it poses a threat to the health of the bitcoin network, no need for personal attacks. <br>
<br>
None of my accusations were false, there is a firewall in the DVR that is uncontrolled and all ports are blocked via private subnets and no fixed public IP allowed unless you pay. I confirmed every one of these details with AT&amp;T technicians or I wouldn't be saying them.<br>
</font>

<div> <br>

</div>



<div> <br>

</div>



<div> <br>

</div>



<div style="font-family:arial,helvetica;font-size:10pt;color:black">-----Original Message-----<br>

From: Matt Whitlock &lt;bip@mattwhitlock.name&gt;<br>

To: hurricanewarn1 &lt;hurricanewarn1@aol.com&gt;<br>

Sent: Wed, Sep 2, 2015 5:34 am<br>

Subject: Re: [bitcoin-dev] AT&amp;T has effectively banned Bitcoin nodes via utilizing private subnets.<br>

<br>




<div id="AOLMsgPart_1_a080680d-31e4-4cf5-962c-c9fc36a67b01" style="margin: 0px;font-family: Tahoma, Verdana, Arial, Sans-Serif;font-size: 12px;color: #000;background-color: #fff;">

<pre style="font-size: 9pt;"><tt>According to BitNodes, 42 Bitcoin nodes are running on AT&amp;T's
network:

<a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="https://getaddr.bitnodes.io/nodes/?q=AT%26T" target="_blank">https://getaddr.bitnodes.io/nodes/?q=AT%26T</a>

So I'm thinking
there's nothing wrong with AT&amp;T's default network configuration.

Frankly, the
things you've been writing strongly suggest that you aren't very knowledgeable
about computer networking. Instead of jumping right into making wild accusations
about AT&amp;T, you probably should find someone knowledgeable to verify your
claims.


On Wednesday, 2 September 2015, at 5:20 am, Zach G via bitcoin-dev
wrote:
&gt; First off I couldn't synch the wallet, it said no block source
available and there was zero connections. Bitcoin was literally getting thottled
every second. It would not even allow the connection to get block source. EVERY
port was blocked, making exceptions in the router firewall did nothing. I was
forced to use Blockchain.info which is a major security risk.
&gt; 
&gt; Secondly, I
am developing a program using Bitcoin Python modules, so I login to my computer
like it's a server and it was flat out rejecting the connection. I could not run
any code until this got fixed, and of course needed the block source to even do
anything. 
&gt; 
&gt; If Bitcoin Core worked but 8333 was blocked I would not be
emailing the list. Bitcoin Core was crippled and unusable due to the AT&amp;T
settings, and they tried hard to get me to buy monthly subscriptions to get the
answer. This makes it likely that Bitcoin Core is unusable for most AT&amp;T
customers and other ISPs, hence the massive node decline. I'm sure this disrupts
alot of other people besides Bitcoiners too, hence the monthly subscriptions
geared towards people who can't figure out their connection situation.
&gt; 
&gt;
AT&amp;T literally blocked access to static IP if you don't buy one, so it wasn't a
normal network setup. Unfortunately the same security used to stop hackers and
viruses stops Bitcoin too, so this is probably the settings for almost every
router in the country. Nodes are in fact declining worldwide, down 15% in the
past year alone. Community needs to speak up and also educate before this gets
completely out of control. <a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="https://getaddr.bitnodes.io/dashboard/?days=365" target="_blank">https://getaddr.bitnodes.io/dashboard/?days=365</a> 6,000
nodes is pathetic as it is and it's constantly declining.
&gt;  
&gt; 
&gt;  
&gt; 
&gt;
-----Original Message-----
&gt; From: Matt Whitlock &lt;<a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="mailto:bip@mattwhitlock.name">bip@mattwhitlock.name</a>&gt;
&gt; To:
hurricanewarn1 &lt;<a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="mailto:hurricanewarn1@aol.com">hurricanewarn1@aol.com</a>&gt;
&gt; Sent: Wed, Sep 2, 2015 4:32 am
&gt;
Subject: Re: [bitcoin-dev] AT&amp;T has effectively banned Bitcoin nodes via
utilizing private subnets.
&gt; 
&gt; 
&gt; Respectfully, what the heck are you
talking about? Practically every home LAN
&gt; runs on a private subnet. My own
desktop computer has the IP address
&gt; 192.168.1.34, which is in a private
subnet. This doesn't prevent my Bitcoin Core
&gt; node from making outbound
connections to other nodes. Moreover, almost all home
&gt; Internet connections in
the world run on dynamically assigned IP addresses.
&gt; Again, this does not
cause any problems for connecting outbound to other Bitcoin
&gt; nodes. It's true
that your node can't accept incoming connections unless you
&gt; forward port 8333
on your router to your computer, but you don't need to be able
&gt; to accept
incoming connections to participate in the Bitcoin network.
&gt; 
&gt; 
&gt; On
&gt;
Wednesday, 2 September 2015, at 3:20 am, Zach G via bitcoin-dev wrote:
&gt; &gt; 
&gt;
&gt;  I
&gt; was about to buy a VPS for Bitcoin, but I really do need Bitcoin Core
for
&gt; business reasons so I didn't give up. I once again thoroughly went
through my
&gt; computer and made sure there was nothing blocking 8333, a couple
useful tools
&gt; are CurrPorts and TCPView. I went through the router to make
sure there was no
&gt; block of port 8333. I researched everything thoroughly and
was sure these were
&gt; the right settings, but Bitcoin was still getting
throttled every second and
&gt; stuck in sys_sent, and python kept saying the
target was rejecting the
&gt; connection.
&gt; &gt; 
&gt; &gt; I finally stumbled upon
subnet settings, and saw that I had a
&gt; private subnet, one of the few IPs that
are private on earth (
&gt; <a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="https://www.arin.net/knowledge/address_filters.html" target="_blank">https://www.arin.net/knowledge/address_filters.html</a> ).
Uverse put all their
&gt; customers on a private subnet by default. This made my
computer not only hidden
&gt; but unroutable for any computer on the Bitcoin
network. That alone is enough to
&gt; totally stop Bitcoin connections on any
port, but they made it even crazier by
&gt; generating a dynamic IP that changes
all the time, so public IP was meaningless
&gt; for my computer. 
&gt; &gt; 
&gt; &gt; I
switched over to a public subnet, and right there was
&gt; a checkbox to allow
incoming connections. My static IP showed for a minute then
&gt; became
dynamic/hidden again without me even touching anything. The final
&gt; roadblock
was AT&amp;T charges $15-30/month for a public static IP, which is
&gt; obviously
insane and actually one could argue that violates their own terms of
&gt; service.
So the router was still ignoring my public IP settings simply because I
&gt;
wasn't paying for a public IP, and intentionally changing the settings back.
I
&gt; asked for a free public IP and there was no response for awhile.
&gt; &gt; 
&gt; &gt;
I found
&gt; this article on cryptocoinnews while working out:
&gt;
<a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="https://www.cryptocoinsnews.com/isps-intentionally-blocking-bitcoin/" target="_blank">https://www.cryptocoinsnews.com/isps-intentionally-blocking-bitcoin/</a> It's
based
&gt; on the first email I sent, and was displayed prominently on their front
page. I
&gt; posted a tweet publicly about it which referenced AT&amp;T (
&gt;
<a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="https://twitter.com/turtlehurricane/status/638930065980551168" target="_blank">https://twitter.com/turtlehurricane/status/638930065980551168</a> ) and believe
it
&gt; or not I had a static public IP and port 8333 was open about 1 minute
later. I
&gt; don't know if it was a coincidence cause I already messaged them to
please do
&gt; that an hour before, or if that article and tweet spurred them to
action. The
&gt; timing was so ridiculous I think it's the latter. Without twitter
I probably
&gt; wouldn't have succeeded, the technicians on twitter actually
answered all my
&gt; questions 24/7 unlike phone technicians which were clueless
and trying to sell
&gt; me a subscription for connection services help. And shout
out to cryptocoinnews
&gt; for making this public. 
&gt; &gt; 
&gt; &gt; So to clarify, it
appears AT&amp;T has not blocked
&gt; port 8333 itself, but rather effectively blocked
all ports via the private
&gt; subnet, which makes the computer hidden and
unroutable for incoming peers.
&gt; Although this severely limits functionality
and cripples the ability to run a
&gt; full node and many other programs it is
understandable, since it just about 100%
&gt; prevents hackers from getting in,
since they can't even see your computer. What
&gt; isn't understandable is that
AT&amp;T technicians did not inform me about this until
&gt; I changed the settings
myself, despite the fact it is a very obvious cause of
&gt; ports being blocked.
It's probably just ignorance since AT&amp;T has so many complex
&gt; network settings
it's hard to keep track of, although I have a suspicion that
&gt; someone in their
command chain is withholding information in an attempt to make
&gt; them buy a
$15/month connection service, and once they buy that another
&gt; $15-30/month is
needed to get the static IP.
&gt; &gt; 
&gt; &gt; As far as I know there is no
&gt; easy to
find info on the internet about private subnets crippling the ability to
&gt; use
Bitcoin. I believe this needs to be explicitly said in instructions for
&gt;
running a full node, maybe it wasn't a problem in 2009 but now it is a major
&gt;
issue. On default settings Bitcoin is 100% blocked, and most people do not
have
&gt; the time or motivation to fix this. I talked to at least 10 AT&amp;T
technicians and
&gt; worked on it 2-3 days straight, did not receive the right
answer until I found
&gt; it myself, although they certainly gave me some useful
clues about how the
&gt; network works.
&gt; &gt; 
&gt; &gt; I am very happy that AT&amp;T fixed
it, since other ISPs like
&gt; Comcast appeared even worse. I openly talked with
them about Bitcoin and they
&gt; showed no prejudice, might've actually made them
more willing to help me cause
&gt; otherwise they would think I'm a hacker.
&gt; &gt;

&gt; &gt; tl;dr The good news is anyone
&gt; with AT&amp;T can be a full node by getting a
public static IP, the bad news is
&gt; almost no one will figure this out unless
we as a community make it well known.
&gt; I guarantee node numbers will improve
if this information is spread to everyone.
&gt; Database size and computing
expenditures is simply not the reason people don't
&gt; run full nodes, it's
because their ISP has made it just about impossible without
&gt; shelling out
nearly 100% more money per month. If you don't pay the fee AT&amp;T
&gt; would never
tell you about the private subnet, at least based on my
&gt; experience.
&gt; &gt; 
&gt;
&gt; 
&gt; &gt; -----Original Message-----
&gt; &gt; From: odinn
&gt;
&lt;<a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="mailto:odinn.cyberguerrilla@riseup.net">odinn.cyberguerrilla@riseup.net</a>&gt;
&gt; &gt; To: hurricanewarn1
&gt;
&lt;<a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="mailto:hurricanewarn1@aol.com">hurricanewarn1@aol.com</a>&gt;; bitcoin-dev &lt;<a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="mailto:bitcoin-dev@lists.linuxfoundation.org">bitcoin-dev@lists.linuxfoundation.org</a>&gt;
&gt;
&gt;
&gt; Sent: Tue, Sep 1, 2015 3:16 am
&gt; &gt; Subject: Re: [bitcoin-dev] AT&amp;T has
&gt;
effectively banned Bitcoin nodes by closing port 8333 via a hidden firewall
in
&gt; the cable box
&gt; &gt; 
&gt; &gt; 
&gt; &gt; -----BEGIN PGP SIGNED MESSAGE-----
&gt; &gt;
Hash: SHA512
&gt; &gt;
&gt; 
&gt; &gt; Another note on this subject
&gt; &gt; to add to the stuff
people have already
&gt; &gt;
&gt; mentioned...
&gt; &gt; 
&gt; &gt; If you have the AT&amp;T
&gt; &gt;
landline but don't use AT&amp;T's
&gt; standard internet /
&gt; &gt; tv (what they call
Uverse)
&gt; &gt; offering - that is, if you
&gt; prefer to use
&gt; &gt; some local
internet provider - you are
&gt; &gt; probably better off
&gt; (in terms
&gt; &gt; of
avoiding not only this sort of
&gt; &gt; blockage/censorship but as
&gt; well,
&gt; &gt;
potentially getting a better privacy policy
&gt; &gt; that isn't going to
&gt; be
&gt; &gt;
like AT&amp;T's long-term data retention).  You can check
&gt; &gt; directly with
&gt; &gt;
&gt;
the various local small ISPs to see what their policies
&gt; &gt; are
&gt; &gt;
specifically
&gt; on ports and whatnot.
&gt; &gt; 
&gt; &gt; Ideally your ISP should let
&gt;
&gt; you:
&gt; &gt; 
&gt; &gt; port
&gt; forward to SOMEPORTNUMBER for tcp and udp
&gt; &gt; 
&gt; &gt;
(above may or may not
&gt; &gt; be
&gt; helpful for some if you are using
&gt; &gt;
decentralized markets)
&gt; &gt; 
&gt; &gt; have port
&gt; 8333
&gt; &gt; open
&gt; &gt; 
&gt; &gt; (above
is for bitcoin of course)
&gt; &gt; 
&gt; &gt; Supposing you have
&gt; FTTN because you
&gt; &gt;
are paying a local ISP for
&gt; &gt; internet service, and that
&gt; local ISP has
contracted
&gt; &gt; with AT&amp;T to be
&gt; &gt; able to provide service in an
&gt; area where
old-style DSL has been
&gt; &gt; phased
&gt; &gt; out, thus your local ISP is
&gt;
essentially providing you AT&amp;T FTTN.
&gt; &gt; (FTTN
&gt; &gt; is Fiber to the Node,
FTTN-BP
&gt; is FTTN Bonded Pair).  Even if a
&gt; &gt; local ISP has
&gt; &gt; its own
privacy policy
&gt; posted which is different from
&gt; &gt; AT&amp;T, everything is
&gt; &gt;
subject to AT&amp;T data
&gt; retention because the FTTN.
&gt; &gt; So get yourself a VPN
(or set
&gt; &gt; up your own) for
&gt; your connection. Tor
&gt; &gt; will run through the
VPN.
&gt; &gt; 
&gt; &gt; General
&gt; &gt; observations
&gt; - TWC stores your IP and other
stuffs for 6
&gt; &gt; months or longer. 
&gt; &gt; Same for
&gt; Comcast.  Verizon retains
your stuffs for
&gt; &gt; 18 month minimum, probably
&gt; &gt;
&gt; longer though.
Qwest/Century, 1 year.
&gt; &gt; Cox, 6 months.  AT&amp;T retains for
&gt; longer
&gt; &gt; than
a year.  This is just
&gt; &gt; what they are telling you, the reality
&gt; is it's
&gt;
&gt; probably longer due to
&gt; &gt; stuff like
&gt; &gt; this:
&gt; &gt;
&gt;
<a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="https://www.lawfareblog.com/odni-and-doj-release-last-section-215-collec" target="_blank">https://www.lawfareblog.com/odni-and-doj-release-last-section-215-collec</a>
&gt; &gt;
&gt;
tion-order
&gt; &gt; 
&gt; &gt; 
&gt; &gt; 
&gt; &gt; 
&gt; &gt; 
&gt; &gt; 
&gt; &gt; 
&gt; &gt; 
&gt; &gt; 
&gt; &gt; Zach
&gt; &gt;
G via bitcoin-dev:
&gt; &gt;
&gt; &gt; I have been struggling to get port 8333 open all
year, I
&gt; &gt; gave up
&gt; &gt; &gt; and
&gt; was using blockchain for months despite a
strong desire to
&gt; &gt; stay
&gt; &gt; &gt; on
&gt; Bitcoin Core, but now the issue has
reached critical mass since
&gt; &gt; &gt;
&gt; &gt; I'm
&gt; using the python Bitcoin server
module. I have literally spent
&gt; &gt; &gt; my entire
&gt; &gt;
&gt; day trying to open 8333,
I thoroughly made sure it was
&gt; &gt; &gt; open on the router
&gt; and
&gt; &gt; computer and
it's still closed. Strangely
&gt; &gt; &gt; enough I got it open for
&gt; 30 seconds
&gt; &gt;
once today but something closed
&gt; &gt; &gt; it immediately.
&gt; &gt; &gt; 
&gt; &gt; &gt;
&gt; After
hours of phone
&gt; &gt; calls and messaging AT&amp;T finally told me the
&gt; &gt; &gt; truth
&gt;
of what was going on, and
&gt; &gt; only because I noticed it myself
&gt; &gt; &gt; and
demanded
&gt; an answer. The internet is
&gt; &gt; being routed through a
&gt; &gt; &gt;
DVR/cable box, and
&gt; they confirmed the DVR also has a
&gt; &gt; firewall. To
&gt; &gt; &gt;
make this even more
&gt; absurd they refused to turn the firewall
&gt; &gt; off
&gt; &gt; &gt;
because it is their
&gt; equipment. So effectively they can firewall any
&gt; &gt; &gt;
&gt;
&gt; port they want even if
&gt; the customer asks them not to, in the
&gt; &gt; &gt;
unlikely event
&gt; &gt; the customer
&gt; figures it out.
&gt; &gt; &gt; 
&gt; &gt; &gt; Perhaps this
is the driving force behind the
&gt; &gt;
&gt; inexplicable and
&gt; &gt; &gt; massive decline
in Bitcoin nodes. Bitcoin is being
&gt; censored
&gt; &gt; by the
&gt; &gt; &gt; ISPs
themselves, and they won't even tell you that. I
&gt; had to get in
&gt; &gt; &gt;
&gt; &gt;
touch with headquarters and threaten to rip it out of the
&gt; wall to
&gt; &gt; &gt; get
a
&gt; &gt; proper answer.
&gt; &gt; &gt; 
&gt; &gt; &gt; 
&gt; &gt; &gt; 
&gt; &gt; &gt;
&gt;
_______________________________________________
&gt; &gt; bitcoin-dev mailing
&gt; &gt; &gt;
list
&gt; <a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="mailto:bitcoin-dev@lists.linuxfoundation.org">bitcoin-dev@lists.linuxfoundation.org</a> 
&gt; &gt; &gt;
&gt; &gt;
&gt;
<a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev" target="_blank">https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a>
&gt; &gt; &gt; 
&gt; &gt; 
&gt;
&gt; -
&gt; --
&gt; &gt; 
&gt; &gt; <a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="http://abis.io" target="_blank">http://abis.io</a> ~
&gt; &gt; "a protocol concept to enable
decentralization
&gt; &gt;
&gt; and
&gt; &gt; expansion of a giving economy, and a new
social
&gt; &gt; good"
&gt; &gt;
&gt; <a removedlink__57ad7c6d-f272-4191-a267-6468e7c0d19d__href="https://keybase.io/odinn" target="_blank">https://keybase.io/odinn</a>
&gt; &gt; -----BEGIN PGP
&gt; &gt;
SIGNATURE-----
&gt; &gt; 
&gt; &gt;
&gt;
iQEcBAEBCgAGBQJV5VDeAAoJEGxwq/inSG8CvkIH/jy4Vo+My3xeBdvFQmxkJWyQ
&gt; &gt;
&gt;
U5mv2zWEvBYw71Xy1EDzQY1AhEBmatUU1eu2AbOqXdUR4511FxCNzFmTxy6roEiz
&gt; &gt;
&gt;
EehBkvXNbBCbEzLRisjxuQw34OKM+xfieCqE1mzJok2uSdLMMQLcbWL1/k3/OmS5
&gt; &gt;
&gt;
9O9z/wMXqU1Jc19MTK+vF1Lz5ilnRn3hEbTaCN3ivYnYFa0DpBH9r0Y07UcoJ6Wr
&gt; &gt;
&gt;
ui/x0sSSuupAGzOkZ75HQ8yeQXckeAu6TB3/jE8QEqNUmAJkmR8eK4ofXZWFrIjy
&gt; &gt;
&gt;
mOKeQL4c+jRQnTR8pt+y89g2QIpzFoHaV5T+WvQuC1t8xNOrxLgYFXWgl0dhoYE=
&gt; &gt; =UCLC
&gt;
&gt;
&gt; -----END
&gt; &gt; PGP SIGNATURE-----
&gt; &gt; 
&gt; &gt;  
&gt; 
&gt;  
</tt></pre>
</div>

 <!-- end of AOLMsgPart_1_a080680d-31e4-4cf5-962c-c9fc36a67b01 -->
</div>

</font>
------=_Part_77569_518175199.1441201492930--