-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathTODO.txt
9993 lines (7837 loc) · 434 KB
/
TODO.txt
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
# ejbw:
# loosing default route:
# IP=172.17.0.2; test -z "$(ip r l e 0/0)" && DEV="$(ip -o route get 172.17.0.2 | cut -d' ' -f5)" && ip r add default via $IP dev $DEV onlink
# 4300er:
Tue Nov 2 17:57:06 2021 kern.info kernel: [10178.311307] do_page_fault(): sending SIGSEGV to logread for invalid write access to 00000000
Tue Nov 2 17:57:06 2021 kern.info kernel: [10178.320105] epc = 77ec87dc in libc.so[77e40000+a5000]
Tue Nov 2 17:57:06 2021 kern.info kernel: [10178.325355] ra = 004016cd in logread[400000+3000]
# serial port over wifi forwarding
# raspberry pi zero w +
# _____________________
# | x x o o o x x x ....
# ^green
# ^white
# ^black
# https://openwrt.org/docs/techref/hardware/port.serial#use_another_openwrt_router_as_a_console
# https://stackoverflow.com/questions/22624653/create-a-virtual-serial-port-connection-over-tcp
# https://gist.github.com/DraTeots/e0c669608466470baa6c
# or
# https://github.com/jeelabs/esp-link
# cpe510 serial console:
# https://www.youtube.com/watch?v=CdpV6Ho0fvM
# https://openwrt.org/toh/tp-link/cpe510#serial
#
TP-LINK SafeLoader (Build time: Jun 12 2015 - 09:49:53)
CPU: 560MHz AHB: 225MHz DDR: 64MB
Performing LED check.. PASS
Press CTRL+B to enter SafeLoader: 1
Flash Manufacturer: Unknown(0xc8)
Flash Device ID: Unknown(0x4017)
Data flash init failed.
open user-config failed.
open user-config failed.
Error: Kernel did not takeover charge of WatchDog last time!
enet0 port4 up
TFTP server address is 192.168.0.100; our address is 192.168.0.254
Get filename 'recovery.bin'.
#################################################################
################################
Done.
Bytes transferred = 4936747, 1285 Kbytes/sec
Incorrect File.
Writting error.
Allocated memory for elf segment ok: addr: 0x80060000, size 0x16cc
Loading .text @ 0x80060000 (5836 bytes)
Starting kernel
OpenWrt kernel loader for AR7XXX/AR9XXX
Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org>
Looking for OpenWrt image... found at 0xbf043000
Decompressing kernel...
# (hangs here) ------------------------
#
#
debug dawn
# in rrd_update() pidof dawn 2>/dev/null || { logread >>/tmp/dawn.$$; /etc/init.d/dawn restart; }
for IP in 10.63.6.97 10.63.240.189 10.63.144.193 10.63.22.97; do ssh $IP "uname -n;ls -l /tmp/dawn.*"; echo; done
# debug mac80211: /lib/netifd/wireless/mac80211.sh
# iw() { local rc; command iw "$@"; rc=$?; echo "rc:$rc | iw $*" >>/tmp/foo; test $rc -eq 0 || command iw "$@" 2>>/tmp/foo; return $rc; }
root@regina2:~ :) arping -I wlan0 10.63.140.195
ARPING to 10.63.140.195 from 10.63.144.193 via wlan0
^CSent 54 probe(s) (54 broadcast(s))
Received 0 reply (0 request(s), 0 broadcast(s))
root@regina2:~ 8( cat /sys/kernel/debug/ieee80211/phy0/netdev:wlan0/stations/8c:bc:c0:43:c9:08/rc_stats
best __________rate_________ ________statistics________ ____last_____ ______sum-of________
rate [name idx airtime max_tp] [avg(tp) avg(prob) sd(prob)] [retry|suc|att] [#success | #attempts]
ABCD 1 0 9738 0.0 0.0 0.0 0.0 1 0 1 0 5
2 1 4922 0.0 0.0 0.0 0.0 1 0 0 0 0
5.5 2 1858 0.0 0.0 0.0 0.0 2 0 0 0 0
11 3 982 0.0 0.0 0.0 0.0 4 0 0 0 0
6 4 1648 0.0 0.0 0.0 0.0 3 0 0 0 0
9 5 1112 0.0 0.0 0.0 0.0 4 0 0 0 0
12 6 844 0.0 0.0 0.0 0.0 5 0 0 0 0
18 7 576 0.0 0.0 0.0 0.0 5 0 0 0 0
24 8 440 0.0 0.0 0.0 0.0 6 0 0 0 0
36 9 308 0.0 0.0 0.0 0.0 6 0 0 0 0
48 10 240 0.0 0.0 0.0 0.0 6 0 0 0 0
P 54 11 216 0.0 0.0 0.0 0.0 6 0 0 0 0
Total packet count:: ideal 0 lookaround 0
# bernardbaum / bernhard: port 13093 - node 756
# /www/gpstest.txt
# MIN=99;while read L;do set -- $L;V=${4%.*};test $V -lt $MIN && MIN=$V;done</www/gpstest.txt;echo $MIN
f0:81:73:70:72:29) comment=AlexaKueche ;;
5c:cf:7f:7e:28:b8) comment=Badfenster ;;
# visualisieren netzwerk graph traffic: https://dagrejs.github.io/project/dagre-d3/latest/demo/etl-status.html
# gps-test: sort -n und immer den besten aufheben
https://www.tagesschau.de/wirtschaft/datenpanne-british-airways-101.html
Artikelnummer:00300918
Artikelname:RAFFINERAD Backofen
Servicepartner:Whirlpool Bauknecht Hausgeräte Service
Telefon:069 / 29 99 36 02
Öffnungszeiten:Mo - Fr von 8 bis 20 Uhr
# GPS: Willhelm Tell FIX
# GPS: remember last X values and calc average?
# drucker: buero: _netfilter user_probe 00:80:77:00:22:4c || _netfilter user_add 00:80:77:00:22:4c 10.63.2.40
# VoIP-Stoerung: 2018-nov-24/25:
# main war festplatte voll:
# IPv6-ll von main auf interface von 172.17.0.81 = fe80::225:90ff:fe38:2edc%eth0
# IPv6-ll von backup auf interface von 172.17.0.82 = fe80::225:90ff:fe38:2eb6%eth0
#
#
# ejbw@ejbw-pbx:~$ ls -l /home/ejbw/local_monitoring_phones.sh
# -rwxrwxrwx 1 root root 17463 Nov 14 09:13 /home/ejbw/local_monitoring_phones.sh
#
#
#
#
#
# am 24.04 haben wir 3 Mails verschicken koennen (Cafe/Reithaus)
#
# von haustechnikMSR@ejbweimar.de
# 192.168.0.247 = RH-oben-Heizung
# 192.168.0.246 = RH-unten Lueftung Heiźung / Kaffee
# 192.168.0.245 = RH-
# ejbw@ejbw-pbx:~$ wget -qO - http://192.168.0.2/robots.txt|more
# mailserver: ejbw-ex01.ejbweimar.lan
#
#
# SIP-Provisioning: wget -SO - "http://127.0.0.1/app/provision/index.php?mac=0004133BD317"
#
# SIP polycom:
# tail -f /var/log/nginx/access.log | grep 172.17.1.55
ejbw@ejbw-pbx:~$ tail -n100 -f /var/log/nginx/access.log | grep 172.17.1.55
172.17.1.55 - - [01/Dec/2018:12:06:03 +0100] "GET /app/provision/index.php?mac=/2345-12200-002.bootrom.ld HTTP/1.1" 200 24 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/4.1.1.0232"
172.17.1.55 - - [01/Dec/2018:12:06:04 +0100] "GET /app/provision/index.php?mac=/bootrom.ld HTTP/1.1" 200 24 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/4.1.1.0232"
172.17.1.55 - - [01/Dec/2018:12:06:04 +0100] "GET /app/provision/index.php?mac=/0004f2265768.cfg HTTP/1.1" 200 1604 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/4.1.1.0232"
172.17.1.55 - - [01/Dec/2018:12:06:04 +0100] "GET /app/provision/index.php?mac=/2345-12200-002.sip.ld HTTP/1.1" 200 24 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/4.1.1.0232"
172.17.1.55 - - [01/Dec/2018:12:06:04 +0100] "GET /app/provision/index.php?mac=/sip.ld HTTP/1.1" 200 24 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/4.1.1.0232"
172.17.1.55 - - [01/Dec/2018:12:06:08 +0100] "PUT /app/provision/index.php?mac=/logs/0004f2265768-boot.log HTTP/1.1" 200 49 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/4.1.1.0232"
172.17.1.55 - - [01/Dec/2018:12:06:33 +0100] "GET /app/provision/index.php?mac=/2345-12200-002.bootrom.ld HTTP/1.1" 200 24 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/3.0.4.0061"
172.17.1.55 - - [01/Dec/2018:12:06:33 +0100] "GET /app/provision/index.php?mac=/bootrom.ld HTTP/1.1" 200 24 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/3.0.4.0061"
172.17.1.55 - - [01/Dec/2018:12:06:33 +0100] "GET /app/provision/index.php?mac=/0004f2265768.cfg HTTP/1.1" 200 1604 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/3.0.4.0061"
172.17.1.55 - - [01/Dec/2018:12:06:33 +0100] "GET /app/provision/index.php?mac=/2345-12200-002.sip.ld HTTP/1.1" 200 24 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/3.0.4.0061"
172.17.1.55 - - [01/Dec/2018:12:06:34 +0100] "GET /app/provision/index.php?mac=/sip.ld HTTP/1.1" 200 24 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/3.0.4.0061"
172.17.1.55 - - [01/Dec/2018:12:06:34 +0100] "GET /app/provision/index.php?mac=/00-04-f2-26-57-68-registration.cfg HTTP/1.1" 200 24 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/3.0.4.0061"
172.17.1.55 - - [01/Dec/2018:12:06:34 +0100] "GET /app/provision/index.php?mac=/phone1.cfg HTTP/1.1" 200 24 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/3.0.4.0061"
172.17.1.55 - - [01/Dec/2018:12:06:34 +0100] "GET /app/provision/index.php?mac=/sip.cfg HTTP/1.1" 200 24 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/3.0.4.0061"
172.17.1.55 - - [01/Dec/2018:12:06:34 +0100] "GET /app/provision/index.php?mac=/custom.cfg HTTP/1.1" 200 24 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/3.0.4.0061"
172.17.1.55 - - [01/Dec/2018:12:06:34 +0100] "GET /app/provision/index.php?mac=/overrides/0004f2265768-phone.cfg HTTP/1.1" 200 24 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/3.0.4.0061"
172.17.1.55 - - [01/Dec/2018:12:06:34 +0100] "GET /app/provision/index.php?mac=/contacts/0004f2265768-directory.xml HTTP/1.1" 200 24 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/3.0.4.0061"
172.17.1.55 - - [01/Dec/2018:12:06:35 +0100] "PUT /app/provision/index.php?mac=/logs/0004f2265768-app.log HTTP/1.1" 200 49 "-" "FileTransport PolycomSoundPointIP-SPIP_320-UA/3.0.4.0061"
# siehe: /var/www/fusionpbx/app/provision/index.php -> polycom -> $file setzen?
#
# Ralf: Tard002-1/1/1/33 = Tard002,1,1,1,33,| A 50002266 | pppoe: 00503013@encoline.de + Produkt: 50007.1 - 9c:c7:a6:96:b1:99
# Fries36: KN: 619218 VN: 10023608 | Wmr050 | VLAN: 1=00:18:84:88:65:98 = FON | war: 50045.1
# EJBW/Gaeste: AVM7360 | VN: 13815 | Wmr028 | VLAN: 1=34:31:c4:e7:6b:21 180=34:31:c4:e7:6b:1f(aufBox) 182=34:31:c4:e7:6b:20
#
#
#
# VillaWeiss-EG-SeminarDisco-MESH -> ServerraumJ2 Reserve = 19
# d85d4cf63276 -> Gaestehaus Blau unter UV 1 EG -> 29
# iptables -t nat -I PREROUTING -p tcp --dport 443 -i eth0 -j DNAT --to-destination :22
# https://en.wikipedia.org/wiki/Radia_Perlman / STP
# sven: 10.63.92.173 nas-soll
# labor: ssh root@91.137.63.16
# sipcmd: USER=004936017992920 PASS=EDWEmoDAAA DESTINATION=004917624223419 FILEWAV=equinox-8KHz-alias-mono.wav
# ./sipcmd -P sip -u $USER -c $PASS -w sip.encoline.de -x "c${DESTINATION};ws3000;v${FILEWAV};h"
# kinox: git log a083622...cada9f1 | less
# laptop wiederholen / tim banse / filmforcast
# HAUS tschechien
# strausseneier
# show interface traffic
# D=wlan0;RXo=0;TXo=0;while :; do set -- $(grep $D: /proc/net/dev);RX=$2;TX=${10};echo rx:$((RX-RXo)) tx:$((TX-TXo));RXo=$RX;TXo=$TX;sleep 1;done
# D=wlan0;I=60;RXo=0;TXo=0;while :; do set -- $(grep $D: /proc/net/dev);RX=$2;TX=${10};echo rx:$(((RX-RXo)/I)) tx:$(((TX-TXo)/I));RXo=$RX;TXo=$TX;sleep $I;done
#
# F=...; I=60;So=0;while :; do S=$(wc -c <"$F"); echo $(((S-So)/I)); So=$S; sleep $I; done
# while :; do cat /proc/acpi/ibm/thermal;sleep 60;done
# read LINE </proc/acpi/ibm/thermal; set -- $LINE; shift; for VAL in $*; do case "$VAL" in -128) continue;; esac; echo $VAL; done
# while :; do read LINE </proc/acpi/ibm/thermal; set -- $LINE; shift; for VAL in $*; do case "$VAL" in -128) continue;; esac; printf '%s ' "$VAL"; done; echo; sleep 60; done
# P=/proc/acpi/ibm;while :;do set $(grep speed: $P/fan);printf "$2.rpm ";read L <$P/thermal;set $L;shift;for V in $*;do case $V in -*)continue;;esac;echo $V;done|sort -r|tr '\n' \ ;date;sleep 60;done
# deckel: while :;do read L </proc/acpi/button/lid/LID/state; case "$L" in *closed) echo mem >/sys/power/state;;esac;sleep 1; done
# P=/proc/acpi/ibm;echo 'level 0' >$P/fan;while :;do O=$( set $(grep speed: $P/fan);printf "$2.rpm ";read L <$P/thermal;set $L;shift;for V in $*;do case $V in -*)continue;;esac;echo $V;done|sort -r|tr '\n' \ ;date ); set -- $O; test $2 -gt 70 && echo 'level 4' >$P/fan; test $2 -eq $OLD || echo $O; OLD=$2; sleep 5;done
# TODO: build:
# regdb-changes: f9fa266faf9a2fdea48cc2fb72fa5a7e52a527c0
#
# automark these build-file in logs:
Applying ./patches/900-regulatory-compliance_test.patch using plaintext:
patching file drivers/net/wireless/ath/regd.c
Hunk #1 succeeded at 52 with fuzz 2.
Hunk #6 FAILED at 173.
1 out of 6 hunks FAILED -- saving rejects to file drivers/net/wireless/ath/regd.c.rej
Patch failed! Please fix ./patches/900-regulatory-compliance_test.patch!
Makefile:1835: recipe for target '/home/bastian/mybuildbot/source/build_dir/target-mips_24kc_musl/linux-ar71xx_generic/backports-2017-10-06/.prepared_4f77ca3d1ef1ef2f8f7c1612c65315d5_6664517399ebbbc92a37c5bb081b5c53' failed
make[3]: *** [/home/bastian/mybuildbot/source/build_dir/target-mips_24kc_musl/linux-ar71xx_generic/backports-2017-10-06/.prepared_4f77ca3d1ef1ef2f8f7c1612c65315d5_6664517399ebbbc92a37c5bb081b5c53] Error 1
# git clone git://git.lede-project.org/source.git
# pre-update:
# echo 'true' >/tmp/CRON_IS_CAREFUL
# touch "$TMPDIR/firmware_burn"
# rm /tmp/datafile.rrd -> _rrd purge -> _rrd update (laeuft weiterhin mit status OK)
#
# _wifi set ap anyfreq 'off'
# _wifi phy_restart 'force:safe_memory'
#
# _netfilter fakedns_stop
#
# /etc/init.d/uhttpd stop
# /etc/init.d/dropbear stop
# rm /tmp/WIFI_ERROR.* // simulate no phy_problems
echo 'sleep 900' >/tmp/.autorun
_wifi set ap anyfreq 'off'
_wifi phy_restart '' 'force:safe_memory'
_netfilter fakedns_stop
/etc/init.d/uhttpd stop
/etc/init.d/dropbear stop
/etc/init.d/dnsmasq stop
rm -f /tmp/WIFI_ERROR.*
_firmware check_image "$TMPDIR/fw" || return 1
{
cat /proc/meminfo
ip a
ps
} >/www/FOOOOOO
# wait4noload="read -r load </proc/loadavg; $(app echo) cpu:\$load >/dev/console;case \$load in 0.0*|0.1*);;*)$(app echo) load:\$load >>$PERMLOG; $(app reboot) -f;;esac"
root@Giancarlo-Dach:~ :) traceroute -n 8.8.8.8
traceroute to 8.8.8.8 (8.8.8.8), 30 hops max, 38 byte packets
1 10.10.5.129 0.331 ms 0.497 ms 0.674 ms
2 192.168.178.1 1.391 ms 1.134 ms 1.301 ms
3 88.134.215.62 31.461 ms 15.573 ms 14.956 ms
4 88.134.193.238 24.435 ms 19.419 ms 19.744 ms
5 88.134.203.240 19.530 ms 19.587 ms 25.675 ms
6 88.134.202.41 23.606 ms 88.134.235.27 29.699 ms 88.134.202.41 26.854 ms
7 72.14.209.54 32.189 ms 27.741 ms 21.558 ms
8 * * *
9 216.239.59.179 87.769 ms 108.177.3.219 24.725 ms 108.170.232.225 20.589 ms
10 8.8.8.8 23.351 ms 29.476 ms 27.465 ms
root@Giancarlo-Dach:~ :) traceroute -n 254.254.254.254
traceroute to 254.254.254.254 (254.254.254.254), 30 hops max, 38 byte packets
1 10.10.5.129 0.699 ms 0.322 ms 0.528 ms
2 10.10.5.129 0.619 ms 0.615 ms 0.409 ms
root@Giancarlo-Dach:~ :) traceroute -n 1.1.1.1
traceroute to 1.1.1.1 (1.1.1.1), 30 hops max, 38 byte packets
1 10.10.5.129 0.667 ms 0.380 ms 0.470 ms
2 10.10.5.129 0.531 ms * 1.183 ms
root@Giancarlo-Dach:~ :) traceroute -n 8.8.8.8
traceroute to 8.8.8.8 (8.8.8.8), 30 hops max, 38 byte packets
1 10.10.5.129 0.755 ms 0.375 ms 0.514 ms
2 192.168.178.1 1.323 ms 1.001 ms 1.121 ms
3 88.134.215.62 18.399 ms 18.723 ms 18.971 ms
4 88.134.193.238 24.487 ms 22.456 ms 18.927 ms
5 88.134.203.240 28.886 ms 27.200 ms 20.305 ms
6 88.134.202.123 31.253 ms 88.134.202.41 28.988 ms 88.134.235.27 70.355 ms
7 72.14.209.54 19.393 ms 29.729 ms 29.478 ms
8 * 108.170.251.193 53.849 ms 108.170.251.129 29.992 ms
9 72.14.235.51 22.113 ms 108.177.3.203 27.221 ms 108.170.233.33 20.806 ms
10 8.8.8.8 28.323 ms 18.021 ms 31.450 ms
root@Giancarlo-Dach:~ :) cat^C
- absage freund/spanien hausmeister ibo
- lanfree fuer extrawatt
- vier schluessel/frenzel
- angebot GNM axis security update:
- https://www.heise.de/security/meldung/Sicherheitsluecke-in-Axis-Ueberwachungskamera-mit-Breitenwirkung-3776579.html
- mario/nachbar/trainer-idee:
- C-Junioren (12-14) oder D
- Stadionbesichtigung
- Trainingseinheit
- Testspiel
- 1 Nacht + Unterkunft + Verpflegung
- http://kinox.to/Stream/Kung_Fu_Panda_3-1.html
- http://kinox.to/Stream/Kleinstadtorgien-Alles_muss_nichts_kann.html
EJBW
====
- email/8 Uhr Faxe die noch in Warteschlange sind
- Namen/Haeuser einpflegen
- FAX passwort
- 102 -> soll auch besetzt sein -> andere Nummer
- Dublin: schlechter Empfang + Wien
- Riegel Neu: 203/103 WLAN reinbauen?
- hinterfragen: welche adhoc-Router koennen weg?
- RH: Netzlaufwerke? Heizung: Fehlerbehebung
- Funkfeldmessung
- fswebcam: nur bei >8400kb
- Bernd lädt sich gerade ein 128GB Retropie-Image. Attract Mode FULL DOWNLOAD 128GB IMAGE Unified Layout – Madlittlepixel
So mit ganz vielen Spielen und bunten Bildern und Videos fix und fertig eingerichtet.
- p.radestock@t-online.de
- agenda: wiki -> 2013
- linux / usbstick / browser ohne systemd
- filme:
- "einfach unverbesserlich 3"
- "lego batman"
- anruf: EJBW
- anruf: extrawatt
- giancarlo
=== Montag ===
- m.sickert
- urleben: IP-access: 100/1000?
- glas: passiv: 2.5G/64 teilnehmer/prisma? oder wellenlaenge
- ueberbuchung KvZ
- KvZ: power pro port
=== ruckus ===
# DHCP auf 35 sekunden stellen (timeout)
# android: 2 DNS-server per DHCP liefern
# minimal BSS rate hochsetzen (fuer besseres roaming)
# management frames TX-rate hochsetzen.
# ruckus script ksp
# force dhcp option82
# 802.11k
# 802.11r
# 802.11w
# fragen: echtes cli auf AP?
# serielle konsole -> angeblich kein linux (war openBSD)
# playstore: ruckus -> swipe-tool
# twilio SMS server
# ruckus, realms: aussprache
# radius vs. tacacs?
# 8 SSID verbrauchen 1/3tel der Kapazitaet?
# 5ghz dynam.bandwith allocation
# LWAPP - Lightweight Access Point Protocol https://en.wikipedia.org/wiki/Lightweight_Access_Point_Protocol
# === TODO wichtig ===
# reparierer braunsroda
# einladung bday
# sven/frenze
# neuer mietplan!
# giancarlo: vereinbarung abholen
# mail: ina_lorenz
# schoeneck kontrolle
# termin battlemesh weimar? vor summary und nach 1. mai
# wlan-karte einbauen
# OLSR2-test
# rechnung giancarlo: einsatz netzausfall
# ute: navi-update
# anke: router-config
# bladerunner!
# buero: Nachtstromzaehler
# router abholen ewerk
# strom: mika: steckdose: rechts blau, mitte gruen/gelb, links braun
# schalter: braun schaltet, rest gebrueckt
# https://eewiki.net/display/linuxonarm/PandaBoard#PandaBoard-Ubuntu16.04LTS
# ejbw: richtfunk bestellen + halterung?
# { echo 'login admin fm1204'; sleep 1; echo 'port list iiii'; sleep 1; echo 'quit'; } | nc -w2 10.10.8.44 1234
# sven: viking
# ejbw: reithaus: verschiedene SSID
# update: marinabh: missing bridge
# braunsroda: 5mhz+no_ap
# rest + kk-meldung -> netkom
# bc-miner
# medion: 2018mai17 - uptime: 39519h seit 12.nov.2012
# Netgear DM200 vectoring - openwrt
# source/staging_dir/host/bin/unsquashfs4 -ll source/bin/targets/ar71xx/generic/lede-ar71xx-generic-root.squashfs
# MQmaker: CONFIG_PACKAGE_kmod-ata-core=y
root@EG-superbuffi76:~ :) _watch roaming debug
May 04 15:37:11 ' [up 92573s 93421568 bytes free] TERM:xterm -ash [daemon.debug] watch_roaming() loop: 1 ap-dev: wlan0-1 mac: 58:48:22:40:ba:ed signal: -82
May 04 15:37:11 ' [up 92573s 93425664 bytes free] TERM:xterm -ash [daemon.debug] watch_roaming() ip: 100.66.3.212
May 04 15:37:11 ' [up 92574s 93487104 bytes free] TERM:xterm -ash [daemon.debug] watch_roaming() loop: 1 ap-dev: wlan0-1 mac: 00:1e:65:94:22:52 signal: -56
May 04 15:37:11 ' [up 92574s 93421568 bytes free] TERM:xterm -ash [daemon.debug] watch_roaming() ip: 100.67.217.186
root@EG-superbuffi76:~ :)
#
#
#
#
#
root@EG-superbuffi76:~ :) arping -I br-mastergate 100.67.193.186
ARPING to 100.67.193.186 from 100.64.0.1 via br-mastergate
Unicast reply from 100.67.193.186 [00:1e:65:94:22:52] 361.556ms
Unicast reply from 100.67.193.186 [00:1e:65:94:22:52] 8.886ms
Unicast reply from 100.67.193.186 [00:1e:65:94:22:52] 4.034ms
^CSent 3 probe(s) (1 broadcast(s))
Received 3 reply (0 request(s), 0 broadcast(s))
#
root@EG-superbuffi76:~ :) _watch roaming debug
May 04 15:38:23 ' [up 92646s 91799552 bytes free] TERM:xterm -ash [daemon.debug] watch_roaming() loop: 1 ap-dev: wlan0-1 mac: 58:48:22:40:ba:ed signal: -82
May 04 15:38:24 ' [up 92646s 91799552 bytes free] TERM:xterm -ash [daemon.debug] watch_roaming() ip: 100.66.3.212
May 04 15:38:24 ' [up 92646s 91766784 bytes free] TERM:xterm -ash [daemon.debug] watch_roaming() loop: 1 ap-dev: wlan0-1 mac: 00:1e:65:94:22:52 signal: -48
May 04 15:38:24 ' [up 92646s 91799552 bytes free] TERM:xterm -ash [daemon.info] watch_roaming() ip 100.67.193.186 (of 100.67.193.186) not added yet - changed IP? -
root@EG-superbuffi76:~ :)
# wartungsnummer luense?
# heute:
========
### schoeneck + apphalle: vpn-mail - info@hoffmann-hotel-consult.de
# muttertag hochladen!
# http://kinox.to/Stream/Die_Baumhauskoenige.html
# http://kinox.to/Stream/Das_Dekameron.html
# http://kinox.to/Stream/Der_Bunker-1.html
# http://kinox.to/Stream/The_Lego_Movie.htm# http://kinox.to/Stream/The_Lego_Movie.html
# http://kinox.to/Stream/Pirates_of_the_Caribbean_Salazars_Rache.html
# http://kinox.to/Stream/Odd_Thomas-1.html
# http://kinox.to/Stream/Romper_Stomper-1.html
# http://kinox.to/Stream/Robinson_Crusoe-2.html
# http://kinox.to/Stream/Red_Sniper-Die_Todesschuetzin.html
# http://kinox.to/Stream/Roehrls_Katze.html
# http://kinox.to/Stream/The_LEGO_Batman_Movie.html
# http://kinox.to/Stream/Robbi_Tobbi_und_das_Fliewatueuet-1.html
# http://kinox.to/Stream/Sahara-2.html
# http://kinox.to/Stream/John_Wick_Kapitel_2.html
# http://kinox.to/Stream/Reality-1.html
# http://kinox.to/Stream/Die_Schluempfe-Das_verlorenen_Dorf.html
# http://kinox.to/Stream/LEGO_NEXO_Knights.html
# 222: dhcp-prob telefon -> export DHCP_OK=true + do not invoke any arping-actions
# email: clustermensch an bernhard
# ausrechnen: hotel/banse
# check apply_profile: default_encryption_type - really double entry?
# rechnung: susa
# antwort: berlinle
# fritzbamag: kiste5287
# ticket sbahn hannover suchen!
# bgp!
# ordner auf sylvias rechner
# danny: iphone-prob: https://gist.github.com/Aaahh/1e354ee60dbe40f64efe7e4f98f720d4
# 3 x telefonnummer luense / wartungsnummer
# check medion: mail_kaputt/
# monit: rehungen testnachricht/auto (mail+sms)
# monit: automail leonardo/giancarlo mit PoE-Hinweis
# cpe510:
# ist: bin/targets/ar71xx/generic/lede-ar71xx-generic-cpe210-220-510-520-squashfs-sysupgrade.bin:
# soll: bin/targets/ar71xx/generic/lede-ar71xx-generic-cpe510-520-v1-squashfs-sysupgrade.bin
#
# fw: check if wifi is still in /proc/net/wireless -> wifi is ok
# fw: wifi off? unload modules...or never load!
# fw: loss ping to olsr-neighs? arp_reset() -> schoeneck tausch
# fw: longshot testmode repair?
# fw: longshort: enforce SGI? iw dev wlan0 set bitrates sgi-5
# fw: bool_var: send mail when SSH-session starts and ends
# fw: killswitch: forwarding only for monitoring/DNS and ssid=XY
# i18n -> maintenance_mode = XY
# inet_seems_stable() -> gateway_found() false!
# master/inetoffer: block forward
# fix: meldung im login (momentan: Please check your entry and pay attention to upper / lower case)
# A='-j ACCEPT';I="$IPT -I FORWARD"
# $I -j REJECT;$I -d intercity-vpn.de $A;$I -s intercity-vpn.de $A;$I -d 8.8.8.8 $A; $I -s 8.8.8.8 $A;$I -p icmp $A
#
# fw: sysupgrade: chksum vom image_to_flash.bin mit reinbauen fuer signatur
# fw: correct word 'thrust' -> 'trust'
# fw: rrd: plot 'rx drop misc: 2768' + 'tx retries:'
# fw: moni: sysupgrade: detect if image was sysupgraded to next version (so: sysupgrade works)
# fw: git grep 'command -v '|grep -v '>/dev/null'
# fw: document all remote-access (ssh + http)
# fw: sms: quality is dead, remove 'from=' ?
# fw: check new dhcp-hotplug: b32689afd6a661339861086c669e15c936293cf8
# fw: mydesign for hentzel with arch=all
# fw: check for new 'ifup-failed' event (since r4176)
# fw: [daemon.alert] db_autocreate_tickets_and_send_mail() tickettype: 1 x Name: kworker/0:1
# fw: include 'mtr' in standard?
# fw: switch to new nslookup-applet?
# fw: fix double-start of eventlistener
# fw: hentzel: bad mesh-performance
# fw: 11g-problem: always wifi-detect()? -> wifi config (just before apply-profile?)
# ifup: detect 80211n capabilities and set HT-mode + HW-mode according to that
# fw: weblogin: https://wiki.selfhtml.org/wiki/Grafik/Grafiken_mit_Data-URI + cache gzip! (for flags only?)
# fw: switch of 2.4ghz ap Xioami?
# fw: firmware-download: restrict via uci-var to maint-window?
# fw: read -r VAR <FILE - will fail if only 1 line -> always log failures?
# fw: ip neigh: change timeouts?: http://stackoverflow.com/questions/15372011/configuring-arp-age-timeout
# fw: ipv6: https://github.com/weimarnetz/weimarnetz/blob/master/files/etc/kalua/ipsystem
# fw: ath9k: reghack/ath9k-more-channels*
# fw: netparam: introduce PUBIP4?
# fw: wireless_events() kick if no ping/arp-entry? + call watch_roaming() really each minute
# fw: LinkQualityMult + etx_ffeth?
# fw: loettisch-kueche: iw wlan0 set bitrates ht-mcs-2.4 15 sgi-2.4
# fw: scheduler: avoid on low resources?
# fw: auf laptop nicht da: /var/run/interfaces/dev2radio_wlan0
# fw: _net_roaming_eventlistener -> reason -> really allow without reason?
# fw: not parallel: /www/cgi-bin-collect.sh
# fw: check 'hoopy-froods'
# fw: not parallel: /www/cgi-bin-get_userdb.sh
# fw: ejbw: kein ping auf dsler? -> ifup wan
# fw: gateway: traceroute + hna4 + uci set network.lan.defaultroute='0'
# aufwaermen: marinabh
# jakob: hentzel: kundenbroschuere!
# ina lorenz: rechnung klaeren!
# holm: switch-mail
# drucker: danny+susa
# osterdon,fr,sa-blaue saecke x5
# 2.mai -> 2 blaue muellsaecke mit gartenabfallen und spanplatten
# miete besprechen
# schluessel frenzel
# DNT: MAC
# fix goflexhome
# einpflegen build-aenderung raspi3
x(){ git rev-parse --short HEAD; };A=$(x);git pull;B=$(x);test $A = $B || echo "git log $B...$A | less"
# test raspifix
# fw: introduce global log() call - log '[ERR] foo' or - log 'foo' debug - or log 'foo'? - how to use $funcname?
# https://github.com/xStream-Kodi/plugin.video.xstream/issues/14
# git-server
# geld: sven+zahna
# fw: rt2800_wmac -> Xiami kann nur 'mesh', kein IBSS
# fw: mid9.MountMeyer
# zelda braucht briefe
# http://kinox.to/Stream/Humans-1.html
# http://kinox.to/Stream/Rush-Alles_fuer_den_Sieg.html
# http://kinox.to/Stream/Vikings-1.html,s1e10
# movie: hardcore henry: download
# fix: SCC
# serie: rick and morthy
# konstantin stürz: the 8 bit philosophy
# fossasia: mentor?
# cat /proc/$$/environ
# V6='fe80::ff:ffff:feff:0%wlan0'; ping6 -c1 $V6; GW="$( ip r l e 0/0 | cut -d' ' -f3 )"; GW="${GW:-$V6}"; ping -c1 "$GW" || GW="$V6"; reset; ssh-keygen -f "/home/bastian/.ssh/known_hosts" -R "$GW"; set -x; wget -qO /dev/null "http://$GW/cgi-bin-tool.sh?OPT=startshell"; ssh root@$GW;set +x
# https://bs.to/serie/The-Last-Man-on-Earth/1/4-Suesse-Melissa/OpenLoad
Fri Apr 7 17:10:11 2017 daemon.notice netifd: radio0 (8015): command failed: No error information (-524)
Fri Apr 7 17:10:11 2017 daemon.notice netifd: radio0 (8048): command failed: No error information (-524)
Fri Apr 7 17:10:11 2017 daemon.notice netifd: radio0 (8048): command failed: Not supported (-95)
Fri Apr 7 17:10:11 2017 daemon.notice netifd: radio0 (8048): command failed: I/O error (-5)
Fri Apr 7 17:10:11 2017 daemon.notice netifd: radio0 (8048): command failed: Not supported (-95)
Fri Apr 7 17:10:11 2017 daemon.notice netifd: radio0 (8048): Device setup failed: INTERFACE_CREATION_FAILED
Fri Apr 7 17:10:11 2017 daemon.notice netifd: radio0 (8048): WARNING: Variable 'interfaces' does not exist or is not an array/object
Fri Apr 7 17:10:11 2017 kern.info kernel: [ 569.358223] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Fri Apr 7 17:10:11 2017 daemon.notice netifd: radio0 (8048): command failed: Not supported (-95)
Fri Apr 7 17:10:11 2017 daemon.notice netifd: radio0 (8048): command failed: Not supported (-95)
Fri Apr 7 17:10:11 2017 daemon.notice netifd: Interface 'wlan' is enabled
Fri Apr 7 17:10:11 2017 daemon.notice netifd: Interface 'wlan' is setting up now
Fri Apr 7 17:10:11 2017 daemon.notice netifd: Interface 'wlan' is now up
# raspi3-
Supported interface modes:
* IBSS
* managed
* AP
* P2P-client
* P2P-GO
* P2P-device
# fw: wrong hardware is never overwritten in apply_profile, e.g. TP-LINK TL-WDR3600/4300/4310 -> TP-LINK TL-WDR4300
# fw: RalfPension -> picture?
# fw: usecase = samba-server? -> jenaplan
# fw: ejbw: exaudio = rh-e2-bruessel
# fw: patch: channel -1 ? and 'Support channels in licensed bands'
# fw: http://serverfault.com/questions/249520/how-to-identify-download-traffic-using-iptables
# fw: monitoring: info-boxes: http://chrisdavies.github.io/tlite/
# fw: olsr: warum nicht perm, aber file gesetzt?
# fw: pmu/filename-problem loesen
# fw: show txpower/dev in monitoring
# fw: force_dns: only for ap?
# lehrach: Döllstädtstr. 7
# henztel: handschuhe
# maschliste: kinoxto + oui + raspi
# schmutzig: fe80::f6ec:38ff:fe9d:7f32/64
# # prof. stein - professur webtechnologie und martin potthast / postdoc oder so
# kiosk-problem: 64bit
# reh: petzulat: di-vormittag: film runterladen = raus? wartungsmodus? kirch30
# ejbw: umbenennen video-router
# openwrt: fix: dnsmasq odhcp_main=1
# anruf: bernd
# anruf: ludger
# service@sturm-teleprofi.de -> doku leonardo
# mail: anzug+tafel+werkzeugkoffer?
# brutal traffic
# 2.22.117.0/24 = steam
# -> steam = bulk-traffic?
# related?
# see: http://lists.infradead.org/pipermail/linux-mtd/2006-August/016227.html
Tue Mar 14 11:14:35 2017 daemon.info procd: - init complete -
Tue Mar 14 11:14:35 2017 kern.warn kernel: [ 165.243712] jffs2: Newly-erased block contained word 0x19852003 at offset 0x00000000
Tue Mar 14 11:14:36 2017 daemon.info urandom_seed[3405]: Seed saved (/etc/urandom.seed)
# jffs-bad:
root@LEDE:~ :) df -h
Filesystem Size Used Available Use% Mounted on
/dev/root 3.5M 3.5M 0 100% /rom
tmpfs 61.2M 612.0K 60.6M 1% /tmp
tmpfs 61.2M 84.0K 61.1M 0% /tmp/root
tmpfs 512.0K 0 512.0K 0% /dev
/dev/mtdblock8 26.8M 7.5M 19.3M 28% /overlay
overlayfs:/overlay 26.8M 7.5M 19.3M 28% /
#
root@LEDE:~ :) cat /proc/mounts
/dev/root /rom squashfs ro,relatime 0 0
proc /proc proc rw,nosuid,nodev,noexec,noatime 0 0
sysfs /sys sysfs rw,nosuid,nodev,noexec,noatime 0 0
tmpfs /tmp tmpfs rw,nosuid,nodev,noatime 0 0
tmpfs /tmp/root tmpfs rw,noatime,mode=755 0 0
tmpfs /dev tmpfs rw,nosuid,relatime,size=512k,mode=755 0 0
devpts /dev/pts devpts rw,nosuid,noexec,relatime,mode=600 0 0
debugfs /sys/kernel/debug debugfs rw,noatime 0 0
/dev/mtdblock8 /overlay jffs2 rw,noatime 0 0
overlayfs:/overlay / overlay rw,noatime,lowerdir=/,upperdir=/overlay/upper,workdir=/overlay/work 0 0
#
#
# danach reboot, scheinbar gut - aber NODENUMBER fehlt:
root@LEDE:~ :) df -h
Filesystem Size Used Available Use% Mounted on
/dev/root 3.5M 3.5M 0 100% /rom
tmpfs 61.2M 996.0K 60.3M 2% /tmp
/dev/mtdblock8 26.8M 7.5M 19.3M 28% /overlay
overlayfs:/overlay 26.8M 7.5M 19.3M 28% /
tmpfs 512.0K 0 512.0K 0% /dev
tmpfs 128.0K 0 128.0K 0% /coredumps
tmpfs 122.5M 42.7M 79.8M 35% /database
#
root@LEDE:~ :) cat /proc/mounts
/dev/root /rom squashfs ro,relatime 0 0
proc /proc proc rw,nosuid,nodev,noexec,noatime 0 0
sysfs /sys sysfs rw,nosuid,nodev,noexec,noatime 0 0
tmpfs /tmp tmpfs rw,nosuid,nodev,noatime 0 0
/dev/mtdblock8 /overlay jffs2 rw,noatime 0 0
overlayfs:/overlay / overlay rw,noatime,lowerdir=/,upperdir=/overlay/upper,workdir=/overlay/work 0 0
tmpfs /dev tmpfs rw,nosuid,relatime,size=512k,mode=755 0 0
devpts /dev/pts devpts rw,nosuid,noexec,relatime,mode=600 0 0
debugfs /sys/kernel/debug debugfs rw,noatime 0 0
tmpfs /coredumps tmpfs rw,nosuid,nodev,relatime,size=128k 0 0
tmpfs /database tmpfs rw,nosuid,nodev,relatime,size=125392k 0 0
Mon Mar 13 09:09:00 2017 daemon.info procd: - shutdown -
Mon Mar 13 09:09:00 2017 authpriv.info dropbear[31874]: Early exit: Terminated by signal
Mon Mar 13 09:09:01 2017 daemon.notice procd: Command failed: Not found
# Not found?
[ 0.000000] Linux version 3.18.43 (firmware@bittorf-wireless.com) (gcc version 5.4.0 (LEDE GCC 5.4.0 r3374+27-fe1e362) ) #0 Thu Mar 9 14:27:16 2017
[ 0.000000] bootconsole [early0] enabled
[ 0.000000] CPU0 revision is: 01030202 (Au1500)
[ 0.000000] 4G Systems MTX-1 Board
[ 0.000000] Determined physical RAM map:
[ 0.000000] memory: 04000000 @ 00000000 (usable)
[ 0.000000] Initrd not found or empty - disabling initrd
[ 0.000000] Zone ranges:
[ 0.000000] Normal [mem 0x00000000-0x03ffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00000000-0x03ffffff]
[ 0.000000] Initmem setup node 0 [mem 0x00000000-0x03ffffff]
[ 0.000000] Primary instruction cache 16kB, VIPT, 4-way, linesize 32 bytes.
[ 0.000000] Primary data cache 16kB, 4-way, VIPT, no aliases, linesize 32 bytes
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 16256
[ 0.000000] Kernel command line: console=ttyS0,115200 root=/dev/mtdblock0 rootfstype=squashfs,jffs2 oops=panic panic=10 builtin_secret=D0D3B17E85B5A42309E03E06F295F6E69657FB18A644260049889DFA667E3837
[ 0.000000] PID hash table entries: 256 (order: -2, 1024 bytes)
[ 0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.000000] Memory: 60100K/65536K available (2687K kernel code, 101K rwdata, 608K rodata, 176K init, 201K bss, 5436K reserved)
[ 0.000000] NR_IRQS:128
[ 0.000000] Alchemy clocksource installed
[ 0.004000] Calibrating delay loop... 323.58 BogoMIPS (lpj=647168)
[ 0.048000] pid_max: default: 32768 minimum: 301
[ 0.052000] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.056000] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.068000] NET: Registered protocol family 16
[ 0.072000] Alchemy clocktree installed
[ 0.076000] Alchemy DMA initialized
[ 0.080000] alchemy-pci alchemy-pci.0: PCI controller at 32 MHz
[ 0.096000] PCI host bridge to bus 0000:00
[ 0.100000] pci_bus 0000:00: root bus resource [mem 0x40000000-0x4fffffff]
[ 0.104000] pci_bus 0000:00: root bus resource [io 0x1000-0xffff]
[ 0.108000] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
[ 0.112000] Switched to clocksource alchemy-counter1
[ 0.120000] NET: Registered protocol family 2
[ 0.132000] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.140000] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.148000] TCP: Hash tables configured (established 1024 bind 1024)
[ 0.156000] TCP: reno registered
[ 0.160000] UDP hash table entries: 256 (order: 0, 4096 bytes)
[ 0.168000] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[ 0.180000] NET: Registered protocol family 1
[ 0.188000] futex hash table entries: 256 (order: -1, 3072 bytes)
[ 0.200000] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.208000] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
[ 0.224000] msgmni has been set to 117
[ 0.280000] io scheduler noop registered
[ 0.288000] io scheduler deadline registered (default)
[ 0.296000] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 0.304000] console [ttyS0] disabled
...[hanging here]...
[ 0.340000] serial8250.8: ttyS1 at MMIO 0x11400000 (irq = 11, base_baud = 5062500) is a 16550A
[ 0.352000] physmap platform flash device: 02000000 at 1e000000
[ 0.360000] physmap-flash.0: Found 2 x16 devices at 0x0 in 32-bit bank. Manufacturer ID 0x000001 Chip ID 0x001200
[ 0.368000] Amd/Fujitsu Extended Query Table at 0x0040
[ 0.376000] Amd/Fujitsu Extended Query version 1.3.
[ 0.380000] number of CFI chips: 1
[ 0.396000] Creating 4 MTD partitions on "physmap-flash.0":
[ 0.400000] 0x000000000000-0x000001c00000 : "rootfs"
[ 0.408000] mtd: device 0 (rootfs) set to be root filesystem
[ 0.416000] 1 squashfs-split partitions found on MTD device rootfs
[ 0.420000] 0x000000160000-0x000001c00000 : "rootfs_data"
[ 0.428000] 0x000001c00000-0x000001d00000 : "yamon"
[ 0.436000] 0x000001d00000-0x000001fc0000 : "kernel"
[ 0.444000] 0x000001fc0000-0x000002000000 : "yamon env"
[ 0.608000] libphy: au1000_eth_mii: probed
[ 0.616000] au1000-eth au1000-eth.0 (unnamed net_device) (uninitialized): attached PHY driver [Generic PHY] (mii_bus:phy_addr=au1000-eth-0:1f, irq=-1)
[ 0.644000] au1000-eth au1000-eth.0 eth0: Au1xx0 Ethernet found at 0x11500000, irq 36
[ 0.652000] au1000_eth: au1000_eth version 1.7 Pete Popov <ppopov@embeddedalley.com>
[ 0.660000] mtx1-wdt mtx1-wdt.0: MTX-1 Watchdog driver
[ 0.668000] TCP: cubic registered
[ 0.672000] NET: Registered protocol family 10
[ 0.680000] NET: Registered protocol family 17
[ 0.688000] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
[ 0.700000] 8021q: 802.1Q VLAN Support v1.8
[ 0.728000] VFS: Mounted root (squashfs filesystem) readonly on device 31:0.
[ 0.736000] Freeing unused kernel memory: 176K (80454000 - 80480000)
[ 2.324000] init: Console is alive
[ 2.328000] init: - watchdog -
[ 2.436000] init: - preinit -
[ 3.700000] random: jshn urandom read with 13 bits of entropy available
Press the [f] key and hit [enter] to enter failsafe mode
Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level
[ 4.736000] au1000-eth au1000-eth.0 eth0: link up (100/Full)
[ 6.468000] jffs2: notice: (295) jffs2_build_xattr_subsystem: complete building xattr subsystem, 0 of xdatum (0 unchecked, 0 orphan) and 0 of xref (0 dead, 0 orphan) found.
[ 6.488000] mount_root: switching to jffs2 overlay
[ 6.516000] urandom-seed: Seeding with /etc/urandom.seed
[ 6.880000] procd: - early -
[ 6.884000] procd: - watchdog -
^[[A[ 7.788000] procd: - ubus -
[ 7.796000] au1000-eth au1000-eth.0 eth0: link down
[ 8.180000] procd: - init -
Please press Enter to activate this console.
BusyBox v1.11.2 (2009-01-05 15:27:21 CET) built-in shell (ash)
Enter 'help' for a list of built-in commands.
_______ ________ __
| |.-----.-----.-----.| | | |.----.| |_
| - || _ | -__| || | | || _|| _|
|_______|| __|_____|__|__||________||__| |____|
|__| W I R E L E S S F R E E D O M
KAMIKAZE (8.09, r14511) ----------------------------
* 10 oz Vodka Shake well with ice and strain
* 10 oz Triple sec mixture into 10 shot glasses.
* 10 oz lime juice Salute!
---------------------------------------------------
root@OpenWrt:/# cat /proc/mtd
dev: size erasesize name
mtd0: 01c00000 00020000 "rootfs"
mtd1: 00100000 00020000 "yamon"
mtd2: 002c0000 00020000 "kernel"
mtd3: 00040000 00020000 "yamon env"
root@OpenWrt:/#
# mtd0: = ... = 29.360.128
# mtd1: = 1mbyte
# mtd2: = 44 blocks = 2816 kb max
# mtd3: = 256kb
the dots:
40+40+16 = 96 dots = 2.337.252 bytes = 24346 bytes/dot?
40+40+40+9 = 129 dots / 24346 bytes/dot? => max 3.140.634 bytes? (MAX?)
40+40+40+8 = 128 dots / 24346 bytes/dot? = 3128636 real - ergo: 24442 bytes/dot (vmlinux.bin/compressed: 1042864 -> 8147 bytes/dot)
40+40+34 = 114 = 2775444 = OpenWrt12.09 (file is a bit bigger: 2.798.164)
YAMON> ping 192.168.0.100
64 bytes ICMP-ECHO-REPLY user data received from 192.168.0.100
YAMON> load /openwrt-au1000-vmlinux-flash.srec
About to load tftp://192.168.0.100/openwrt-au1000-vmlinux-flash.srec
Press Ctrl-C to break
........................................
........................................
........................................
.........
Error : Data verify error
Diag : Data check read: (0xbfe00000)=0x00000502, Data written: 0xa464d547
Hint : Check flash has been erased before programming
YAMON> ping 192.168.0.100
64 bytes ICMP-ECHO-REPLY user data received from 192.168.0.100
YAMON> load /openwrt-au1000-jffs2-128k.srec
About to load tftp://192.168.0.100/openwrt-au1000-jffs2-128k.srec
Press Ctrl-C to break
........................................
........................................
........................................
........................................
........................................
........................................
........................................
........................................
........................................
......................................
Error : Data verify error
Diag : Data check read: (0xbfe00000)=0x00000502, Data written: 0xa464d547
Hint : Check flash has been erased before programming
YAMON> $
YAMON> set