[newbie] Post install setup of NIC

2000-03-05 Thread Peter Hecht

Hello,

I have just installed LM6.1.  I was not able to get my Allied
Telesyn AT1510 Ethernet Adapter installed.  This is a problem.

I would like to get the card recognized.  It is an NE2000
compatible card, but that selection on the install was not
recognized.  So, I am hoping I will be able to patch my install
to "see" the NIC.

Thanks,

__
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com



Re: [newbie] Post install setup of NIC

2000-03-05 Thread Ronald J. Yacketta

1) try insmod /lib/mod*/2*/net/ne2000
if you dont get an error message then try
modprobe ne2000
you should see something like this
eth0  Link encap:Ethernet  HWaddr 00:E0:29:2E:AA:27
  BROADCAST MULTICAST  MTU:1500  Metric:1
  RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:100
  Interrupt:10 Base address:0xb800

loLink encap:Local Loopback
  inet addr:127.0.0.1  Mask:255.0.0.0
  UP LOOPBACK RUNNING  MTU:3924  Metric:1
  RX packets:38727 errors:0 dropped:0 overruns:0 frame:0
  TX packets:38727 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:0

if that all works you can take an easy route and use linuxconf to add
the mod for eth0
1) linuxconf
2) networking
3) Basic Host Information
4) hit the tab key until your in the Kernel Module field
4a) press ctrl-x
4b) select ne2000
5) if your useing dhcp select dhcp
6) Enabled
7) tab to accept (hit return)
8) tab to quit (hit return)
9) tab to quit (hit return)
10) Select Activate changes (hit return)
11) tab to quit (hit return)

now you can type ifconfig -a and now the above eth0 should look
something like:
eth0  Link encap:Ethernet  HWaddr 00:E0:C5:F4:08:3A
  inet addr:24.161.66.121  Bcast:24.161.67.255 
Mask:255.255.252.0
  UP BROADCAST NOTRAILERS RUNNING  MTU:1500  Metric:1
  RX packets:70757 errors:0 dropped:0 overruns:0 frame:0
  TX packets:51835 errors:0 dropped:0 overruns:0 carrier:0
  collisions:931 txqueuelen:100
  Interrupt:9 Base address:0xb400
if the eth0 looks like the one after the insmod/modprobe above type
ifup eth0 and then ifconfig -a

Ron


3) 
Peter Hecht wrote:
 
 Hello,
 
 I have just installed LM6.1.  I was not able to get my Allied
 Telesyn AT1510 Ethernet Adapter installed.  This is a problem.
 
 I would like to get the card recognized.  It is an NE2000
 compatible card, but that selection on the install was not
 recognized.  So, I am hoping I will be able to patch my install
 to "see" the NIC.
 
 Thanks,
 
 __
 Do You Yahoo!?
 Talk to your friends online with Yahoo! Messenger.
 http://im.yahoo.com



Re: [newbie] Post install setup of NIC

2000-03-05 Thread Ronald J. Yacketta

DOH!
I ment 
insmod /lib/mod*/2*/net/ne
NOT
insmod /lib/mod*/2*/net/ne2000

Ron

