Linux搭建ipv6 ftp
服务器现在都流行ipv6,今天搭个ipv6ftp
服务器玩玩。
很容易,一台win7主机,一个VMware CentOS 5.4,设置网络链接为bridged。
前提是你会配linux ipv4 ftp
服务器。
1,设置linuxipv6地址
ip -f inet6 addr add 55:1:1:1::555/64 deveth0
2,设置win7 ipv6地址为55:1:1:1::165/64
设置好后,直接ping55:1:1:1::555即可,win7会自动识别v4或者v6地址。
C:Usersxxx>ping 55:1:1:1::555
正在 Ping 55:1:1:1::555 具有 32字节的数据:
来自 55:1:1:1::555 的回复: 时间=1ms
来自55:1:1:1::555 的回复: 时间<1ms
55:1:1:1::555 的Ping 统计信息:
数据包: 已发送 = 2,已接收 = 2,丢失 = 0 (0%丢失),
往返行程的估计时间(以毫秒为单位):
最短 = 0ms,最长 = 1ms,平均= 0ms
3,linux中配置vsftped配置文件
[root
@xxx ~]# vim/etc/vsftpd/vsftpd.conf
#listen=YES
listen_ipv6=YES
4,重启vsftpd服务
[root
@xxx ~]#service vsftpd restart
关闭vsftpd: [确定]
为vsftpd 启动 vsftpd: [确定]
5,从win7登陆,使用匿名
anonymous登陆。
C:Usersxxx>ftp55:1:1:1::555
连接到 55:1:1:1::555。
220 (vsFTPd2.0.5)
用户(55:1:1:1::555:(none)): anonymous
331Please specify the pass
word.
密码:
230 Loginsuccessful.
ftp> ls
200 EPRT commandsuccessful. Consider using EPSV.
150 Here comes the directorylisting.
pub
226 Directory sendOK.
ftp: 收到 5 字节,用时 0.00秒 5.00千字节/秒。
ftp> cdpub
250 Directory successfully changed.
ftp>ls
200 EPRT command successful. Consider usingEPSV.
150 Here comes the directory listing.
vpn.cfg
x509.c
226 Directory sendOK.
ftp: 收到 149 字节,用时 0.00秒 49.67千字节/秒。
ftp>
linux ipv6 ftp
服务器测试登陆成功。
6,永久保存ipv6地址
1) vim /etc/sysconfig/network中增加
NETWORKING_IPV6=yes
2)vim/etc/sysconfig/network-scripts/ifcfg-eth0
IPV6INIT=yes
IPV6ADDR=55:1:1:1::555/64
作者 rosetta