[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: making an NE2000 ISA PnP card work
On Sat, 7 Mar 1998, Miki Shapiro wrote:
> eth0 Link encap:10Mbps Ethernet HWaddr 00:20:18:70:0F:2F
> inet addr:10.0.0.3 Bcast:10.255.255.255 Mask:255.255.255.0
> UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
> RX packets:0 errors:0 dropped:1 overruns:0
> TX packets:0 errors:0 dropped:0 overruns:0
> Interrupt:10 Base address:0x220 Memory:1-0
This is wrong. Set netmask and broadcast the same:
For a class C netmask, line 10.0.0.0/24 (255.255.255.0) broadcast should
be 10.0.0.255
But don't use netmask 255.255.255.0 here, use 255.0.0.0 as in the
following:
Here, use a class A network, 10.0.0.0/8 (255.0.0.0) broadcast should be
10.255.255.255
>
> Destination Gateway Genmask Flags MSS Window irtt Iface
> 10.0.0.3 0.0.0.0 255.255.255.0 U 1500 0 0 eth0
> 127.0.0.0 0.0.0.0 255.0.0.0 U 3584 0 0 lo
No no no, again:
route add -net 10.0.0.0 netmask 255.255.255.0
^^^^^^^^
make sure it's 10.0.0.0 and not 10.0.0.3 !!! 10.0.0.0 is the network.
10.0.0.3 is the eth0 interface IP address.
So again, to sum it up, just cut and paste:
ifconfig eth0 10.0.0.3 netmask 255.0.0.0 broadcast 10.255.255.255
route add -net 10.0.0.0 netmask 255.0.0.0
This will work.
--Ariel
>
>
> > --Ariel
> > >
> > > (which adds me a nice interface when i type just ifconfig :-)
> > >
> > > route command is
> > > route add -net 10.0.0.0 subnet 255.255.255.0 eth0
> > > (my subnet is 10.0.0.x and this is supposed to be the router)
> > > and this adds another line to my routing table.
> > >
> > > i think the probmight be because I use the coaxial connector and the PnP
> > > driver tells the card to transmit over the other one.(that loox like an
> > > ISDN plug)
> > >
> > > and... i already Read The F****** Manual (net-3-HOWTO) :-))
> > > any help would be most appreciated.
> > >
> > > Regards
> > > Miki Shapiro <Aris>
> > > Dial UpCustomers Support
> > >
> > > "I dont suffer from insanity... I enjoy every bloody moment."
> > >
> > > - Unknown source
> > >
> > > ------------------------------------------------------
> > > E-Mail aris@netvision.net.il Tel: 04-8560600
> > >Home Page: www.netvision.net.il Fax: 04-8560572
> > > ICQ: 4122707 04-8550345
> > > Cell: 051-500983
> > >
> > > TeleSales: 04-8560560 sales@netvision.net.il
> > > WAN Support: 04-8560550 wan@netvision.net.il
> > > Dial-up Support: 04-8560570 support@netvision.net.il
> > > Administration: 04-8560660 admin@netvision.net.il
> > >
> > > NETVISION LTD.
> > > THE NO.1 ISRAELI INTERNET & SERVICESPROVIDER.
> > > * ----------- HAIFA - ISRAEL -------- *
> > >
> > >
> >
> > +---------------------------------------------------------------+
> > | Ariel Biener |
> > | e-mail: ariel@post.tau.ac.il Work ph: 03-6406086 |
> > | fingerprint = 07 D1 E5 3E EF 6D E5 82 0B E9 21 D4 3C 7D 8B BC |
> > +---------------------------------------------------------------+
> >
> >
> >
> >
> >
>
>
+---------------------------------------------------------------+
| Ariel Biener |
| e-mail: ariel@post.tau.ac.il Work ph: 03-6406086 |
| fingerprint = 07 D1 E5 3E EF 6D E5 82 0B E9 21 D4 3C 7D 8B BC |
+---------------------------------------------------------------+