I'm pretty sure that the second error is a function of the first, so I would concentrate on dealing with that. You may find that once it is solved, both errors are resolved.
One: do you use fixed IP or dhcp for this? If fixed IP and you had an IP conflict, you will get some weird errors that give you no clue to the problem.
Two: I noticed you indicated that the ini files were similar, per your other post. The thing is, if you are forcing speed and duplex, the commands are actually quite different.
***** Our e1000.ini file is
[network.setup]
version=0x3100
netcard=e1000,1,e1000
transport=tcpip,TCPIP
lana0=e1000,1,tcpip
[TCPIP]
NBSessions=6
SubNetMask0=255 255 0 0
IPAddress0=10 9 27 2
DNSaddress0= 10 9 10 145
GatewayAddress0=10 9 1 1
DisableDHCP=1
DriverName=TCPIP$
BINDINGS=e1000
LANABASE=0
[protman]
DriverName=PROTMAN$
PRIORITY=MS$NDISHLP
[e1000]
DRIVERNAME=e1000$
; Interrupt=10
; IOADDRESS=0x300
; Buffersize=1
SPEEDDUPLEX=3
***** and our b57.ini file is:
[network.setup]
version=0x3100
netcard=b57,1,b57
transport=tcpip,TCPIP
lana0=b57,1,tcpip
[TCPIP]
NBSessions=6
SubNetMask0=255 255 0 0
IPAddress0=10 9 27 2
DNSaddress0= 10 9 10 145
GatewayAddress0=10 9 1 1
DisableDHCP=1
DriverName=TCPIP$
BINDINGS=b57
LANABASE=0
[protman]
DriverName=PROTMAN$
PRIORITY=MS$NDISHLP
[B57]
DriverName = "B57$"
; BusNum from 0 to 255
; BusNum =
; DevNum from 0 to 31
; DevNum =
; PortNum or FuncNum from 0 to 7
; PortNum =
; FuncNum =
; LinSpeed can be set to 10 or 100
; LineSpeed =
; Duplex can be set to half or full. LineSpeed is required when this keyword is used.
; Duplex =
; NodeAddress specifies the network address used.
; NodeAddress =
; FixCheckSumOff turns off the driver's work-around for the TCP/IP stack to recognize
; the 1's complimented version of the checksum.
; FixCheckSumOff
;
; To add more adapter(up to 4) repeat the below entry, where n can be from 2 to 4.
;
;[B57_n]
; DriverName = "B57n$"
; BusNum =
; DevNum =
; PortNum =
; FuncNum =
LineSpeed = 100
Duplex = Full
; NodeAddress =
; FixCheckSumOff
***** note the differences in declaring line speed and duplex, right near the end of each file. Hope some of this helps. |