Linux-Networking Digest #495, Volume #12 Tue, 7 Sep 99 07:13:38 EDT
Contents:
Re: Linux firewall issue (sensei)
Re: Linux-ISDN-Router (Alexander Ackermann)
SOCKET-Connection.... (mike_the_great)
Re: SOHOWare Fast Auto 10/100 PCI -- Tulip ? ("Y. T. Chow")
Re: Can't login as FTP (I've red the faqs) (Henry Vermeulen)
NFSD RH 6.x (root)
NFSD RH 6.x (root)
Re: changing passwd from windows ("Peter Marks")
Sendmail "network unreachable" ("Aaron Elliott")
Re: Password Syncing between Linux and NT (LO Ho Fung)
RH6 Linux PPP Troubles ("Jon Paxton")
Re: WhereToFind? Socket 7 motherboard with onboard ethernet, sound, and video?
(Sniper)
Why is local mail being queued ? (Quet Kim Yong Teck)
Gateway setup ( need help)! (Dmitri Barski)
how to get all linked pages ? ("Bert Douglas")
Re: PPP (Josh Thompson)
Re: Satan and Linux(SUSE) (Vilmos Soti)
firewall rules for windows browsing (Martin Stockhammer)
Re: ISDN under Linux (Dmitri Barski)
Re: Multi-ethernet config at boot strange problem... (Marc Ledauphin)
parallel ppp connections (jim)
Re: Multi-ethernet config at boot strange problem... (Marc Ledauphin)
----------------------------------------------------------------------------
From: sensei <[EMAIL PROTECTED]>
Subject: Re: Linux firewall issue
Date: Mon, 06 Sep 1999 23:33:52 +1700
try using the ipfwadm (IP Firewall Administraion) program to
grant access to the machines on the intranet.
Best to read the IP Masqurade HOWTO in /usr/dco/HOWTO/mini.
Hope this helps
Luke
* Sent from RemarQ http://www.remarq.com The Internet's Discussion Network *
The fastest and easiest way to search and participate in Usenet - Free!
------------------------------
From: Alexander Ackermann <[EMAIL PROTECTED]>
Subject: Re: Linux-ISDN-Router
Date: Tue, 07 Sep 1999 10:15:57 +0200
Robert Gehringer wrote:
>
> Hi
>
> I have installed Suse Linux 6.2. With kernel 2.2.10.
> for fileserver and Internet(ISDN)-routing (Win95, win98, winNT).
>
> Routing for www, IRC, ftp ... is perfect.
> But when i want a telnet-session on the router - the router logs into
> the NET.
>
> He should not connecting - what can i do?
he probably tries to reverse lookup the IP-address (which I suppose to
be a private one) over the internet. You should either :
- configure Your DNS-Server so that it resolves local names and adresses
locally, without contacting the internet (works fine here)
- or configure /etc/hosts, /etc/host.conf and /etc/resolv.conf in a
manner that local names / addresses be resolved via /etc/hosts.
Hope that helps
Best regards
--
Mainmetall GmbH
i.A. Alexander Ackermann
Postfach 1620
D 63886 Miltenberg
http://www.mainmetall.de
Email : mailto:[EMAIL PROTECTED]
------------------------------
From: mike_the_great <[EMAIL PROTECTED]>
Subject: SOCKET-Connection....
Date: Tue, 07 Sep 1999 01:55:40 -0700
Hi!!!
I've got a problem with my SOCKET-Connection....
I wrote a Server and a Client-Part...
Everything OK via LAN!
WAN: I started the Server on a Host behind a Router &
Firewall, and the Cient behind a Proxy & FireWall.
.works fine...
Tried it with 2 Dial-ups.
.works fine...
Tired the same with the Server at Dial-up and
Client behind a Proxy & FireWall and I get NO
CONNECETION... I can ping the Host, but not connect....
I've no Idea where I should start to search the Problem....
I hope someone can help me...
Previous Thanx Mike....
* Sent from RemarQ http://www.remarq.com The Internet's Discussion Network *
The fastest and easiest way to search and participate in Usenet - Free!
------------------------------
From: "Y. T. Chow" <[EMAIL PROTECTED]>
Subject: Re: SOHOWare Fast Auto 10/100 PCI -- Tulip ?
Date: Tue, 07 Sep 1999 06:17:49 GMT
I have the SOHOware Fast Ethernet Kit installed and also have problems
getting Red Hat Linux 6.0 to recognize the NICs. NDC posted a solution on
their Web site that I've been trying to make work but no success so far
(can't compile their version of the tulip.c driver). Not sure if the fix
applies to your card. You might want to visit www.ndc.com and check out
their support page for more info or call their toll free number.
Here's their solution:
SUBJECT:
NDC 10/100 Fast Ethernet Adapter settings under Linux
ANSWER:
The default (built-in) tulip in Linux cannot work
correctly with our SOHOware SFA110A. You must use the
driver on our web sites below:
http://www.ndclan.com/drivers.htm
http://www.ndc.com.tw/drivers.htm
Note:
The Linux driver for our 10/100 Fast Ethernet adapter,
SFA110A. It has been verified under the platforms below:
Slackware 3.6
Red Hat 5.2
Both of the kernel versions of the platforms above are
the 2.0.36. (The network cannot work under the kernel 2.0.35.)
(You can check which version your kernel is by type the
command 'uname -r')
Installation instructions for the Modules version
=================================================
Linux has a facility for linking device drivers into
the running kernel. This is called Modules support.
Here's how to make and load the Modules version:
1. Verify that the source code for your current kernel
version is installed.
If you don't have a /usr/include/linux/version.h file,
do cd /usr/src/linux; make include/linux/version.h
Copy the driver source code, tulip.c, to a source directory,
e.g., /usr/src/linux/drivers/net
2. Compile the file using one of the compile-commands below:
* compile-command (for machines with uni-processor):
gcc -DMODULE -D__KERNEL__ -I/usr/src/linux/net/inet -Wall -Wstrict-prototype
s -O6 -c tulip.c `[ -f /usr/include/linux/modversions.h ] &&
echo -DMODVERSIONS`
* SMP-compile-command (for machines with multi processors):
gcc -D__SMP__ -DMODULE -D__KERNEL__ -I/usr/src/linux/net/inet -Wall -Wstrict
-prototypes -O6 -c tulip.c `[ -f /usr/include/linux/modversions.h ] &&
echo -DMODVERSIONS`
3. Copy tulip.o into the latest kernel's modules:
cp tulip.o /lib/modules/2.0.XX/net/tulip.o
4. Update kernel's module dependencies:
/sbin/depmod -a
5. Check /etc/conf.modules and add the two lines below:
alias eth0 tulip
options tulip options=0 debug=X
* Valid debug levels for debug=X are:
* 1 normal output
* 2 more verbose
* 3 even more verbose
* 4 even more verbose
* 6 insanely verbose
6. Reboot system:
/sbin/shutdown -r now
7. Configure your network
netconfig
=================================================
p.s. Please make sure the kernel is built with "network,
ethernet, and module" option support. Otherwise,
you have to rebuild your kernel by doing the
following actions.
a. Change to /usr/src/linux directory.
b. Run "make menuconfig"
c. Select the options just mentioned above and exit.
d. Now rebuild your kernel by using the following command:
" make dep; make clean; make zImage "
The file "zImage" will be found at the linux directory
" /usr/src/linux/arch/i386/boot/zImage"
e. Modify /etc/lilo.conf to set the new path of kernel image,
zImage, as usual this file will specify where kernel image
is.
f. Run " lilo " to install the new boot loader.
g. Reboot your linux system.
<[EMAIL PROTECTED]> wrote in message news:37d48456.1237178@news-server...
>
> Hi,
>
> I just bought a SOHOWare Fast Auto 10/100 PCI card. What driver should
> I use for RH6 .0? Chipset:
>
> 1. TAIMIC - HSIP-002 Taiwan 9911
> 2. MX MX98715AEC M9910
>
> Please help. Thank-you everyone.
>
> Nina
>
------------------------------
From: [EMAIL PROTECTED] (Henry Vermeulen)
Subject: Re: Can't login as FTP (I've red the faqs)
Date: Tue, 07 Sep 1999 09:09:42 GMT
Thanks for all the advises but i've got it running.
The file /etc/pam.d/ftp was missing.
Henry
------------------------------
From: root <[EMAIL PROTECTED]>
Subject: NFSD RH 6.x
Date: 7 Sep 1999 09:07:47 GMT
Hi Folks
A little describe:
Problem apears in nfsd module . The story starts if I want to mount by nfsd remote
filesystem on
FreeBSD system.Looks like all working pretty good but in the next few secounds
.Afterthat if I want to
mount on Linux OS some device (/dev/fd0 ,/dev/cdrom etc.) but process of mount is hang
up with
uninterruptible sleep .Lsmod aprears that is noting happend to nfsd module.If I wanted
list or exec
program from /dev/cdrom or /dev/fd0 (before mountig nfsd I have automaticly mounted)
the proces looks
like above 'uniterruptible..'
Yo
LSD
------------------------------
From: root <[EMAIL PROTECTED]>
Subject: NFSD RH 6.x
Date: 7 Sep 1999 09:05:30 GMT
------------------------------
From: "Peter Marks" <[EMAIL PROTECTED]>
Subject: Re: changing passwd from windows
Date: Tue, 7 Sep 1999 19:43:38 +1000
I think that some mail clients, such as eudora, implement a protocol that
lets users change their password from within the email client.
There is some sort of program at the other end that does the job.
Check their ftp site.
[peter]
Matt Templeton <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> I am using a Linux box (kernel 2.2.10) and sendmail to server as a mail
> server for a small office (25 people). I would like to know if there is
> an easy way for a windows user to change the password on the linux
> server. I was thinking about a web interface. Does anyone have any
> ideas?
------------------------------
From: "Aaron Elliott" <[EMAIL PROTECTED]>
Subject: Sendmail "network unreachable"
Date: Tue, 7 Sep 1999 03:40:58 -0700
Howdy,
I have a problem with sendmail. I have a masquerading server at my house so
everyone at home can get on the net at the same time. I have the box set up
to save the current dynamic IP addy in a file when it gets disconnected and
reconnects. I'm trying to get a script I wrote to use Sendmail to E-mail
the IP address to me (later to automatically change a file on my computer at
school once I have a static IP) so I can pick it up and access the box or my
home network when I want.
Problem: Sendmail resolves the DNS's and picks up the correct server to
E-mail the addresses, BUT when I look at the logs (and check my E-mail) ...
"network unreachable". Why is this? Everywhere, I've looked for a
solution. You guys are my last hope, DON'T PISS ME OFF! Hahahaha, just
kidding.
Later,
Aaron Elliott
[EMAIL PROTECTED] (same address I want the IP address mailed to)
MANUAL ATTACHMENT:
#!/bin/perl
open(MAIL, "|sendmail -t");
print MAIL "To: mraarone\@yahoo.com\n";
print MAIL "From: server\@home.net\n";
print MAIL "Local IP address is yati.yati.yati.yati ($ARGV[0])\n";
print MAIL "Date/time/bla/bla/bla\n\n";
close(MAIL);
# last note, I think for some stupid reason, I think MIME headers needed???
------------------------------
From: LO Ho Fung <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux,comp.os.linux.admin,comp.os.linux.help
Subject: Re: Password Syncing between Linux and NT
Date: 7 Sep 1999 09:24:47 GMT
Dear Sir,
One of possible solution is install a LDAP server in NT and Linux use LDAP
module to authentication. Both syttem use NT password.
You don't know to do any password sync.
73
VR2IP
Michael LO
In comp.os.linux James Andrews <[EMAIL PROTECTED]> wrote:
: Why isnt it possible to change the NT over to linux if it is only used
: for printing and file serving? Samba provides a perfectly good file and
: print server, and is compatible with almost every other file/print
: sharing OS. Also, can the users get access to their own passwords?
: You've added a direct telnet link to passwd on the host machine? Doesnt
: sound overly healthy, but it should work, so what else do you expect to
: acheive? As far as I know there is no way of synching passwords between
: machines, let alone between OS's. It would a horrendous security flaw
: to write such a system, unless you could either ensure no one has local
: access and the information is sent by direct ethernet connection, or you
: obtained an encryption method which could not be feasibly cracked.
: Unfortunately no encryption method is perfect, and even the best
: encryption available may be cracked tommorow, half of the security is
: due to the uncertainty of an enciphered system. The simplest solution
: remains to use a un*x or linux installation on your file and print
: sharing machine, which could then mount a network file system, connected
: to the email server and thus use its passwd file, so the one password
: file would be used by both email and file/print sharing, although again,
: this isnt overly secure, but then I assume the password passing to the
: email server is probably just plaintext, and it shouldnt be routed
: outside the LAN, so theres no point worrying about security now. Well,
: have fun,
: James
------------------------------
From: "Jon Paxton" <[EMAIL PROTECTED]>
Subject: RH6 Linux PPP Troubles
Date: Tue, 7 Sep 1999 10:16:28 +0100
Hi Everyone,
I'm running RedHat 6.0 on a Dell Inspiron 3000 laptop, trying to setup PPP
to work with the pcmcia Xircom RealPort LAN/Modem card. I downloaded the
latest version of the CardServices and it supports the pcmcia card (its in
supported.cards) and it detects it and loads the driver fine. I'm running
the 2.2.5-15 kernel as installed by rh6 setup, not recompiled.
I'm using quickppp (previously ppp-setup i think) to setup the chatscript
and options files for my dialup. When i run pppd I can hear the modem
dialing out fine, it starts making the general static noises that you hear
during a standard connect, but then these continue for "too long" (past when
it normally connects) and strange loud beeps and other noises occur before
my ISP drops the connection (its not the ISP at fault, this happens with all
dialups).
The same happens when i'm in X (running KDE's kppp) and using minicom and
manually typing "ATDT...etc". I'm starting to get very stressed, and
wondering if its worth going back to windows because without the dialup I
can't use linux for much longer..
Any Ideas? Should I upgrade to the latest kernel and download the latest
versions of pppd etc?
Thanks,
Jon
--
remove the anti-spam entry from
my address to reply via e-mail.
------------------------------
From: [EMAIL PROTECTED] (Sniper)
Crossposted-To: comp.os.linux.portable,comp.os.linux.hardware
Subject: Re: WhereToFind? Socket 7 motherboard with onboard ethernet, sound, and video?
Reply-To: [EMAIL PROTECTED]
Date: Tue, 07 Sep 1999 09:25:11 GMT
On 5 Sep 1999 12:00:14 -0400, [EMAIL PROTECTED] (Byron A Jeff)
wrote:
>In article <7psdqo$n9m$[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> wrote:
>-Why not hook up a portable mp3 player... I'd be to interested in playing
>-quake or surfing the internet to keep my eyes on the road ;)
>
>Because a portable MP3 player cannot hold over a hundred hours of music.
>
>I have a RIO. It's cool but it only holds about 40 minutes. With a linux
>based MP3 computer, you can hold your whole collection on a single disk.
>
>Might I offer an alternative to the ethernet. Get a right angle extender
>an plug it into the MB.
>
>I'm testing with a cheapie Amptron 9100 with CMI 8330 sound and SiS video.
>At $50 a pop, you can't beat the price even though the performance may not
>be optimal.
>
>BAJ
You might find it easier to goto http://www.empeg.com as they have
already done it, in a Car radio sized box... you can put 4 28 GB hard
disks in it to hold you MP3 files !
erm 4000 hours of music ?
Oh of course it runs linux...:->
--
.
"What's the difference between a nail, a screw and a bolt ?" the woodwork
teacher asked the only girl in the class during the first day of school.
She pondered the question for a moment, then replied, "Well, I can't rightly
say as I know, 'cause I ain't never been 'bolted'."
------------------------------
From: Quet Kim Yong Teck <[EMAIL PROTECTED]>
Subject: Why is local mail being queued ?
Date: Tue, 07 Sep 1999 19:42:24 +1000
Hi all,
It's getting better but not working properly yet. I have a linux box
RedHat6.0 connected to a Lan.
I'm trying to set up an internal mail server and eventually with
internet mail ! . Now the problem is that any user on any PC if they
send mail to a user using the ip address, the mail is queued. If I use
the full host name of the mail server everything works fine
Below is part of /var/log/mailog
.sendmail[530]: OAA00530: from=<[EMAIL PROTECTED]>, size=336, class=0,
pri=30336, nrcpts=1,
msgid=<[EMAIL PROTECTED]>, proto=ESMTP,
relay=pc41.ensignlab.com.au [192.168.1.41]
.sendmail[530]: OAA00530: to=<[EMAIL PROTECTED]>, delay=00:00:00,
mailer=esmtp, stat=queued
.sendmail[534]: OAA00534: from=<[EMAIL PROTECTED]>, size=343, class=0,
pri=30343, nrcpts=1,
msgid=<[EMAIL PROTECTED]>, proto=ESMTP,
relay=pc41.ensignlab.com.au [192.168.1.41]
.sendmail[535]: OAA00534: to=<[EMAIL PROTECTED]>,
delay=00:00:00, xdelay=00:00:00, mailer=local, stat=Sent
it works and uses mailer local
Now if i try to send what in the queue manually by using
/usr/sbin/sendmail -q -v ,
i got 192.168.1.111: Name server timeout
I used to have Relay Denied when i used ip address. It was fixed by
adding
192.168.1 RELAY in /etc/mail/access
Thanks
Kim
------------------------------
From: Dmitri Barski <[EMAIL PROTECTED]>
Subject: Gateway setup ( need help)!
Date: 7 Sep 1999 09:39:24 GMT
Hello folks!
I've spent 3.5 hopurs yesterday trying to solve a simple problem. I'm
sure it's not very complicated, but anyhow I haven't got any more ideas
what I could have done wrong. So perhaps could one of you give me a
hint:
I have to set up a Linux box ( well, I have done it already on Friday )
to act as a router, gateway, whatever you call it. It has to have a
"private" IP address ( say 172.16.0.68 ) and redirect any traffic which
would leave the 172.16.0.x net to internet - over a dialup dynamical IP
line ( ISDN ). Well, what have I done: I've set up the box to use
"isdnctrl dialmode ippp0 auto" ( so when a package appears to be routed
over the ippp0 interface, a connection is being made ) and made the
default route point to ippp0 ( which sends all non-local packages to the
ippp0 interface ). That works fine - I can ping or ftp or telnet any
server on the inet and the ISDN card dials fine. After 60 seconds (
without traffic ) the connection is closed. That works too. The next
thing: I've taken a Win box ( WinNT 4.0 ), gave its NIC the address
172.16.0.42 ( or something like that..it is definitely on the 172.16.0.x
subnet ) and made the default gateway point to 172.16.0.68 ( i.e. to
send all non-local packages over the linux box ). That was fine and
haven't taken me too much time. Now I've made a "ping 141.1.1.1" from
the linux box ( to test ). It worked. And then I've made a "ping
141.1.1.1" from the win box. This triggered my linux box to dial out but
the ping has timed out. Setting isdnctrl to verbose 10 and ipppd to
debug and looking onto traffic with tcpdump and iptraf has shown that no
package has gone over the ippp0 interface. I've read some docs ( don't
ask me, which docs...don't know any more - I've spent about 12 hours at
the screen yesterday ) and then I've echoed a 1 to
/proc/net/ipv4/ip_forward on the dialup router ( the linux box mentioned
before ). This has made "ping" to complain about "network unreacheable".
I've tried "defaultroute" ( though it is statically set to ippp0 ) -
that didn't help. I've tried proxyarp ( in ipppd ) - that didn't help
either. So what am I doing wrong? Are there any kernel options which
have to be (de-)activated? I've compiled the kernel with support for
almost everything... ( should "optimize as router not as host" be
checked?)
Perhaps this parameters can help you: the ISP has a dynamical IP
administration ( so I do NOT know what address my ISDN card gets after
dialout neither the IP address of the remote computer ), the local net
is a private class-C net ( so 172.16.0.x should NOT be visible to the
internet ).
Btw. : ping, ftp,telnet, and http do function between local computers.
TIA
CU Dmitri
------------------------------
From: "Bert Douglas" <[EMAIL PROTECTED]>
Subject: how to get all linked pages ?
Date: Tue, 7 Sep 1999 01:33:14 -0500
Hi All,
I just got my first linux mandrake box 3 days ago.
Linux email is not yet working. So don't blast me, please.
I want to make some kind of fairly simple script that will get all the linked pages of
a given URL.
I strongly suspect there is something already available to do this. I just don't know
the right terminology, so it is difficult to
find.
Thanks,
Bert Douglas
------------------------------
From: Josh Thompson <[EMAIL PROTECTED]>
Subject: Re: PPP
Date: Mon, 06 Sep 1999 18:31:35 +0000
I figured out my problem. I had to put the password in the pap-secrets
file in ''
Maybe this will help someone else too.
Thanks for the responses.
------------------------------
From: Vilmos Soti <[EMAIL PROTECTED]>
Subject: Re: Satan and Linux(SUSE)
Date: Mon, 06 Sep 1999 16:47:26 GMT
Post Luxemburg wrote:
>
> Hi, I am trying to run the portscanner SATAN on my Linux box with Suse 6.1.
> But I am unable to compile it correctly and run it. Are there anywhere the
> binaryies of this tool or can anybody help me how to run it.
Hi,
Try downloading saint 1.4 from http://fundy.linuxber.com . That has a
compile option
make linux-glibc21
and this worked for me.
Vilmos
------------------------------
From: Martin Stockhammer <[EMAIL PROTECTED]>
Subject: firewall rules for windows browsing
Date: Tue, 07 Sep 1999 09:07:15 +0200
Hi,
can anyone write me the firewall rules which allow the browsing
of windows networks over the firewall (netbeui, wins-server)
Thanks
Martin Stockhammer
------------------------------
From: Dmitri Barski <[EMAIL PROTECTED]>
Subject: Re: ISDN under Linux
Date: 7 Sep 1999 09:45:47 GMT
Hi!
Message by Dogers <[EMAIL PROTECTED]> on: 06.09.99 18:31:06
>So far I've got the ASUS drivers from their website and got them setup,
>
>Ive got ISDN4k-Utils installed as well (to the best of my knowledge
>
>anyway). But just HOW do i go about making a connection to the internet?
>
>kppp just wont use the /dev/ttyl0-4 ports..?!
>
If you don't need *automated* access but just want to surf around, you
should try kisdn ( just "searchlinux" on kisdn to find it ). It's rather
simple to get a kick-start with it.
CU Dmitri Barski
------------------------------
From: Marc Ledauphin <[EMAIL PROTECTED]>
Subject: Re: Multi-ethernet config at boot strange problem...
Date: Tue, 07 Sep 1999 10:38:01 +0200
Sebastien wrote:
> Hi everyone !
>
> I've a problem i find really strange .... here's the description:
>
> I have a PC acting as a router with 3 ethernet interfaces,
> one is PCI and is eth0 (tulip.o driver)
> two are ISA and are eth1 and eth2 correctly assigned regarding their io/irq
> (ne.o driver for both)
>
> ....
>
> For now, I'm asking the Gods :)
> Any suggestion ??
>
> Thanks in advance,
> Seb. W.
>
> --
> -----------------------------------------------------------
> Sebastien WOIRGARD DESS informatique generaliste
> Universite LOUIS PASTEUR
> F-67000 Strasbourg
J'ai d�j� rencontr� ce probl�me. Linux n'utilise pas forc�ment les cartes comme
elles ont �t� d�finies. Il faut en r�alit� soit:
installer les cartes les unes apr�s les autres
ou
observer l'ordre dans lequelle elles sont d�couvertes et les programmer en
cons�quence
cela arrive fr�quemment avec le PCI et le plug and pray ;-)
Marc Ledauphin
[EMAIL PROTECTED]
------------------------------
From: jim <[EMAIL PROTECTED]>
Subject: parallel ppp connections
Date: Tue, 07 Sep 1999 11:16:27 +0100
Hi there,
I am setting up two parallel ppp connections to different ISPs (i.e.
both connected at the same time).
How do i go about routing traffic to the different ISPs. e.g Mail
requests to ppp0 and browser requests to ppp1 ?
cheers
------------------------------
From: Marc Ledauphin <[EMAIL PROTECTED]>
Subject: Re: Multi-ethernet config at boot strange problem...
Date: Tue, 07 Sep 1999 12:21:48 +0200
Sebastien wrote:
> Hi everyone !
>
> I've a problem i find really strange .... here's the description:
>
> OK, now for the problem :
> When booting, the 3 cards are detected, but when i log on and do an
> ifconfig,
> it reports than eth0 is correctly configured with values of ifcfg-eth0,
> eth1 is configured with values of ifcfg-eth2 (aie :) )
> eth2 is not configured at all (aie aie :) ) and thus not displayed.
>
>
>
> For now, I'm asking the Gods :)
> Any suggestion ??
>
> Thanks in advance,
> Seb. W.
>
> --
> -----------------------------------------------------------
> Sebastien WOIRGARD DESS informatique generaliste
> Universite LOUIS PASTEUR
> F-67000 Strasbourg
I've found an other way to correct this stange behavior:
Take a look at /etc/lilo.conf and add this line:
append="ether=I0,0xaaa,eth0 ether=I1,0xbbb,eth1" where I0 and I1 are Irq of
eth0 and eth1 and 0xaaa and 0xbbb are IOadress of your cards (in hexa)
Take a look at /etc/conf.module and see if lines
alias eth0 module_to_load
alias eth1 module_to_load
and at least, verify your ifcfg-eth0 ... files
for example:
lilo.conf
append="ether=7,0xd400,eth0 ether=5,0xd800,eth1 ... ether=11,0x300,eth4"
/etc/conf.modules
.
.
.
alias eth0 ne2k-pci
alias eth1 3c509
alias eth2 ne2k-pci
alias eth3 ne2000
alias eth4 3c503
It works fine on a server with 5 ethernet adapters
Marc Ledauphin
[EMAIL PROTECTED]
------------------------------
** FOR YOUR REFERENCE **
The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:
Internet: [EMAIL PROTECTED]
You can send mail to the entire list (and comp.os.linux.networking) via:
Internet: [EMAIL PROTECTED]
Linux may be obtained via one of these FTP sites:
ftp.funet.fi pub/Linux
tsx-11.mit.edu pub/linux
sunsite.unc.edu pub/Linux
End of Linux-Networking Digest
******************************