Chinaunix首页 | 论坛 | 博客
  • 博客访问: 6913099
  • 博文数量: 3857
  • 博客积分: 6409
  • 博客等级: 准将
  • 技术积分: 15948
  • 用 户 组: 普通用户
  • 注册时间: 2008-09-02 16:48
个人简介

迷彩 潜伏 隐蔽 伪装

文章分类

全部博文(3857)

文章存档

2017年(5)

2016年(63)

2015年(927)

2014年(677)

2013年(807)

2012年(1241)

2011年(67)

2010年(7)

2009年(36)

2008年(28)

分类:

2012-07-13 12:37:53

原文地址:Linux搭建ipv6 ftp服务器 作者:rosettasky

本文档的Copyleft归rosetta所有,使用GPL发布,可以自由拷贝、转载,转载时请保持文档的完整性。

现在都流行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
阅读(381) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~