-
Notifications
You must be signed in to change notification settings - Fork 9
/
Linux+IPv6-HOWTO.pt_BR.lyx
31879 lines (21999 loc) · 554 KB
/
Linux+IPv6-HOWTO.pt_BR.lyx
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
#LyX 2.3 created this file. For more info see http://www.lyx.org/
\lyxformat 544
\begin_document
\begin_header
\save_transient_properties true
\origin unavailable
\textclass docbook-book
\begin_preamble
\end_preamble
\use_default_options false
\maintain_unincluded_children false
\language english
\language_package default
\inputencoding default
\fontencoding global
\font_roman "default" "default"
\font_sans "default" "default"
\font_typewriter "default" "default"
\font_math "auto" "auto"
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100 100
\font_tt_scale 100 100
\use_microtype false
\use_dash_ligatures true
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize default
\spacing single
\use_hyperref false
\papersize default
\use_geometry false
\use_package amsmath 1
\use_package amssymb 1
\use_package cancel 1
\use_package esint 0
\use_package mathdots 1
\use_package mathtools 1
\use_package mhchem 1
\use_package stackrel 1
\use_package stmaryrd 1
\use_package undertilde 1
\cite_engine basic
\cite_engine_type default
\biblio_style plain
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\justification true
\use_refstyle 0
\use_minted 0
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\is_math_indent 0
\math_numbering_side default
\quotes_style swedish
\dynamic_quotes 0
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header
\begin_body
\begin_layout Title
Linux IPv6 HOWTO (pt_BR)
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
<author><firstname>Peter</firstname><surname>Bieringer</surname><affiliation><ad
dress>pb at bieringer dot de</address></affiliation></author>
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
<revhistory>
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
<revision> <revnumber>0.66wip</revnumber> <date>2020-04-04</date> <authorinitials
>PB</authorinitials></revision>
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
<revision> <revnumber>0.65</revnumber> <date>2009-12-13</date> <authorinitials>PB
</authorinitials></revision>
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
<revision> <revnumber>0.64</revnumber> <date>2009-06-11</date> <authorinitials>PB
</authorinitials></revision>
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
<revision> <revnumber>0.60</revnumber> <date>2007-05-31</date> <authorinitials>PB
</authorinitials></revision>
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
<revision> <revnumber>0.51</revnumber> <date>2006-11-08</date> <authorinitials>PB
</authorinitials></revision>
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
</revhistory>
\end_layout
\end_inset
\end_layout
\begin_layout Abstract
A meta deste HOWTO de IPv6 em Linux é responder as questões básicas e avançadas
sobre a versão 6 do protocolo IP em um sistema com Linux.
Este HOWTO dará ao leitor informação suficiente para instalar, configurar
e usar aplicações IPv6 em máquinas com o Linux.
Versões intermediárias deste HOWTO estão disponíveis nos endereços
\begin_inset CommandInset href
LatexCommand href
name "mirrors.bieringer.de"
target "http://mirrors.bieringer.de/Linux+IPv6-HOWTO/"
literal "false"
\end_inset
ou
\begin_inset CommandInset href
LatexCommand href
name "mirrors.deepspace6.net"
target "http://mirrors.deepspace6.net/Linux+IPv6-HOWTO/"
literal "false"
\end_inset
.
Veja também
\begin_inset CommandInset ref
LatexCommand ref
name "revision history"
reference "revision-history"
\end_inset
para saber das mudanças.
\end_layout
\begin_layout Chapter
\begin_inset CommandInset label
LatexCommand label
name "chapter-general"
\end_inset
Geral
\end_layout
\begin_layout Standard
As informações sobre as traduções disponíveis estão na seção
\begin_inset CommandInset ref
LatexCommand ref
name "Translations"
reference "general-translations"
\end_inset
.
\end_layout
\begin_layout Section
\begin_inset CommandInset label
LatexCommand label
name "general-copright"
\end_inset
Copyright, licença e outros
\end_layout
\begin_layout Subsection
Copyright
\end_layout
\begin_layout Standard
Escrito e com Copyright (C) 2001-2020 por Peter Bieringer
\end_layout
\begin_layout Subsection
Licença
\end_layout
\begin_layout Standard
\series bold
Este Linux IPv6 HOWTO está publicado sob a licença GNU GPL versão 2
\series default
:
\begin_inset Newline newline
\end_inset
\end_layout
\begin_layout Standard
Linux IPv6 HOWTO, um guia para configurar e usar o IPv6 em sistemas Linux.
\begin_inset Newline newline
\end_inset
\end_layout
\begin_layout Standard
Copyright
\lang ngerman
©
\lang english
2001-2020 Peter Bieringer
\begin_inset Newline newline
\end_inset
\end_layout
\begin_layout Standard
Este documento é um software livre; voce pode redistribui-lo e/ou modifica-lo
sob os termos da licença GNU GPL, tal como está publicado pela Free Software
Foundation; seja pela versão 2 da Licença, ou (em sua opinião) qualquer
versão posterior.
\end_layout
\begin_layout Standard
Este programa é distribuído na esperança de que seja útil, mas SEM QUALQUER
GARANTIA; nem mesmo qualquer garantia de COMERCIALIZAÇÃO ou ADEQUAÇÃO PARA
UM PROPÓSITO PARTICULAR.
Veja a GNU GPL para mais detalhes.
\end_layout
\begin_layout Standard
Se voce quiser uma cópia da licença GNU GPL, solicite através de carta para
o endereço Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110, USA.
\end_layout
\begin_layout Subsection
Sobre o autor
\end_layout
\begin_layout Subsubsection
História do autor com a Internet e IPv6
\end_layout
\begin_layout Itemize
1993: Eu entrei em contato com a internet utilizando um cliente de email
e news baseado em console há bastante tempo (procure por "e91abier" no
grupo
\begin_inset CommandInset href
LatexCommand href
name "groups.google.com"
target "http://groups.google.com/"
literal "false"
\end_inset
, sou eu).
\end_layout
\begin_layout Itemize
1996: Foi solicitado que eu produzisse um curso de IPv6, incluindo um workshop
com o Sistema Operacional Linux.
\end_layout
\begin_layout Itemize
1997: Comecei escrevendo um guia sobre como instalar, configurar e utilizar
o IPv6 em Linux, chamado
\begin_inset CommandInset href
LatexCommand href
name "IPv6 & Linux - HowTo"
target "http://www.bieringer.de/linux/IPv6/"
literal "false"
\end_inset
(veja
\begin_inset CommandInset href
LatexCommand href
name "IPv6 & Linux - HowTo/History"
target "http://www.bieringer.de/linux/IPv6/IPv6-HOWTO/IPv6-HOWTO-0.html#history"
literal "false"
\end_inset
para mais informações).
\end_layout
\begin_layout Itemize
2001: Comecei a escrever este novo Linux IPv6 HOWTO.
\end_layout
\begin_layout Subsubsection
Contato
\end_layout
\begin_layout Standard
O autor pode ser contactado através do endereço de email <pb at bieringer
dot de> e também através de sua
\begin_inset CommandInset href
LatexCommand href
name "homepage"
target "http://www.bieringer.de/pb/"
literal "false"
\end_inset
.
\end_layout
\begin_layout Standard
Atualmente ele mora em Munique [parte nordeste de Schwabing] / Bavaria /
Alemanha (sul) / Europa (centro) / Terra (superfície).
\end_layout
\begin_layout Section
\begin_inset CommandInset label
LatexCommand label
name "general-category"
\end_inset
Categoria
\end_layout
\begin_layout Standard
Este HOWTO deve ser listado na categoria "Networking/Protocols".
\end_layout
\begin_layout Section
Versão, Histórico e To-Do
\end_layout
\begin_layout Subsection
Versão
\end_layout
\begin_layout Standard
A versão atual deste documento é mostrada no começo do documento.
\end_layout
\begin_layout Standard
Para outras versões ou traduções disponíveis, veja o site
\begin_inset CommandInset href
LatexCommand href
name "http://www.bieringer.de/linux/IPv6/"
target "http://www.bieringer.de/linux/IPv6/"
literal "false"
\end_inset
.
\end_layout
\begin_layout Subsection
Histórico
\end_layout
\begin_layout Subsubsection
Relevantes
\end_layout
\begin_layout Standard
2001-11-30: Começo do estilo do novo HOWTO.
\end_layout
\begin_layout Standard
2002-01-02: Maioria do conteúdo feito, primeira publicação do capítulo 1(versão
0.10).
\end_layout
\begin_layout Standard
2002-01-14: Mais conteúdo, algumas revisões, e publicação do documento completo
(version 0.14).
\end_layout
\begin_layout Standard
2002-08-16: Tradução para o Polones em progresso
\end_layout
\begin_layout Standard
2002-10-31: Tradução para o Chines disponível (veja
\begin_inset CommandInset ref
LatexCommand ref
name "Translations"
reference "general-translations"
\end_inset
para mais informações)
\end_layout
\begin_layout Standard
2002-11-10: Tradução para o Alemão em progresso
\end_layout
\begin_layout Standard
2003-02-10: Tradução para o Alemão disponível
\end_layout
\begin_layout Standard
2003-04-09: Tradução para o Frances em progresso
\end_layout
\begin_layout Standard
2003-05-09: Tradução para o Frances disponível
\end_layout
\begin_layout Standard
2003-10-16: Tradução para o Italiano em progresso
\end_layout
\begin_layout Standard
2004-03-12: Tradução para o Italiano disponível
\end_layout
\begin_layout Standard
2004-06-18: Tradução para o Grego em progresso
\end_layout
\begin_layout Standard
2005-07-25: Tradução para o Turco disponível
\end_layout
\begin_layout Standard
2007-03-28: Tradução para o Portugues-Brazil em progresso
\end_layout
\begin_layout Standard
2008-07-30: Tradução para o Espanhol disponível (mas ainda em progresso)
- (lost, URL no longer valid)
\end_layout
\begin_layout Subsubsection
História completa
\end_layout
\begin_layout Standard
Veja
\begin_inset CommandInset ref
LatexCommand ref
name "revision history"
reference "revision-history"
\end_inset
no final deste documento
\end_layout
\begin_layout Subsection
To-Do
\end_layout
\begin_layout Itemize
Completar conteúdo que ainda falta
\end_layout
\begin_layout Itemize
Finalizar a checagem gramatical
\end_layout
\begin_layout Section
\begin_inset CommandInset label
LatexCommand label
name "general-translations"
\end_inset
Traduções
\end_layout
\begin_layout Standard
As traduções devem sempre conter a URL, número da versão c copyright do
documento original (e o seu também).
Por favor não traduza o changelog original, pois isto não terá muita importanci
a.
Também não traduza a seção sobre traduções disponíveis, pois elas podem
estar desatualizadas.
Ao invés disso, adicione uma URL para a seção em Ingles deste HOWTO.
\end_layout
\begin_layout Standard
Aparentemente a frequencia de mudança deste documento ocorre menos de uma
vez por mes.
Desde a versão 0.2.7 parece que a maioria do conteúdo que eu fiz foi escrito.
As traduções devem sempre ter a versão em ingles como original..
\end_layout
\begin_layout Subsection
Linguagens
\end_layout
\begin_layout Standard
Nota: uma olhada nesta URL pode ajudar
\begin_inset CommandInset href
LatexCommand href
name "http://www.bieringer.de/linux/IPv6/"
target "http://www.bieringer.de/linux/IPv6/"
literal "false"
\end_inset
.
\end_layout
\begin_layout Subsubsection
Chines
\end_layout
\begin_layout Standard
A tradução para o Chines, feito por Burma Chen <expns at yahoo dot com>
(informada a mim em 2002-10-31) e pode ser encontrada no TLDP:
\begin_inset CommandInset href
LatexCommand href
name "http://www.ibiblio.org/pub/Linux/docs/HOWTO/translations/zh/Linux-IPv6-HOWTO.txt.gz (g'zipped txt)"
target "http://www.ibiblio.org/pub/Linux/docs/HOWTO/translations/zh/Linux-IPv6-HOWTO.txt.gz"
literal "false"
\end_inset
.
É uma foto da tradução, eu não sei se está atualizada.
\end_layout
\begin_layout Subsubsection
Polones
\end_layout
\begin_layout Standard
Desde 2002-08-16 a tradução para o Polones foi iniciada e ainda está em
progresso por Lukasz Jokiel <Lukasz dot Jokiel at klonex dot com dot pl>.
Versão usada: CVS-version 1.29 do arquivo LyX, a qual foi a origem para
a versão 0.2.7.
O status é de ainda em progresso (2004-08-30).
\end_layout
\begin_layout Subsubsection
German
\end_layout
\begin_layout Standard
Em 2002-11-10 a versão Alemã foi iniciada por Georg Käfer <gkaefer at gmx
dot at> iniciou a tradução para o alemão, e a primeira publicação foi feita
em 2003-02-10.
Ela está originalmenmte disponível na Deep Space 6
\begin_inset CommandInset href
LatexCommand href
name "http://mirrors.deepspace6.net/Linux+IPv6-HOWTO-de/"
target "http://mirrors.deepspace6.net/Linux+IPv6-HOWTO-de/"
literal "false"
\end_inset
(e também em
\begin_inset CommandInset href
LatexCommand href
name "http://mirrors.bieringer.de/Linux+IPv6-HOWTO-de/"
target "http://mirrors.bieringer.de/Linux+IPv6-HOWTO-de/"
literal "false"
\end_inset
).
Esta versão se manterá atualizada tanto quanto for possível.
\end_layout
\begin_layout Subsubsection
Frances
\end_layout
\begin_layout Standard
Em 2003-04-09 foi iniciada a tradução da versão em Frances, por Michel Boucey
<mboucey at free dot fr> e a primeira publicação foi em 2003-05-09.
Ela está originalmente disponível na Deep Space 6
\begin_inset CommandInset href
LatexCommand href
name "http://mirrors.deepspace6.net/Linux+IPv6-HOWTO-fr/"
target "http://mirrors.deepspace6.net/Linux+IPv6-HOWTO-fr/"
literal "false"
\end_inset
(e também em
\begin_inset CommandInset href
LatexCommand href
name "http://mirrors.bieringer.de/Linux+IPv6-HOWTO-fr/"
target "http://mirrors.bieringer.de/Linux+IPv6-HOWTO-fr/"
literal "false"
\end_inset
).
\end_layout
\begin_layout Subsubsection
Espanhol
\end_layout
\begin_layout Standard
Um membro do projeto MontevideoLibre, localizado no Uruguai (América do
Sul) iniciou a tradução para espanhol no formato wiki: (lost, URL no longer
valid)
\end_layout
\begin_layout Subsubsection
Italiano
\end_layout
\begin_layout Standard
Em 2003-10-16 a tradução para uma versão em Italiano foi iniciada Michele
Ferritto <m dot ferritto at virgilio dot it> para o
\begin_inset CommandInset href
LatexCommand href
name "ILDP"
target "http://ildp.pluto.linux.it/"
literal "false"
\end_inset
(Italian Linux Documentation Project) e a sua primeira publicação foi em
2004-03-12.
Ela está originalmente disponível no ILDP em
\begin_inset CommandInset href
LatexCommand href
name "http://www.pluto.it/ildp/howto/ipv6.html"
target "http://www.pluto.it/ildp/howto/ipv6.html"
literal "false"
\end_inset
.
\end_layout
\begin_layout Subsubsection
Japones
\end_layout
\begin_layout Standard
Em 2003-05-14 Shino Taketani <shino_1305 at hotmail dot com> me enviou uma
nota dizendo que planejava traduzir o HOWTO para o japones.
\end_layout
\begin_layout Subsubsection
Grego
\end_layout
\begin_layout Standard
Em 2004-06-18 Nikolaos Tsarmpopoulos <ntsarb at uth dot gr> me enviou uma
nota dizendo que planejava traduzir o HOWTO para o Grego.
\end_layout
\begin_layout Subsubsection
Turco
\end_layout
\begin_layout Standard
Em 2005-07-18 Necdet Yucel <nyucel at comu dot edu dot tr> me enviou uma
nota dizendo que a tradução em Turco estava disponível.
E uma fotografia da tradução (versão 0.61) pode ser encontrada na URL
\begin_inset CommandInset href
LatexCommand href
name "http://docs.comu.edu.tr/howto/ipv6-howto.html"
target "http://docs.comu.edu.tr/howto/ipv6-howto.html"
literal "false"
\end_inset
.
\end_layout
\begin_layout Subsubsection
Portuguese-Brazil
\end_layout
\begin_layout Standard
Em 2011-05-06 Gustavo Mendes de Carvalho <gmcarvalho at gmail dot com> iniciou
a tradução deste HowTo para Portugues-Brazil.
A primeira tentativa realizada em 2007 por Claudemir da Luz <claudemir
dot daluz at virtuallink dot com dot br> nunca foi finalizada.
\end_layout
\begin_layout Section
Técnico
\end_layout
\begin_layout Subsection
\begin_inset CommandInset label
LatexCommand label
name "general-original-source"
\end_inset
Fonte original deste HOWTO
\end_layout
\begin_layout Standard
Este HOWTO foi escrito usando LyX versão 2.2.2 em um sistema Linux Fedora
25 com o template SGML/XML (DocBook).
Ele está disponível em
\begin_inset CommandInset href
LatexCommand href
name "github / tLDP / Linux-IPv6"
target "https://github.com/tLDP/Linux-IPv6/"
literal "false"
\end_inset
para contribuições.
\end_layout
\begin_layout Subsubsection
Divisor de linha de código
\end_layout
\begin_layout Standard
Eu utilizei um utilitário divisor de linha de código (Code line wrapping
- "lyxcodelinewrapper.pl") feito por mim mesmo, e ele está disponível para
seu próprio uso em
\begin_inset CommandInset href
LatexCommand href
name "github / tLDP / Linux-IPv6"
target "https://github.com/tLDP/Linux-IPv6/"
literal "false"
\end_inset
\end_layout
\begin_layout Subsubsection
Geração de SGML
\end_layout
\begin_layout Standard
O SGML/XML é gerado usando a função de exportar do LyX
\end_layout
\begin_layout Subsection
Referencias On-line para a versão em HTML deste HOWTO
\end_layout
\begin_layout Subsubsection
Página principal
\end_layout
\begin_layout Standard
Como boa prática, uma referencia à página principal deste HOWTO é recomendada.
\end_layout
\begin_layout Subsubsection
Páginas dedicadas
\end_layout
\begin_layout Standard
Como as páginas em HTML são geradas a partir dos arquivos SGML, os nomes
dos arquivos em HTML podem ser bastante diferentes (randomicos).
Entretanto, algumas páginas são etiquetadas em LyX, resultando em nomes
estáticos.
Estas etiquetas são úteis para referencias e não deveriam ser alteradas
no futuro.
Se voce acredita que eu esqueci qualquer etiqueta, por favor me avise,
e eu colocarei.
\end_layout
\begin_layout Section
Prefácio
\end_layout
\begin_layout Standard
Algumas coisas antes:
\end_layout
\begin_layout Subsection
Quantas versões deste HOWTO existem por aí ?
\end_layout
\begin_layout Standard
Incluindo esta, existem 3 (tres) documentos HOWTO disponíveis.
Minhas desculpas se forem demais ;-)
\end_layout
\begin_layout Subsubsection
Linux IPv6 FAQ/HOWTO (desatualizada)
\end_layout
\begin_layout Standard
O primeiro documento HOWTO relacionado a IPv6 foi escrito pelo Eric Osborne
e era chamado
\begin_inset CommandInset href
LatexCommand href
name "Linux IPv6 FAQ/HOWTO"
target "http://www.linuxhq.com/IPv6/"
literal "false"
\end_inset
(por favor use-o somente para fins históricos).
Sua última versão foi a 3.2.1, lançada em 14 de Julho de 1997.
\end_layout
\begin_layout Standard
Por favor ajude: Se alguém souber a data de nascimento deste HOWTO, por
favor me envie um e-mail (estas informações são necessárias para o "histórico").
\end_layout
\begin_layout Subsubsection
IPv6 & Linux - HowTo (mantida)
\end_layout
\begin_layout Standard
Esta segunda versão existe e se chama
\begin_inset CommandInset href
LatexCommand href
name "IPv6 & Linux - HowTo"
target "http://www.bieringer.de/linux/IPv6/"
literal "false"
\end_inset
escrita por mim (Peter Bieringer) em HTML puro.
Ele nasceu em Abril de 1997 e sua primeira versão em ingles foi publicada
em Junho de 1997.
Eu vou continuar a manter esta versão, mas isto deve acontecer devagar
e não será por completo, em favor da atualização da versão do Linux IPv6
HOWTO que voce está lendo agora.
\end_layout
\begin_layout Subsubsection
Linux IPv6 HOWTO (este documento)
\end_layout
\begin_layout Standard
Já que este
\begin_inset CommandInset href
LatexCommand href
name "IPv6 & Linux - HowTo"
target "http://www.bieringer.de/linux/IPv6/"
literal "false"
\end_inset
foi escrito em HTML puro, ele não é compatível com o
\begin_inset CommandInset href
LatexCommand href
name "The Linux Documentation Project (TLDP)"
target "http://www.tldp.org/"
literal "false"
\end_inset
.
Eu recebi então um pedido no final de Novembro de 2001 para reescrever
este HowTo
\begin_inset CommandInset href
LatexCommand href
name "IPv6 & Linux - HowTo"
target "http://www.bieringer.de/linux/IPv6/"
literal "false"
\end_inset
em SGML.
Entretanto, por causa da descontinuidade do HOWTO (
\begin_inset CommandInset href
LatexCommand href
name "Future of IPv6 & Linux - HowTo"
target "http://www.bieringer.de/linux/IPv6/IPv6-HOWTO/IPv6-HOWTO-0.html#history"
literal "false"
\end_inset
), e como o IPv6 estava ficando mais e mais padronizado, eu decidi escrever
um novo documento cobrindo os pontos básicos e um pouco avançados que permanece
ram importantes ao longo destes anos.
Algum conteúdo mais dinamico e avançado ainda pode ser encontrado neste
segundo HOWTO (
\begin_inset CommandInset href
LatexCommand href
name "IPv6 & Linux - HowTo"
target "http://www.bieringer.de/linux/IPv6/"
literal "false"
\end_inset
).
\end_layout
\begin_layout Section
Termos usados, glossário e atalhos
\end_layout
\begin_layout Subsection
Rede
\end_layout
\begin_layout Description
Base
\begin_inset space ~
\end_inset
10 Sistema numérico muito bem conhecido e representa qualquer valor com