驱动应该是没有问题的
因为,我不通过ADSL网络拨号的时候,也就是没有添加pppoe的时候,可以正常上网的啊!
下面是驱动和PPPOE的注册表项:
[code]
; ==== FETCE5B Driver Registry====
; @CESYSGEN IF CE_MODULES_DEVICE
;IF BSP_FETCE5B
[HKEY_LOCAL_MACHINE\Comm\FETCE5B]
"DisplayName"="FAST ETHERNET FETCE5B"
"Group"="NDIS"
"ImagePath"="FETCE5B.dll"
[HKEY_LOCAL_MACHINE\Comm\FETCE5B\Linkage]
"Route"=multi_sz:"FETCE5B1"
;[HKEY_LOCAL_MACHINE\Comm\FETCE5B1]
"DisplayName"="FAST ETHERNET FETCE5B"
"Group"="NDIS"
"ImagePath"="FETCE5B.dll"
;
; FETCE5B card specific settings
; uncomment and/or adjust the following registry items if necessary
;
[HKEY_LOCAL_MACHINE\Comm\FETCE5B1\Parms]
"BusNumber"=dword:0
"BusType"=dword:0
"MemBase"=dword:d8004000
"MemLen"=dword:180
"IRQ"=dword:0a
"IoBase"=dword:d8004000
"IoLen"=dword:180
;
; FETCE5B General setting
;
"NetworkAddress"="00-11-22-33-44-55"
"AdapterType"=dword:0
"DmaLen"=dword:0000C000
"ReceiveBurstIndicate"=dword:00000040
"ReceiveThreshold"=dword:0
"TransmitThreshold"=dword:0
"BurstLength"=dword:1
"MapRegisters"=dword:00000020
"EarlyReceive"=dword:0
"EarlyTransmit"=dword:0
"NwayForce"=dword:1
"HWPhyReset"=dword:0
"PMC"=dword:0
"TransmitBuffers"=dword:00000040
"ReceiveBuffers"=dword:00000040
"AdaptiveInt"=dword:1
"ValidatePacketLen"=dword:0
[HKEY_LOCAL_MACHINE\Comm\FETCE5B1\Parms\TcpIp]
"EnableDHCP"=dword:1
"DefaultGateway"=""
"UseZeroBroadcast"=dword:0
;"IpAddress"=""
;"Subnetmask"=""
"IpAddress"=""
"Subnetmask"=""
"DNS"=""
"WINS"=""
;ENDIF BSP_VIA_FETCE5B
; @CESYSGEN ENDIF
=============================
===pppoe=====
[code]
; @CESYSGEN IF CE_MODULES_PPPOE
[HKEY_LOCAL_MACHINE\Comm\PPPOE]
"DisplayName"="Microsoft PPPoE driver"
"Group"="NDIS"
"ImagePath"="pppoe.dll"
[HKEY_LOCAL_MACHINE\Comm\PPPOE\Linkage]
"Route"=multi_sz:"PPPOE1"
[HKEY_LOCAL_MACHINE\Comm\PPPOE1]
"DisplayName"="Microsoft PPPoE driver"
"Group"="NDIS"
;[HKEY_LOCAL_MACHINE\Comm\PPPOE1\Parms]
; "BusNumber"=dword:0
; "BusType"=dword:0
; "DisablePowerManagement"=dword:1
; "MaxLines"=dword:3 ; <-- default 1 (Line0, Line1, Line2)
; "MaxSendPackets"=dword:30 ; <-- default is also 30.
; "Line3"=multi_sz:"NE20001","PCI\\RTL81391","VMINI1"
; <-- Sample on how to associate "PPPoe Line 3" device
; with adapter instance VMINI1.
; Which means PADI will only be sent
; to this interface.
[HKEY_LOCAL_MACHINE\Comm\PPPOE1\Parms]
"BusNumber"=dword:0
"BusType"=dword:0
"DisablePowerManagement"=dword:1
"MaxLines"=dword:1
"MaxSendPackets"=dword:30
"Line0"=multi_sz:"FETCE5B1"
; @CESYSGEN ENDIF