2013/05/31

IPv6系列文

經過了大約一年半的時間
我才慢慢的把IPv6的文章給補齊
以下分門別類介紹一下我的文章

● 要做IPv6的初學者會先建議看以下兩篇
  - IPv6 :  對IPv6做個簡單介紹
  - IPv6...ICMP : 一些IPv6實作的表格與行為,有需要再深入了解

● 若是想針對Linux上面如何操作
  ----- 基礎篇 -----
  - 設定IPv6 : 教您如何將IPv6的網路建置起來
  - Stateless auto configuration : 如何建置IPv6的router
  - Stateful auto configuration : 如何建議IPv6的DHCP server
  ----- 服務篇 -----
  - Telnet : 如何啟用IPv6 telnet server
  - Web :  如何連接WWW
  - SNMP :  如何建置與使用SNMP server
  - NTP : 如何建置ntp server
  - TFTP : 如何建置tftp server
  - Email :  如何建置mail server

● 如果您對IPv6 ready logo有興趣,可以參考下面的文章
  - Core測試流程 : 整體的測試流程
  - Core符合性測試 : 如何手動操作測試
  - Core符合性測試 (除錯) : 如果發現問題該如何解決
  - Core符合性測試 (自動) : 如何改為自動測試
  - Core互連性測試 : 到了中華電信研究所要測試的項目
  - 金牌與銀牌的差別 : Phase-1與Phase-2的差異

還有興趣的人可以參考我之前分享的投影片


【Linux】IPv6 Mail Server

這邊使用的Mail Server是Postfix

● Server
# yum install postfix
# yum remove sendmail
# vim /etc/postfix/main.cf
 myhostname = guider.com
 myorigin = $myhostname
 inet_interfaces = all
 inet_protocaols = all
# /etc/init.d/postfix start
# netstat -tlunp |grep :25

● Client
# vim /etc/hosts
 3ffe:1:2::1 ipv6.server
# vim /tmp/test
 testing ipv6
 EOF
# mailx -S verbose -S from=eki-1322 -S smtp=ipv6.server –s mailtest test@test.com < /tmp/test

要知道有沒有收到呢?
可以在server裡面輸入以下的指令,來看有沒有收到信件
# postqueue –p 


【Linux】IPv6 TFTP Server

這篇說明了簡易架設TFTP server的作法

● Server
# yum install tftp-server
# vim /etc/xinet.d/tftp
 disable = no
 flag = IPv6
# /sbin/chkconfig tftp on
# /sbin/chkconfig xinetd on
# /sbin/service xinetd start


● Client
# tftp 3ffe:1:2::1

【Linux】IPv6 NTP Server

要如何建置IPv6的NTP server
而且不需要對外去做更新時間的動作呢?

● Server
# yum install ntp
# vim /etc/ntp.conf
 restrict -6 default kod nomodify notrap nopeer noquery
 restrict -6 ::1
 restrict -6 fe80::0 mask 64 nomodify
 restrict -6 3ffe:1:2::0 mask 64
 server 127.127.1.0
 fudge 127.127.1.0 stratum 8
# /etc/init.d/ntpd start
# chkconfig ntpd on
# netstat –tlunp |grep ntp

● Client
# date 12121212
# date
# ntpdate 3ffe:1:2::1
# date