Linux搭建ipv6 ftp服务器 现在都流行ipv6,今天搭个ipv6 ftp服务器玩玩。 很容易,一台win7主机,一个 VMware CentOS 5.4,设置网络链接为bridged. 前提是你会配linux ipv4 ftp服务器。 1,设置linux ipv6地址 ip -f inet6 addr add 55:1:1:1::555/64 dev eth0 2,设置win7 ipv6地址为55:1:1:1::165/64 设置好后,直接ping 55:1:1:1::555即可,win7会自动识别v4或者v6地址。 C:\Users\xxx>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:\Users\xxx>ftp 55:1:1:1::555 连接到 55:1:1:1::555. 220 (vsFTPd 2.0.5) 用户(55:1:1:1::555:(none)): anonymous 331 Please specify the password. 密码: 230 Login successful. ftp> ls 200 EPRT command successful. Consider using EPSV. 150 Here comes the directory listing. pub 226 Directory send OK. ftp: 收到 5 字节,用时 0.00秒 5.00千字节/秒。 ftp> cd pub 250 Directory successfully changed. ftp> ls 200 EPRT command successful. Consider using EPSV. 150 Here comes the directory listing. vpn.cfg x509.c 226 Directory send OK. 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 |