九月 2010
« 八月    
 1234
567891011
12131415161718
19202122232425
2627282930  

Configuring DHCPv6 on Linux

As I am building up a total IPv6 network of Linux servers on VMWare, today I will write about how we can configure DHCPv6 server & client. I tested only on RedHat/Fedora/CentOS based platforms. But it should work on other platforms with some minor changes. So lets start…Server Configuration: (dhcp6s)

First we will install DHCPv6 RPM on the server:

# yum -y install dhcpv6

After installing the above mentioned RPM we will turn on global IPv6 initialization and will also enable forwarding of IPv6 packets: [繼續閱讀]

IPV6 ip assign & ping under Linux

#ip -6 addr add 3ffe:501:ffff::200/64 dev eth0

#ping6 3ffe:501:ffff::200

Server side: #iperf -s -w 512K -l 64K -p 5001 -V

Client side: #iperf -c 3ffe:501:ffff::200 -w 512K -l 64K -i 3 -t 28800 -P 16 -p 5001 -V

(Run 8 小時/ipv6)