"Ronald J. Yacketta" wrote:
 
 1) try insmod /lib/mod*/2*/net/ne2000
 if you dont get an error message then try
 modprobe ne2000
 you should see something like this
 eth0  Link encap:Ethernet  HWaddr 00:E0:29:2E:AA:27
   BROADCAST MULTICAST  MTU:1500  Metric:1
   RX packets:0 errors:0 dropped:0 overruns:0 frame:0
   TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
   collisions:0 txqueuelen:100
   Interrupt:10 Base address:0xb800
 
 loLink encap:Local Loopback
   inet addr:127.0.0.1  Mask:255.0.0.0
   UP LOOPBACK RUNNING  MTU:3924  Metric:1
   RX packets:38727 errors:0 dropped:0 overruns:0 frame:0
   TX packets:38727 errors:0 dropped:0 overruns:0 carrier:0
   collisions:0 txqueuelen:0
 
 if that all works you can take an easy route and use linuxconf to add
 the mod for eth0
 1) linuxconf
 2) networking
 3) Basic Host Information
 4) hit the tab key until your in the Kernel Module field
 4a) press ctrl-x
 4b) select ne2000
 5) if your useing dhcp select dhcp
 6) Enabled
 7) tab to accept (hit return)
 8) tab to quit (hit return)
 9) tab to quit (hit return)
 10) Select Activate changes (hit return)
 11) tab to quit (hit return)
 
 now you can type ifconfig -a and now the above eth0 should look
 something like:
 eth0  Link encap:Ethernet  HWaddr 00:E0:C5:F4:08:3A
   inet addr:24.161.66.121  Bcast:24.161.67.255
 Mask:255.255.252.0
   UP BROADCAST NOTRAILERS RUNNING  MTU:1500  Metric:1
   RX packets:70757 errors:0 dropped:0 overruns:0 frame:0
   TX packets:51835 errors:0 dropped:0 overruns:0 carrier:0
   collisions:931 txqueuelen:100
   Interrupt:9 Base address:0xb400
 if the eth0 looks like the one after the insmod/modprobe above type
 ifup eth0 and then ifconfig -a
 
 Ron
 
 3)
 Peter Hecht wrote:
 
  Hello,
 
  I have just installed LM6.1.  I was not able to get my Allied
  Telesyn AT1510 Ethernet Adapter installed.  This is a problem.
 
  I would like to get the card recognized.  It is an NE2000
  compatible card, but that selection on the install was not
  recognized.  So, I am hoping I will be able to patch my install
  to "see" the NIC.
 
  Thanks,
 
  __
  Do You Yahoo!?
  Talk to your friends online with Yahoo! Messenger.
  http://im.yahoo.com



Re: [newbie] Post install setup of NIC

2000-03-05 Thread Ronald J. Yacketta

Man I must be fried!!

add a .o to the 
insmod /lib/mod*/2*/net/ne
as in 
insmod /lib/mod*/2*/net/ne.o

"Ronald J. Yacketta" wrote:
 
 1) try insmod /lib/mod*/2*/net/ne2000
 if you dont get an error message then try
 modprobe ne2000
 you should see something like this
 eth0  Link encap:Ethernet  HWaddr 00:E0:29:2E:AA:27
   BROADCAST MULTICAST  MTU:1500  Metric:1
   RX packets:0 errors:0 dropped:0 overruns:0 frame:0
   TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
   collisions:0 txqueuelen:100
   Interrupt:10 Base address:0xb800
 
 loLink encap:Local Loopback
   inet addr:127.0.0.1  Mask:255.0.0.0
   UP LOOPBACK RUNNING  MTU:3924  Metric:1
   RX packets:38727 errors:0 dropped:0 overruns:0 frame:0
   TX packets:38727 errors:0 dropped:0 overruns:0 carrier:0
   collisions:0 txqueuelen:0
 
 if that all works you can take an easy route and use linuxconf to add
 the mod for eth0
 1) linuxconf
 2) networking
 3) Basic Host Information
 4) hit the tab key until your in the Kernel Module field
 4a) press ctrl-x
 4b) select ne2000
 5) if your useing dhcp select dhcp
 6) Enabled
 7) tab to accept (hit return)
 8) tab to quit (hit return)
 9) tab to quit (hit return)
 10) Select Activate changes (hit return)
 11) tab to quit (hit return)
 
 now you can type ifconfig -a and now the above eth0 should look
 something like:
 eth0  Link encap:Ethernet  HWaddr 00:E0:C5:F4:08:3A
   inet addr:24.161.66.121  Bcast:24.161.67.255
 Mask:255.255.252.0
   UP BROADCAST NOTRAILERS RUNNING  MTU:1500  Metric:1
   RX packets:70757 errors:0 dropped:0 overruns:0 frame:0
   TX packets:51835 errors:0 dropped:0 overruns:0 carrier:0
   collisions:931 txqueuelen:100
   Interrupt:9 Base address:0xb400
 if the eth0 looks like the one after the insmod/modprobe above type
 ifup eth0 and then ifconfig -a
 
 Ron
 
 3)
 Peter Hecht wrote:
 
  Hello,
 
  I have just installed LM6.1.  I was not able to get my Allied
  Telesyn AT1510 Ethernet Adapter installed.  This is a problem.
 
  I would like to get the card recognized.  It is an NE2000
  compatible card, but that selection on the install was not
  recognized.  So, I am hoping I will be able to patch my install
  to "see" the NIC.
 
  Thanks,
 
  __
  Do You Yahoo!?
  Talk to your friends online with Yahoo! Messenger.
  http://im.yahoo.com