1、修改IP 、默认网关和MAC地址
    ifconfig eth2 10.40.21.210 netmask 255.255.255.0    //设置IP和掩码
    route add default gw 192.168.5.1    // 设置网关路由
 
    ifconfig eth1 down
    ifconfig eth1 hw ether 20:0E:99:02:B2:6C    //修改MAC地址
    ifconfig eth1 up
2、绑定网卡
#bond eth0,eth1 and eth2
    ifconfig eth0 10.40.21.215 netmask 255.255.255.0
    ifconfig eth1 10.40.21.216 netmask 255.255.255.0
    ifconfig eth2 10.40.21.217 netmask 255.255.255.0
    ifconfig bond0 10.40.21.200 netmask 255.255.255.0 up
    ifenslave bond0 eth0 eth1 eth2
    route add -net 10.40.21.254 netmask 255.255.255.0 bond0
    route add default gw 10.40.21.254
 
3、通过指定网卡发送数据包
    ping -I 10.40.21.253 10.10.6.34                  //指定网址为10.40.21.253的网卡发送ping包
              
4、tftp下载
    tftp -g -r rootfs-ms.img 10.1.13.126(服务器,也可以是tftp32软件显示的服务器地址)
    tftp -pl  start.sh  10.10.6.106  
5、查看网卡绑定的状态和模式
    cat /proc/net/bonding/bond0 
posted on 2016-09-02 15:08  阳光农场皮卡  阅读(183)  评论(0编辑  收藏  举报