rabbit-slide-znz-sakura-vps-debian-ipv6 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 788e50066cc2662aee8da6dfde3a9f874fb18471
4
+ data.tar.gz: 4b66540e20ad699048509a2e2f8a9ca1c68975b8
5
+ SHA512:
6
+ metadata.gz: ecc5af90f98933caeacf1cc1f014d3c2bb66ab8c1efc79726108d83be28bf21be536cf27da956472ad9ad708db31dbc6a6a97c0b8d4588e849a4085bddd876e4
7
+ data.tar.gz: b24ecddc81f513fac32619d341fab3eaafa99438d6e7430d174a0d6edb5ce51ea3d7c8df0c5aef0744e7416a4fc7405db20520fe4f48f7d592c73baf2d696bf8
data/.rabbit ADDED
@@ -0,0 +1 @@
1
+ vps-ipv6.rab
@@ -0,0 +1,24 @@
1
+ = さくらのVPSでIPv6設定
2
+
3
+ さくらの VPS の Debian wheezy で IPv6 設定をした話の LT 用スライドです。
4
+
5
+ == 作者向け
6
+
7
+ === 表示
8
+
9
+ rake
10
+
11
+ === 公開
12
+
13
+ rake publish
14
+
15
+ == 閲覧者向け
16
+
17
+ === インストール
18
+
19
+ gem install rabbit-slide--sakura-vps-debian-ipv6
20
+
21
+ === 表示
22
+
23
+ rabbit rabbit-slide--sakura-vps-debian-ipv6.gem
24
+
@@ -0,0 +1,9 @@
1
+ require "rabbit/task/slide"
2
+
3
+ # Edit ./config.yaml to customize meta data
4
+
5
+ Rabbit::Task::Slide.new do |task|
6
+ # task.spec.files += Dir.glob("doc/**/*.*")
7
+ # task.spec.files -= Dir.glob("private/**/*.*")
8
+ # task.spec.add_runtime_dependency("YOUR THEME")
9
+ end
@@ -0,0 +1,18 @@
1
+ ---
2
+ id: sakura-vps-debian-ipv6
3
+ base_name: vps-ipv6
4
+ tags: []
5
+ presentation_date:
6
+ version: 1.0.0
7
+ licenses: []
8
+ slideshare_id:
9
+ speaker_deck_id:
10
+ ustream_id:
11
+ vimeo_id:
12
+ author:
13
+ markup_language: :rd
14
+ name: Kazuhiro NISHIYAMA
15
+ email: zn@mbf.nifty.com
16
+ rubygems_user: znz
17
+ slideshare_user: znzjp
18
+ speaker_deck_user: znz
@@ -0,0 +1,86 @@
1
+ = さくらのVPSでIPv6設定
2
+
3
+ : author
4
+ Kazuhiro NISHIYAMA
5
+ : content-source
6
+ 第 80 回 関西 Debian 勉強会
7
+ : date
8
+ 2014/01/26
9
+ : allotted-time
10
+ 5m
11
+ : theme
12
+ debian
13
+
14
+ = 経緯
15
+
16
+ * 「さくらのVPS」の一部リージョンにて「IPv6」対応開始
17
+ (2013年10月31日掲載)
18
+
19
+ ((<URL:http://support.sakura.ad.jp/mainte/newsentry.php?id=11432>))
20
+
21
+ * 対応リージョンのVPSの設定の手伝い
22
+
23
+ = IPv6 設定情報 (1/2)
24
+
25
+ : IPv6 アドレス
26
+ コントロールパネルに表示されたIPアドレス
27
+ : ネットマスク
28
+ (('/64'))
29
+
30
+ = IPv6 設定情報 (2/2)
31
+ : ゲートウェイ(全リージョン/プラン共通)
32
+ (('fe80::1'))
33
+ : ネームサーバー
34
+ : 東京リージョン
35
+ (('2001:e42::1'))
36
+ : 石狩リージョン
37
+ (('2401:2500::1')) ←
38
+
39
+ = 具体的な設定方法
40
+
41
+ * さくらの説明は以下のみ
42
+ IPv6アドレスの設定方法はOS毎に異なります。
43
+ 詳しくはOS毎の設定マニュアル等をご参照ください。
44
+
45
+ = man interfaces
46
+ * (('interfaces(5)')) の (('INET6 ADDRESS FAMILY')) の (('The static Method')) を参照
47
+
48
+ = IPv6 の基本設定
49
+ * address はコントロールパネル
50
+ * netmask, gateway はさっきのページ
51
+ * dns-nameservers も同様
52
+ = その他の設定
53
+ * accept_ra, autoconf, privext
54
+ * デフォルトで 0 (off) のものも
55
+ * 明示的に全部 0 に
56
+ * 固定アドレスのサーバーなので
57
+ * 自動設定オフ
58
+ * Privacy extensions (ランダムなアドレス) オフ
59
+
60
+
61
+ = 最終的に追加した設定
62
+
63
+ iface eth0 inet6 static
64
+ address 2401:2500:(以下省略)
65
+ netmask 64
66
+ gateway fe80::1
67
+ accept_ra 0
68
+ autoconf 0
69
+ privext 0
70
+ dns-nameservers 2401:2500::1
71
+
72
+ = まとめ
73
+
74
+ * IPv6 は設定例が少ない
75
+ * https://wiki.debian.org/DebianIPv6 にも Native IPv6 での interfaces への設定例がない
76
+ * ML でも反応がない [debian-users:56921]
77
+
78
+ = おまけ
79
+
80
+ * IPv6 も含めた firewall 設定は ufw が楽
81
+ * Debian でもパッケージを入れれば使える
82
+ * IP アドレス指定なしの設定が IPv4, IPv6 共通になる
83
+ * gmail への送信で問題がおきたら
84
+ * postfix の場合: (('smtp_address_preference = ipv4'))
85
+ * 逆引き必須という話
86
+ ((<URL:https://support.google.com/mail/?p=ipv6_authentication_error>))
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rabbit-slide-znz-sakura-vps-debian-ipv6
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Kazuhiro NISHIYAMA
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-01-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rabbit
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 2.0.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 2.0.2
27
+ description: "さくらの VPS の Debian wheezy で IPv6 設定をした話の LT 用スライドです。"
28
+ email:
29
+ - zn@mbf.nifty.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".rabbit"
35
+ - README.rd
36
+ - Rakefile
37
+ - config.yaml
38
+ - pdf/sakura-vps-debian-ipv6-vps-ipv6.pdf
39
+ - vps-ipv6.rab
40
+ homepage: http://slide.rabbit-shocker.org/authors/znz/sakura-vps-debian-ipv6/
41
+ licenses: []
42
+ metadata: {}
43
+ post_install_message:
44
+ rdoc_options: []
45
+ require_paths:
46
+ - lib
47
+ required_ruby_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ requirements: []
58
+ rubyforge_project:
59
+ rubygems_version: 2.2.0
60
+ signing_key:
61
+ specification_version: 4
62
+ summary: "さくらのVPSでIPv6設定"
63
+ test_files: []