! ! ! 特権ユーザモードに移行します。 ! Router> enable Enter password: Router# ! ! ! 基本設定モードに移行します。 ! Router# configure terminal Router(config)# ! ! ! IPv6通信時のネクストホップはewan 1インタフェース(IPv6 IPoE)とします 。 ! Router(config)#! Router(config)#ipv6 route ::/0 ewan 1 ! ! ! ewan 1インタフェース設定モードに移行します 。 ! DHCPv6クライアント機能を動作させるための設定です。 ! Router(config)#interface ewan 1 Router(config-if ewan 1)# ipv6 enable Router(config-if ewan 1)# ipv6 dhcp client client_name Router(config-if ewan 1)#exit ! ! ! lan 1インタフェース設定モードに移行します 。 ! DHCPv6-PDで取得したIPv6プレフィックスからIPv6アドレスを自動生成します。 ! また、RA送信、およびDHCPv6サーバ機能を動作させる設定です。 ! Router(config)#interface lan 1 Router(config-if lan 1)# ipv6 enable Router(config-if lan 1)# ipv6 address address-pool POOL1 prefix-length 64 Router(config-if lan 1)# ipv6 nd other-config-flag ! IPv6アドレス設定以外のオプション情報をホストに自動的に取得させます 。 Router(config-if lan 1)# ipv6 nd send-ra Router(config-if lan 1)# ipv6 dhcp server ipv6dns_server Router(config-if lan 1)#exit ! ! ! address-pool設定モードに移行します 。 ! DHCPv6-PDで取得したIPv6プレフィックスを利用するための設定です。 ! Router(config)#address-pool ipv6 POOL1 Router(config-address-pool-ipv6)# address-pool enable Router(config-address-pool-ipv6)# allocate prefix-length 64 Router(config-address-pool-ipv6)#exit ! ! ! ipv6 dhcp client-profile設定モードに移行します 。 ! DHCPv6-PDでIPv6プレフィックスとDNSサーバアドレスを取得するための設定です。 ! Router(config)#ipv6 dhcp client-profile client_name Router(config-ipv6-dhcp-client-prof)# option-request prefix-delegation delegates address-pool POOL1
prefix-length 64 offset 0 Router(config-ipv6-dhcp-client-prof)# option-request dns-servers Router(config-ipv6-dhcp-client-prof)#exit ! ! ! ipv6 dhcp server-profile設定モードに移行します 。 ! DHCPv6サーバからホストにDNSサーバアドレスを取得させるための設定です。 ! Router(config)#ipv6 dhcp server-profile ipv6dns_server Router(config-ipv6-dhcp-server-prof)# dns-server forward dhcp-client ewan 1 Router(config-ipv6-dhcp-server-prof)#exit ! ! ! 特権ユーザモードに戻ります。 ! Router(config)# end ! ! ! 設定を保存します。 ! Router# save SIDE-A.cfg % saving working-config % finished saving Router# ! ! ! 設定を有効にするために再起動します。 ! Router# reset Are you OK to cold start?(y/n) y
EWAN1インタフェースにてDNSアドレスを取得している事を確認します。
確認内容 | 画面表示例 |
---|---|
DHCPv6クライアント機能の状況を表示 DNSアドレスを確認 |
Router# show ipv6 dhcp client status
Interface status EWAN1 Client identifier: **:**:**:**:**:**:**:**:**:** Server identifier: **:**:**:**:**:**:**:**:**:** Server Address: **:**:**:**:**:**:**:**:**:** Prefix Delegation IAID: 2 T1(RENEW): 01h22m47s T2(REBIND): 02h37m47s 2001:db8:face:300::/60 lifetime: 03h37m47s/03h37m47s DNS Servers 2001:db8:face:200::34 Last Update : 2011/09/29 16:11:59 |
LAN インタフェースにIPv6アドレスが設定されている事を確認します
確認内容 | 画面表示例 |
---|---|
LANインタフェースのIPv6情報を表示 IPv6アドレスが設定されている事を確認 |
Router#show ipv6 interface lan 1 LAN is up IPv6 is enabled, link-local address is fe80::280:bdff:fef0:38c3 Global unicast address(es): 2001:db8:face:300::1, subnet is 2001:db8:face:300::/64 Joined group address(es): ff02::2 ff05::1:3 ff02::1:2 ff02::1 ff02::1:fff0:38c3 MTU is 1500 bytes ICMP error messages limited to 100 per second ND reachable time is 23000 milliseconds ND advertised reachable time is 0 milliseconds ND advertised retransmit interval is 0 milliseconds ND router advertisements are sent every 200 seconds ND router advertisements live for 1800 seconds ND router solicit transmission first delay time is 0 seconds ND router solicit transmission interval is 4 seconds ND router solicit transmission times is 3 Hosts use stateless autoconfig for addresses. Current Hop Limit:64 reachable time 23000ms (base 30000ms) retransmission interval 1000ms |