当前位置:Linux教程 - Linux - 用模块驱动双NE2000网卡的一点体会

用模块驱动双NE2000网卡的一点体会



        
    只需运行如下配置命令。
    insmod -o 8390_1 /lib/modules/2.0.36-3/net/8390.o
    insmod -o ne /lib/modules/2.0.36-3/net/ne.o io=0x300
    ifconfig eth0
    ifconfig eth0 192.168.0.201
    route add -net 192.168.0.0 netmask 255.255.255.0 eth0
    insmod -o ne_1 /lib/modules/2.0.36-3/net/ne.o io=0x340
    ifconfig eth1
    ifconfig eth1 202.116.48.33
    route add default eth1
    route add default gw 202.116.48.1 eth1
    其中,我们内部网地址为:192.168.0.XXX,内部网关接入校园网地址为:
    202.116.48.33
    使用外部网关为202.116.48.1。两块网卡IO分别为:0x300,0x340

    http://202.38.75.11/~hwang/

    发布人:netbull 来自:LinuxAid