| 31 | |
| 32 | = Ubuntu = |
| 33 | * NGN網への接続手順 |
| 34 | * [http://www.ntt-east.co.jp/info-st/mutial/ngn/110721IPv6tunnel_guide.pdf NGN IPv6 ISP 接続<トンネル方式>用 アダプタガイドライン 第1.3版] の「3.2 NGN への接続」を参照のこと |
| 35 | |
| 36 | 1. ノードのICMPv6 Router Solicitation (133)に対して、以下のようなRouter Advertisement (134)が届く |
| 37 | * [[Image(NGN-ICMPv6-RA.png,33%)]] |
| 38 | 1. RAのprefix情報より、NGN網に繋がっているI/FへIPv6アドレスが付与される |
| 39 | * mitty@v6gate:~$ {{{ifconfig eth1}}} |
| 40 | {{{ |
| 41 | eth1 Link encap:Ethernet HWaddr 00:16:3e:27:6d:f3 |
| 42 | inet6 addr: 2408:211:****:****:216:3eff:fe27:6df3/64 Scope:Global |
| 43 | inet6 addr: 2408:211:****:****:cc26:a44c:38a2:22c3/64 Scope:Global |
| 44 | inet6 addr: fe80::216:3eff:fe27:6df3/64 Scope:Link |
| 45 | }}} |
| 46 | * この状態で既にNGNの「[https://flets.com/v6option/ フレッツ・v6オプション]」が有効(NTTに申し込みが必要)になっていれば、NGN内の折り返し通信は可能になる模様 |
| 47 | 1. DHCPv6 Information Requestによって、NGN網側のDNSサーバアドレスとDomain Search List、NTPサーバ情報を受け取る |
| 48 | * [[Image(NGN-DHCPv6-IR.png,33%)]] |
| 49 | * wide-dhcpv6-clientを用いる。{{{aptitude install wide-dhcpv6-client}}}し、NGN網に繋がっているI/Fを指定するだけでよい |
| 50 | * I/Fの指定は{{{/etc/default/wide-dhcpv6-client}}}に保存される |
| 51 | 1. 「経路情報提供サーバ」から、PPPoE/NGNどちらの経路を用いるか判断するための経路情報を得る |
| 52 | * [http://flets.com/pdf/ip-int-flets-3.pdf IP通信網サービスのインタフェース -フレッツシリーズ- 第三分冊] の「2.5.3.1 経路情報提供サーバについて」を参照のこと |
| 53 | * http://route-info.flets-east.jp:49881/v6/route-info へアクセスすることで入手できる |
| 54 | * mitty@v6gate:~$ {{{telnet route-info.flets-east.jp 49881}}} |
| 55 | {{{ |
| 56 | Trying 2404:1a8:c020:3::10... |
| 57 | Connected to route-info.flets-east.jp. |
| 58 | Escape character is '^]'. |
| 59 | }}} |
| 60 | {{{ |
| 61 | GET /v6/route-info HTTP/1.1 |
| 62 | Host: route-info.flets-east.jp:49881 |
| 63 | Accept: */* |
| 64 | Connection: close |
| 65 | |
| 66 | }}} |
| 67 | {{{ |
| 68 | HTTP/1.1 200 OK |
| 69 | Date: Tue, 26 Nov 2013 07:10:34 GMT |
| 70 | Content-Type: text/plain;charset=EUC-JP |
| 71 | Content-Length: 320 |
| 72 | Connection: close |
| 73 | |
| 74 | 0000,2013/02/04 12:14:50 |
| 75 | 1111,2404:01a8:7e00:0000:0000:0000:0000:0000/40 |
| 76 | 1211,2404:01a8:0000:0000:0000:0000:0000:0000/32 |
| 77 | 1311,2408:0210:0000:0000:0000:0000:0000:0000/30 |
| 78 | 1411,2400:2410:0000:0000:0000:0000:0000:0000/30 |
| 79 | 1412,2409:0010:0000:0000:0000:0000:0000:0000/30 |
| 80 | 1413,240b:0010:0000:0000:0000:0000:0000:0000/30 |
| 81 | Connection closed by foreign host. |
| 82 | }}} |
| 83 | * {{{Connection: close}}}にしないと 400 Bad Request となって失敗する模様(wgetではConnection: Keep-Aliveとなりうまくいかない) |