Linux IPv6 HOWTO (4)
2008年9月13日
没有评论
14.1 Red Hat Linux and "clones"(小紅帽和它的弟兄娣妹)
自從我開始寫 [33]IPv6 & Linux - HowTo.我打算設定一個持久的IPv6配置,包 含: host-only, router-only, dual-homed-host, router with second stub network, normal tunnels, 6to4 tunnels 和其它.現在我寫了一 個configuration and script files 這個script有自己的HOWTO:
[34]IPv6-HOWTO/scripts/current. 夠運的是, Red Hat Linux 從 7.1 開始就 包含了這個script.多虧了Pekka Savola的幫助.
14.2 Mandrake(曼德萊克)Linux
從8.0後也包含了 IPv6-enabled initscript package但是有點小問 題("ifconfig" misses "inet6" before "add").
支持IPv6的網路設定 scripts 測試
script library應該存在: ______________________________________________________________
/etc/sysconfig/network-scripts/network-functions-ipv6 ______________________________________________________________
自動測試: ______________________________________________________________
# test -f /etc/sysconfig/network-scripts/network-functions-ipv6 && echo "Main ? IPv6 script library exists" ______________________________________________________________
library的版本很重要, 更高的版本包含了更多的功能.您可以通過這個檢視它: ______________________________________________________________
# source /etc/sysconfig/network-scripts/network-functions-ipv6 && ? getversion_ipv6_functions 20011124 ______________________________________________________________
Short hint for enabling IPv6 on current RHL 7.1, 7.2, 7.3, ...(一些小提示)
* 檢視IPv6模組是否已經掛進系統. ______________________________________________________________
# modprobe -c | grep net-pf-10 alias net-pf-10 off ______________________________________________________________
* 如果是"off" 在 /etc/sysconfig/network 中加入IPv6的支持. ______________________________________________________________
NETWORKING_IPV6=yes ______________________________________________________________
* 重新初始網路: ______________________________________________________________
# service network restart ______________________________________________________________
* IPv6模組應該掛進來了: ______________________________________________________________
# modprobe -c | grep ipv6 alias net-pf-10 ipv6 ______________________________________________________________
如果您提供路由廣告autoconfiguration 會自動為您設定, 更多的資訊請看 /usr/share/doc/initscripts-$version/sysconfig.txt.
14.3 SuSE(蘇澤斯)Linux
7.x 以上, 支持IPv6. 在/etc/rc.config 裡有更多的資訊. 因為不同的設定方 法和scripts結構, 所以不能將Red Hat Linux 當中的方法照搬過來.
更詳盡的資訊請看:
[35]How to setup 6to4 IPv6 with SuSE 7.3
14.4 Debian(迪比安)Linux
參照: [36]IPv6 on Debian Linux
15. 防火牆
15.1 使用 netfilter6防火牆
netfilter6防火牆只支持2.4以上的核心.早期的2.2核心您只能用41號協議過 濾IPv6-in-IPv4.
警告: 按照例子那樣設定並不能真正地保護您的作業系統.
15.2 更多的資訊:
* [37]Netfilter project * [38]maillist archive of netfilter users * [39]maillist archive of netfilter developers * [40]Unofficial status informations
15.3 準備
下載最新的核心: [41]http://www.kernel.org/
下載最新的iptables:
tar: [42]http://www.netfilter.org/
Source RPM for rebuild of binary (for RedHat systems): [43]ftp://ftp.redhat.com/redhat/linux/rawhide/SRPMS/SRPMS/
解開源代碼
解開源代碼與更名 ______________________________________________________________
# tar z|jxf kernel-version.tar.gz|bz2 # mv linux linux-version-iptables-version+IPv6 ______________________________________________________________
解開 iptables 源代碼 ______________________________________________________________
# tar z|jxf iptables-version.tar.gz|bz2 ______________________________________________________________
Apply pending patches ______________________________________________________________
# make pending-patches KERNEL_DIR=/path/to/src/linux-version-iptables-version/ ______________________________________________________________
Apply additional IPv6 related patches (still not in the vanilla kernel included) ______________________________________________________________
# make patch-o-matic KERNEL_DIR=/path/to/src/linux-version-iptables-version/ ______________________________________________________________
在下面的選單中回答yes: * ah-esp.patch * masq-dynaddr.patch (only needed for systems with dynamic IP assigned WAN connections like PPP or PPPoE) * ipv6-agr.patch.ipv6 * ipv6-ports.patch.ipv6 * LOG.patch.ipv6 * REJECT.patch.ipv6
檢視IPv6括展: ______________________________________________________________
# make print-extensions Extensions found: IPv6:owner IPv6:limit IPv6:mac IPv6:multiport ______________________________________________________________
Configure, build and install new kernel(設定,編譯,安裝新的核心)
進入代碼目錄: ______________________________________________________________
# cd /path/to/src/linux-version-iptables-version/ ______________________________________________________________
改變Makefile ______________________________________________________________
- EXTRAVERSION = + EXTRAVERSION = -iptables-version+IPv6-try ______________________________________________________________
運行相關的設定:Run configure, enable IPv6 related ______________________________________________________________
Code maturity level options Prompt for development and/or incomplete code/drivers : yes Networking options Network packet filtering: yes The IPv6 protocol: module IPv6: Netfilter Configuration IP6 tables support: module All new options like following: limit match support: module MAC address match support: module Multiple port match support: module Owner match support: module netfilter MARK match support: module Aggregated address check: module Packet filtering: module REJECT target support: module LOG target support: module Packet mangling: module MARK target support: module ______________________________________________________________
在系統的其它方面進行相應的修改.
Rebuild and install binaries of iptables (打造一個新的iptables)
確定您的核心源代碼存在於: /usr/src/linux/
Rename older directory ______________________________________________________________
# mv /usr/src/linux /usr/src/linux.old ______________________________________________________________
Create a new softlink ______________________________________________________________
# ln /path/to/src/linux-version-iptables-version /usr/src/linux ______________________________________________________________
Rebuild SRPMS ______________________________________________________________
# rpm --rebuild /path/to/SRPMS/iptables-version-release.src.rpm ______________________________________________________________
Install new iptables packages (iptables + iptables-ipv6) 安裝新 的iptables * On RH 7.1 systems, 通常已經有一個更早的版本, therefore use "freshen" ______________________________________________________________
# rpm -Fhv /path/to/RPMS/cpu/iptables*-version-release.cpu.rpm ______________________________________________________________
* 如果沒有安裝,您就親自來吧: ______________________________________________________________
# rpm -ihv /path/to/RPMS/cpu/iptables*-version-release.cpu.rpm ______________________________________________________________
* 如果在RH6.2上安裝,要加上"--nodep": ______________________________________________________________
# rpm -ihv --nodep /path/to/RPMS/cpu/iptables*-version-release.cpu.rpm
______________________________________________________________
* 可能要為iptables加上一個softlink: ______________________________________________________________
# ln -s /lib/iptables/ /usr/lib/iptables ______________________________________________________________
15.4 使用方法
檢視
將模組掛進來: ______________________________________________________________
# modprobe ip6_tables ______________________________________________________________
檢視 ______________________________________________________________
# [ ! -f /proc/net/ip6_tables_names ] && echo "Current kernel doesn'tsupport ? 'ip6tables' firewalling (IPv6)!" ______________________________________________________________
15.5 使用ip6tables
16.3.2.1. List all IPv6 netfilter entries
Short
# ip6tables -L
Extended
# ip6tables -n -v --line-numbers -L
List specified filter# ip6tables -n -v --line-numbers -L INPUT
加入一個日誌:# ip6tables --table filter --append INPUT -j LOG --log-prefix "INPUT:"? --log-level 7
加入一個入站丟棄的條件:# ip6tables --table filter --append INPUT -j DROP
移除一個條件:# ip6tables --table filter --delete INPUT 1
允許 ICMPv6:Using older kernels (unpatched kernel 2.4.5 and iptables-1.2.2) no type can bespecified
允許入站 ICMPv6 經過 tunnels
# ip6tables -A INPUT -i sit+ -p icmpv6 -j ACCEPT
允許出站 ICMPv6 經過 tunnels# ip6tables -A OUTPUT -o sit+ -p icmpv6 -j ACCEPT
Newer kernels allow specifying of ICMPv6 types:
# ip6tables -A INPUT -p icmpv6 --icmpv6-type echo-request -j ACCEPT
限制Rate-limitingBecause it can happen (author already saw it to times) that an ICMPv6 storm will raise up, you should use available rate limiting for at least ICMPv6 ruleset. In addition logging rules should also get rate limiting to prevent DoS attacks against syslog and storage of log file partition. An example for a rate limited ICMPv6 looks like:
# ip6tables -A INPUT --protocol icmpv6 --icmpv6-type echo-request -j ACCEPT --match limit --limit 30/minute
允許入站的 SSHHere an example is shown for a ruleset which allows incoming SSH connection from a specified IPv6 address
允許來自 3ffe:ffff:100::1/128 的 SSH 入站
# ip6tables -A INPUT -i sit+ -p tcp -s 3ffe:ffff:100::1/128 --sport 512:65535? --dport 22 -j ACCEPT
允許回應包Allow response packets (此刻 IPv6 連結追蹤不在 mainstream netfilter6implemented 當中)
# ip6tables -A OUTPUT -o sit+ -p tcp -d 3ffe:ffff:100::1/128 --dport 512:65535? --sport 22 ! --syn j ACCEPT
充許 tunneled IPv6-in-IPv4Tto accept tunneled IPv6-in-IPv4 packets, 在IPv4 防火牆做相應的設定 firewall setup relating to such packets, for example
充許 interface ppp0 的 IPv6-in-IPv4 入站
# iptables -A INPUT -i ppp0 -p ipv6 -j ACCEPT
充許 interface ppp0 的 IPv6-in-IPv4 出站
# iptables -A OUTPUT -o ppp0 -p ipv6 -j ACCEPT
If you have only a static tunnel, you can specify the IPv4 addresses, too, like
充許來自 endpoint 1.2.3.4 的 IPv6-in-IPv4 通過 interface ppp0 入站
# iptables -A INPUT -i ppp0 -p ipv6 -s 1.2.3.4 -j ACCEPT
充許來自 endpoint 1.2.3.4 的 IPv6-in-IPv4 通過 interface ppp0 入站
# iptables -A OUTPUT -o ppp0 -p ipv6 -d 1.2.3.4 -j ACCEPT
16.3.2.10. Protection against incoming TCP connection requests極力推薦! 出於安全考慮 您應當加入一個阻止TCP 連結請求入站的條件 . Adapt "-i" option, if other interface names are in use!
阻止入站的 TCP 連結請求
# ip6tables -I INPUT -i sit+ -p tcp --syn -j DROP
在路由器後面 阻止入站的 TCP 連結請求
# ip6tables -I FORWARD -i sit+ -p tcp --syn -j DROP
可能這些條件以經存在其它地方,但這是您想當然的想法.最好建一個包含很多條件的 script 然後執行.
16.3.2.11.阻止入站的 UDP 連結請求
極力推薦! 提起過我的防火牆資訊可以控制出站 UDP/TCP 會話的端口. 所以如果您的本地IPv6系統使用本地端口 比如:從 32768 至 60999 您也可以像這樣過濾UDP連結 (直到連結跟蹤正常工作) like:
阻止入站的 UDP 數據包 , 斬斷請求出站的回應數據包
# ip6tables -I INPUT -i sit+ -p udp ! --dport 32768:60999 -j DROP
在路由器上面阻止入站的 UDP 數據包轉寄到路由器後面的主機
ip6tables -I FORWARD -i sit+ -p udp ! --dport 32768:60999 -j DROP
實例:
下面這個實例是一個經典, 由 Happy netfilter6 ruleset 生成: ______________________________________________________________
# ip6tables -n -v -LChain INPUT (policy DROP 0 packets, 0 bytes) pkts bytes target prot opt in out source destination 0 0 extIN all sit+ * ::/0 ::/0 4 384 intIN all eth0 * ::/0 ::/0 0 0 ACCEPT all * * ::1/128 ::1/128 0 0 ACCEPT all lo * ::/0 ::/0 0 0 LOG all * * ::/0 ::/0? LOG flags 0 level 7 prefix `INPUT-default:' 0 0 DROP all * * ::/0 ::/0
Chain FORWARD (policy DROP 0 packets, 0 bytes) pkts bytes target prot opt in out source destination? 0 0 int2ext all eth0 sit+ ::/0 ::/0 0 0 ext2int all sit+ eth0 ::/0 ::/0 0 0 LOG all * * ::/0 ::/0? LOG flags 0 level 7 prefix `FORWARD-default:' 0 0 DROP all * * ::/0 ::/0
Chain OUTPUT (policy DROP 0 packets, 0 bytes) pkts bytes target prot opt in out source destination? 0 0 extOUT all * sit+ ::/0 ::/0 4 384 intOUT all * eth0 ::/0 ::/0 0 0 ACCEPT all * * ::1/128 ::1/128 0 0 ACCEPT all * lo ::/0 ::/0 0 0 LOG all * * ::/0 ::/0? LOG flags 0 level 7 prefix `OUTPUT-default:' 0 0 DROP all * * ::/0 ::/0
Chain ext2int (1 references) pkts bytes target prot opt in out source destination? 0 0 ACCEPT icmpv6 * * ::/0 ::/0 0 0 ACCEPT tcp * * ::/0 ::/0? tcp spts:1:65535 dpts:1024:65535 flags:!0x16/0x02 0 0 LOG all * * ::/0 ::/0? LOG flags 0 level 7 prefix `ext2int-default:' 0 0 DROP tcp * * ::/0 ::/0 0 0 DROP udp * * ::/0 ::/0 0 0 DROP all * * ::/0 ::/0
Chain extIN (1 references) pkts bytes target prot opt in out source destination? 0 0 ACCEPT tcp * * 3ffe:400:100::1/128 ::/0? tcp spts:512:65535 dpt:22 0 0 ACCEPT tcp * * 3ffe:400:100::2/128 ::/0? tcp spts:512:65535 dpt:22 0 0 ACCEPT icmpv6 * * ::/0 ::/0 0 0 ACCEPT tcp * * ::/0 ::/0? tcp spts:1:65535 dpts:1024:65535 flags:!0x16/0x02 0 0 ACCEPT udp * * ::/0 ::/0? udp spts:1:65535 dpts:1024:65535 0 0 LOG all * * ::/0 ::/0? limit: avg 5/min burst 5 LOG flags 0 level 7 prefix `extIN-default:' 0 0 DROP all * * ::/0 ::/0
Chain extOUT (1 references) pkts bytes target prot opt in out source destination? 0 0 ACCEPT tcp * * ::/0? 3ffe:ffff:100::1/128tcp spt:22 dpts:512:65535 flags:!0x16/0x02 0 0 ACCEPT tcp * * ::/0? 3ffe:ffff:100::2/128tcp spt:22 dpts:512:65535 flags:!0x16/0x02 0 0 ACCEPT icmpv6 * * ::/0 ::/0 0 0 ACCEPT tcp * * ::/0 ::/0? tcp spts:1024:65535 dpts:1:65535 0 0 ACCEPT udp * * ::/0 ::/0? udp spts:1024:65535 dpts:1:65535 0 0 LOG all * * ::/0 ::/0? LOG flags 0 level 7 prefix `extOUT-default:' 0 0 DROP all * * ::/0 ::/0
Chain int2ext (1 references) pkts bytes target prot opt in out source destination? 0 0 ACCEPT icmpv6 * * ::/0 ::/0 0 0 ACCEPT tcp * * ::/0 ::/0? tcp spts:1024:65535 dpts:1:65535 0 0 LOG all * * ::/0 ::/0? LOG flags 0 level 7 prefix `int2ext:' 0 0 DROP all * * ::/0 ::/0 0 0 LOG all * * ::/0 ::/0? LOG flags 0 level 7 prefix `int2ext-default:' 0 0 DROP tcp * * ::/0 ::/0 0 0 DROP udp * * ::/0 ::/0 0 0 DROP all * * ::/0 ::/0
Chain intIN (1 references) pkts bytes target prot opt in out source destination? 0 0 ACCEPT all * * ::/0? fe80::/ffc0:: 4 384 ACCEPT all * * ::/0 ff02::/16
Chain intOUT (1 references) pkts bytes target prot opt in out source destination? 0 0 ACCEPT all * * ::/0? fe80::/ffc0:: 4 384 ACCEPT all * * ::/0 ff02::/16 0 0 LOG all * * ::/0 ::/0? LOG flags 0 level 7 prefix `intOUT-default:' 0 0 DROP all * * ::/0 ::/0 ______________________________________________________________
16. 安全
16.1 Access limitations
有許多服務使用 tcp_wrapper library 控制訪問.Below is described the use of tcp_wrapper
內容有待增加...
16.2 IPv6安全審核
目前沒有什麼較好的商業工具來進行
Legal issues
警告:您只能掃瞄自己的系統,不然,可能會觸及法律.開始之前,請檢察您要掃瞄 的IPv6目標地址兩次!.
16.3 Security auditing using IPv6-enabled netcat(使用適應IPv6的netcat)
關於IPv6-enabled netcat的詳細資訊請參照: [44] IPv6?status-apps/security-auditing
例子: ______________________________________________________________
# nc6 ::1 daytime 13 JUL 2002 11:22:22 CEST ______________________________________________________________
16.4 Security auditing using IPv6-enabled nmap
全世界最為優秀的掃瞄程式之一.它的首頁: [45] http://www.insecure.org/nmap/ 從 3.10ALPHA1 的版本開始支持IPv6. 例子: ______________________________________________________________
# nmap -6 -sT ::1 Starting nmap V. 3.10ALPHA3 ( www.insecure.org/nmap/ ) Interesting ports on localhost6 (::1): (The 1600 ports scanned but not shown below are in state: closed) Port State Service 22/tcp open ssh 53/tcp open domain 515/tcp open printer 2401/tcp open cvspserver Nmap run completed -- 1 IP address (1 host up) scanned in 0.525 seconds ______________________________________________________________
16.5 Security auditing using IPv6-enabled strobe
Strobe 同 NMap相比更不具靈活性,但已經有 IPv6-enabling patch (see IPv6?status-apps/security-auditing for more). Usage example: ______________________________________________________________
# ./strobe ::1 strobe 1.05 (c) 1995-1999 Julian Assange <proff@iq.org>. ::1 2401 unassigned unknown ::1 22 ssh Secure Shell - RSA encrypted rsh ::1 515 printer spooler (lpd) ::1 6010 unassigned unknown ::1 53 domain Domain Name Server ______________________________________________________________
16.6 審核結果
如果審核結果同您的IPv6安全策略有出入, 請堵上檢測出的漏洞.
17. Encryption and Authentication(加密和認證)
Support in kernel
Currently missing in 2.4, perhaps in 2.5 (see below). There is an issue about keeping the Linux kernel source free of export/import-control-laws regarding encryption code. This is also one case why [46]FreeS/WAN project (IPv4 only IPsec) isn't still contained in vanilla source.
Support in USAGI kernel
The USAGI project has taken over in July 2001 the IPv6 enabled FreeS/WAN code from the [47]IABG / IPv6 Project and included in their kernel extensions, but still work in progress, means that not all IABG features are already working in USAGI extension.
17.1 用法
參照: [48]FreeS/WAN / Online documentation
18. 線上測試工具
內容有待增加... 歡迎提建議! * finger, nslookup, ping, traceroute, whois: [49]UK IPv6 Resource Centre / The test page * ping, traceroute, tracepath, 6bone registry, DNS: [50]JOIN / Testtools (German language only, but should be no problem for non German speakers) * traceroute6, whois: [51]IPng.nl
19. 其它資訊
19.1 線上資訊
加入IPv6 backbone骨幹網路 IPv6 test backbone: [52]6bone, [53]How to join 6bone
主要的註冊區域
* America: [54]ARIN [55]Ripe * Asia/Pacific: [56]APNIC * Latin America and Caribbea: [57]LACNIC
Also a list of major (prefix length 35) allocations per local registry is available here: [58]Ripe NCC / IPv6 allocations
Tunnel brokers
* [59]Freenet6 Canada * [60]Hurricane Electric US backbone * [61]Centro Studi e Laboratory Telecomunicazioni Italy * [62]Wanadoo Belgium * [63]CERTNET-Nokia China * [64]Tunnelbroker Leipzig Germany - DialupUsers with dynamic IP's can get a fix IPv6 IP... * [65]Internet Initiative Japan Japan - with IPv6 native line service and IPv6 tunneling Service * [66]XS26 - Access to SixNetherland - with POPs in Slovak Republic, Czech Republic, Netherlands, Germany and Hungary. * [67]IPng Netherland Netherland - Intouch, SurfNet, AMS-IX, UUNet, Cistron, RIPE NCC and AT& T are connected at the AMS-IX. It is possible (there are requirements...) to get an static tunnel. * [68]UNINETT Norway - Pilot IPv6 Service (for Customers): tunnelbroker & address allocation * [69]NTT Europe [70]NTT Euroope United Kingdom - IPv6 Trial. IPv4 Tunnel and native IPv6 leased Line connections. POPs are located in London, UK Dusseldorf, Germany New Jersey, USA (East Coast) Cupertino, USA (West Coast) Tokyo, Japan * [71]ESnet USA - Energy Sciences Network: Tunnel Registry & Address Delegation for directly connected ESnet sites and ESnet collaborators. * [72]6REN USA - The 6ren initiative is being coordinated by the Energy Sciences Network (ESnet), the network for the Energy Research program of the US Dept. of Energy, located at the University of California's Lawrence Berkeley National Laboratory
更多的IPv6資訊: [73]ipv6-net.org
6to4
* [74]NSayer's 6to4 information * [75]RFC 3068 / An Anycast Prefix for 6to4 Relay Routers
Latest news
* [76]http://hs247.com/ name="hs247 / IPv6 news and information"> also homepage for #ipv6 channel on EFnet * [77]bofh.st / latest IPv6 news but currently Jan 2002 outdated..., also homepage for IPv6 channel on IRCnet * [78]ipv6-net.org German forum
有關協議的參考
* [79]HS247 / IPv6 RFC list Publishing the list of IPv6-related RFCs is beyond the scope of this document, but given URLs will lead you to such lists: * [80]IPng Standardization Status a little bit out-of-sync at the moment * [81]IPv6 Related Specifications on IPv6.org
目前與IPv6有關的草案:
* [82]IP Version 6 ipv6 * [83]Next Generation Transitition * [84]Dynamic Host Configuration * [85]Domain Name System Extension * [86]Mobile IP mobileip
其它
* [87]Network Sorcery / IPv6, Internet Protocol version 6 IPv6 protocol header * [88]SWITCH IPv6 Pilot / References big list of IPv6 references maintained by Simon Leinen * [89]Advanced Network Management Laboratory / IPv6 Address Oracle shows you IPv6 addresses in detail
統計
* [90]IPv6 routing table history created by Gert Ding
19.2 更多的資訊
期待加入更多的內容,歡迎提建議!
Linux related
* [91]IPv6-HowTo for Linux by Peter Bieringer - Germany, and his * [92]Bieringer / IPv6 - software archive * [93]Linux+IPv6 status by Peter Bieringer Germany * [94]USAGI project Japan, and their * [95]USAGI project - software archive * [96]Gav's Linux IPv6 Page * [97]Project6 - IPv6 Networking For Linux Italy, and their * [98]Project6 - software archive
19.3 通信論壇
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+|
|| Focus Request e-mail address What to subscribe Maillist e-mail address Language Access throughWWW |+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+| Linux kernel majordomo (at) oss.sgi.com netdev netdev (at) oss.sgi.com English http://oss.sgi.com/projects/netdev/archive/ || networking
|| including
|| IPv6
|+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+| Linux and majordomo (at) linux-ipv6 linux-ipv6 (at) list.f00f.org English || list.f00f.org
|| IPv6 in (moderated) || general (1)
|+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+| Mobile IP majordomo (at) mipl (at) list.mipl. English http://www.mipl.mediapoli.com/mailinglist.html || (v6) for list.mipl.mediapoli.com mipl mediapoli.com http://www.mipl.mediapoli.com/mail-archive/ || Linux
||
|+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+|Linux IPv6 usagi-users-ctl usagi-users English http://www.mipl.mediapoli.com/mailinglist.html ||users using (at) linux-ipv6.org (at) linux-ipv6.org http://www.mipl.mediapoli.com/mail-archive/ ||USAGI
||extension
|+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+|
||IPv6 on Debian debian-ipv6 (at) English http://lists.debian.org/debian-ipv6/ ||Linux Web-based, see URL lists.debian.org ||Web-based
||
|+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+|
||IPv6/6bone in majordomo (at) ipv6 (at) German/English http://www.join.uni-muenster.de/JOIN/ipv6/texte-englisch/mailingliste.html || Germany atlan.uni-muenster.de ipv6 uni-muenster.de http://www.join.uni-muenster.de/local/majordomo/ipv6/ ||
|+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+|
|| 6bone majordomo (at) 6bone 6bone (at) English http://www.6bone.net/6bone_email.html || isi.edu isi.edu http://ryouko.dgim.crc.ca/ipv6/ || http://www.wcug.wwu.edu/lists/6bone/ ||
|+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+|
||IPv6 majordomo (at) ipng ipng (at) English http://playground.sun.com/pub/ipng/html/instructions.html ||discussions sunroof.eng.sun.com sunroof.eng.sun.com ftp://playground.sun.com/pub/ipng/mail-archive/ || http://www.wcug.wwu.edu/lists/ipng/ |+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+|
|| IPv6 users majordomo (at) users users (at) ipv6.org English http://www.ipv6.org/mailing-lists.html || in general ipv6.org
||
|+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+|
|| Bugtracking of bugtraq-subscribe (at) bugtraq (at) English http://online.securityfocus.com/popups/forums/bugtraq/intro.shtml || Internet securityfocus.com securityfocus.com (moderated) http://online.securityfocus.com/archive/1 || applications (2)
||
|+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+|
|| IPv6 in general Web-based, see URL ipv6 (at) ipng.nl English http://mailman.ipng.nl/mailman/listinfo/ipv6/ || http://mailman.ipng.nl/pipermail/ipv6/ ||
|+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
|
|
||
||
|| majordomo (at) majordomo (at) ipv6 ipv6 (at) mfa.eti.br Portuguese http://www.mfa.eti.br/listas.html || mfa.eti.br mfa.eti.br
||
|+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
(1) recommended for common Linux & IPv6 issues.
(2) very recommended if you provide server applications.
是不是有什麼遺漏? 歡迎你的建議!
這裡還有另一份清單: http://www.join.uni-muenster.de/JOIN/ipv6/texte-englisch/ipv6.infoquellen.html
有關的發行版
* [99]Polish(ed) Linux Distribution ("market leader" in containing IPv6 enabled packages) * [100]Red Hat Linux * [101]Pekka Savola's IPv6 packages Germany * [102]Debian Linux * [103]Craig Small's IPv6 information and status * [104]SuSE Linux * [105]Linux Mandrake
20. 歷史
x.y版本 發佈在Internet上. x.y.z 表示正在進行的版本and only published as LyX file on CVS.
Releases 0.x
0.312002-09-29/PB: Extend information in proc-filesystem entries
0.302002-09-27/PB: Add some maillists
0.292002-09-18/PB: Update statement about nmap (triggered by Fyodor)
0.28.12002-09-16/PB: Add note about ping6 to multicast addresses, add some labels
0.282002-08-17/PB: Fix broken LDP/CVS links, add info about Polish translation, add URL of the IPv6 Address Oracle
0.272002-08-10/PB: Some minor updates
0.26.22002-07-15/PB: Add information neighbor discovery, split of firewalling (got some updates) and security into extra chapters
0.26.12002-07-13/PB: Update nmap/IPv6 information
0.262002-07-13/PB: Fill /proc-filesystem chapter, update DNS information about depricated A6/DNAME, change P-t-P tunnel setup to use of "ip" only
0.25.22002-07-11/PB: Minor spelling fixes
0.25.12002-06-23/PB: Minor spelling and other fixes
0.252002-05-16/PB: Cosmetic fix for 2^{ }128, thanks to Jos□ Ab□lio Oliveira Matos for help with LyX
0.242002-05-02/PB: Add entries in URL list, minor spelling fixes
0.232002-03-27/PB: Add entries in URL list and at maillists, add a label and minorinformation about IPv6 on RHL
0.222002-03-04/PB: Add info about 6to4 support in kernel series 2.2.x and add an entry in URL list and at maillists
0.212002-02-26/PB: Migrate next grammar checks submitted by John Ronan
0.20.42002-02-21/PB: Migrate more grammar checks submitted by John Ronan, add some additional hints at DNS section
0.20.32002-02-12/PB: Migrate a minor grammar check patch submitted by John Ronan
0.20.22002-02-05/PB: Add mipl to maillist table
0.20.12002-01-31/PB: Add a hint how to generate 6to4 addresses
0.202002-01-30/PB: Add a hint about default route problem, some minor updates
0.19.22002-01-29/PB: Add many new URLs
0.19.12002-01-27/PB: Add some forgotten URLs
0.192002-01-25/PB: Add two German books, fix quote entinities in exported SGML code
0.18.22002-01-23/PB: Add a FAQ on the program chapter
0.18.12002-01-23/PB: Move "the end" to the end, add USAGI to maillists
0.182002-01-22/PB: Fix bugs in explanation of multicast address types
0.17.22002-01-22/PB: Cosmetic fix double existing text in history (at 0.16), move all credits to the end of the document
0.17.12002-01-20/PB: Add a reference, fix URL text in online-test-tools
0.172002-01-19/PB: Add some forgotten information and URLs about global IPv6 addresses
0.162002-01-19/PB: Minor fixes, remove "bold" and "emphasize" formats on code lines, fix "too long unwrapped code lines" using selfmade utility, extend list of URLs.
0.152002-01-15/PB: Fix bug in addresstype/anycast, move content related credits toend of document
0.142002-01-14/PB: Minor review at all, new chapter "debugging", review "addresses", spell checking, grammar checking (from beginning to 3.4.1) by Martin Krafft,add tcpdump examples, copy firewalling/netfilter6 from IPv6+Linux-HowTo, minorenhancements
0.132002-01-05/PB: Add example BIND9/host, move revision history to end of document, minor extensions
0.122002-01-03/PB: Merge review of David Ranch
0.112002-01-02/PB: Spell checking and merge review of Pekka Savola
0.102002-01-02/PB: First public release of chapter 1
References
1. http://www.bieringer.de/pb/ 2. http://www.linuxports.com/howto/intro_to_networking/ 3. http://rfc.net/rfc1884.html 4. http://rfc.net/rfc3056.html/ 5. http://rfc.net/rfc2893.html 6. http://rfc.net/rfc2373.html 7. http://standards.ieee.org/regauth/oui/tutorials/EUI64.html 8. http://rfc.net/rfc3041.html 9. ftp://ftp.ietf.org/internet-drafts/ 10. http://rfc.net/rfc1519.html 11. http://www.bieringer.de/linux/IPv6/status/IPv6+Linux-status-distributions.html 12. http://www.bieringer.de/linux/IPv6/status/IPv6+Linux-status-distributions.html 13. http://www.linuxdoc.org/HOWTO/Kernel-HOWTO.html 14. ftp://ftp.bieringer.de/pub/linux/IPv6/kernel 15. http://www.linux-ipv6.org/faq.html 16. http://www.bieringer.de/linux/IPv6/status/IPv6+Linux-status-kernel.html#transport 17. http://rfc.net/rfc1055.html 18. ftp://ftp.inr.ac.ru/ip-routing/ 19. http://rpmfind.net/linux/rpm2html/search.php?query=iproute 20. http://www.bieringer.de/linux/IPv6/status/IPv6+Linux-status-distributions.html 21. file://localhost/tmp/zh-sgmltools.21666/IPv6&Linux-CurrentStatus-Applications 22. http://www.bieringer.de/linux/IPv6/IPv6-HOWTO/IPv6-HOWTO-3.html 23. http://www.bieringer.de/linux/IPv6/IPv6-HOWTO/IPv6-HOWTO-4.html 24. http://www.bieringer.de/linux/IPv6/status/IPv6+Linux-status-apps.html#HTTP 25. http://[3ffe:400:100::1]/ 26. http://www.kame.net/ 27. http://rfc.net/rfc2893.html 28. http://rfc.net/rfc3056.html 29. http://rfc.net/rfc3056.html 30. http://www.kfu.com/~nsayer/6to4/ 31. http://www.faqs.org/rfcs/rfc3068.html 32. http://rfc.net/rfc2473.html 33. http://www.bieringer.de/linux/IPv6/ 34. http://www.bieringer.de/linux/IPv6/IPv6-HOWTO/scripts/current/ 35. http://www.feyrer.de/IPv6/SuSE73-IPv6+6to4-setup.html 36. http://people.debian.org/~csmall/ipv6/ 37. http://www.netfilter.org/ 38. http://lists.samba.org/pipermail/netfilter/ 39. http://lists.samba.org/pipermail/netfilter-devel/ 40. http://www.bieringer.de/linux/IPv6/status/IPv6+Linux-status-kernel.html#netfilter6 41. http://www.kernel.org/ 42. http://www.netfilter.org/ 43. ftp://ftp.redhat.com/redhat/linux/rawhide/SRPMS/SRPMS/ 44. http://www.bieringer.de/linux/IPv6/status/IPv6?status-apps.html#security-auditing 45. http://www.insecure.org/nmap/ 46. http://www.freeswan.org/ 47. http://www.ipv6.iabg.de/downloadframe/ 48. http://www.freeswan.org/doc.html 49. file://localhost/tmp/zh-sgmltools.21666/Linux-IPv6-HOWTO.txt.html 50. http://www.join.uni-muenster.de/lab/testtools.html 51. http://www.ipng.nl/ 52. http://www.6bone.net/6bone_hookup.html 53. http://www.6bone.net/6bone_hookup.html 54. http://www.arin.net/ 55. http://www.ripe.net/ 56. http://www.apnic.net/ 57. http://lacnic.org/ 58. http://www.ripe.net/ripencc/mem-services/registration/ipv6/ipv6allocs.html 59. http://www.freenet6.net/ 60. http://ipv6tb.he.net/ 61. https://carmen.cselt.it/ipv6tb/ 62. http://tunnel.be.wanadoo.com/ 63. http://tb.6test.edu.cn/ 64. http://joshua.informatik.uni-leipzig.de/ 65. http://www.iij.ad.jp/IPv6/index-e.html 66. http://www.xs26.net/ 67. http://www.ipng.nl/ 68. http://www.uninett.no/testnett/index.en.html 69. http://www.uk.v6.ntt.net/ 70. http://www.nttv6.net/ 71. http://www.es.net/hypertext/welcome/pr/ipv6.html 72. http://www.6ren.net/ 73. http://www.ipv6-net.de/ 74. http://www.kfu.com/~nsayer/6to4/ 75. http://www.faqs.org/rfcs/rfc3068.html 76. http://hs247.com/ 77. http://bofh.st/ipv6/ 78. http://www.ipv6-net.de/ 79. http://www.hs247.com/ipv6rfc.html 80. http://playground.sun.com/pub/ipng/html/specs/standards.html 81. http://www.ipv6.org/specs.html 82. http://www.ietf.org/ids.by.wg/ipv6.html 83. http://www.ietf.org/ids.by.wg/ngtrans.html 84. http://www.ietf.org/ids.by.wg/dhc.html 85. http://www.ietf.org/ids.by.wg/dnsext.html 86. http://www.ietf.org/ids.by.wg/mobileip.html 87. http://www.networksorcery.com/enp/protocol/ipv6.htm 88. http://www.switch.ch/lan/ipv6/references.html 89. http://steinbeck.ucs.indiana.edu:47401/ 90. http://www.space.net/~gert/RIPE/ 91. http://www.bieringer.de/linux/IPv6/ 92. ftp://ftp.bieringer.de/pub/linux/IPv6/ 93. http://www.bieringer.de/linux/IPv6/status/IPv6+Linux-status.html 94. http://www.linux-ipv6.org/ 95. ftp://ftp.linux-ipv6.org/pub/ 96. http://www.bugfactory.org/~gav/ipv6/ 97. http://project6.ferrara.linux.it/ 98. ftp://ftp.ferrara.linux.it/pub/project6/ 99. http://www.pld.org.pl/ 100. http://www.redhat.com/ 101. http://www.netcore.fi/pekkas/linux/ipv6/ 102. http://www.debian.org/ 103. http://people.debian.org/~csmall/ipv6/ 104. http://www.suse.com/ 105. http://www.linux-mandrake.com/
最新评论