Linux-Networking Digest #22, Volume #12 Tue, 27 Jul 99 08:13:30 EDT
Contents:
Re: CHAP confusion... (W.G. Unruh)
exportfs problem (=?iso-8859-1?Q?=B1=E8=B4=F6=C8=AF?=)
Re: Trouble installing ethernet card (Vidar Andresen)
Help on setting Intranet Linux ("Mak Fey Loong")
Help ("Mak Fey Loong")
Cant telnet rh5.2 default install ("ricK")
VNC and Caldera OpenLinux 2.2 ("Gary R. Skuse, Ph.D.")
Help in Apache (Jeffrey Kok)
Help in Apache (Jeffrey Kok)
Re: ifconfig - unbinding a IP from a NIC card? RH 5.2 (Girish Kamath)
Re: stopping telnet users ("Jamie D.")
Re: Networking Problem ("Jamie D.")
Samba Login Necessary ?? ([EMAIL PROTECTED])
Re: very slow ethernet connection IN ONE DIRECTION! (Simon Burley)
kppp timeout for normal users. ("Cameron Gregg")
Re: Ping broken under RH6.0? (Mogens Kjaer)
Linux firewall Filter for network (Mark Moran)
DLink DFE-530TX NIC card and Linux (Mohd-Hanafiah Abdullah)
Re: very slow ethernet connection IN ONE DIRECTION! (Simon Burley)
DLink DFE-540TX NIC card and Linux (correction) (Mohd-Hanafiah Abdullah)
NFS under Redhat 6.1 (James Patterson)
----------------------------------------------------------------------------
From: [EMAIL PROTECTED] (W.G. Unruh)
Subject: Re: CHAP confusion...
Date: 27 Jul 99 09:53:12 GMT
>MSCHAP uses (as far as i know) an encryption which is (you guessed it)
>patented/copyrighted by MS, so that means that justabout no NON ms product
>can use it.
No. Linux can and does use MSCHAP with no problem. (chap 80)
------------------------------
From: =?iso-8859-1?Q?=B1=E8=B4=F6=C8=AF?= <[EMAIL PROTECTED]>
Subject: exportfs problem
Date: Tue, 27 Jul 1999 17:31:05 +0900
I'm trying to mount solaris to linux.
first, I wrote /etc/exports file in linux
/home sun_host(rw)
and I excute
exportfs -a
second, I excute in Ultra sparc machine : sun_host (sunos 5.5.1)
mount -F nfs linux_host:/home /mnt
then I got this message.
nfs mount: linux_host : NFS service not responding
nfs mount : retrying /mnt
I can't mount this system, then I checked rpcinfo.
rpcinfo -p
100000 2 tcp 111 portmapper
100000 2 udp 111 portmapper
100024 1 udp 675 status
100024 1 tcp 677 status
100011 1 udp 686 rquotad
100011 2 udp 686 rquotad
100005 1 udp 697 mountd
100005 1 tcp 699 mountd
100005 2 udp 702 mountd
100005 2 tcp 704 mountd
100005 3 udp 707 mountd
100005 3 tcp 709 mountd
100003 2 udp 2049 nfs
100021 1 udp 1027 nlockmgr
100021 3 udp 1027 nlockmgr
100021 1 tcp 1024 nlockmgr
100021 3 tcp 1024 nlockmgr
300019 1 tcp 735 amd
300019 1 udp 736 amd
I don't know why "tcp nfs" is not appear.
and I excuter this command.
/etc/rc.d/init.d/nfs stop
/etc/rc.d/init.d/nfs start
But problem is not fixed.
I can mount linux to solaris but I can't mount solaris to linux.
Question is
1.How can I export my linux system.
2.Is it ok,this rpcinfo -p report?
3.When I ran mount command in my ultra sparc system,
why I got that message. (NFS service not responding)
Best regard
doug
--
|
,o __|-.
Name) Duck-Hwan Kim _~o/ \/ |
Tel) 82-42-863-2166~7 ' |/ |
Fax) 82-42-863-2168 / > |
Email) [EMAIL PROTECTED] ' ` |
|
_________________________________________________________________|_____
------------------------------
From: [EMAIL PROTECTED] (Vidar Andresen)
Subject: Re: Trouble installing ethernet card
Date: Tue, 27 Jul 1999 08:13:30 GMT
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] wrote:
[...]
> Thanks a lot for your detailed advice. I'm still having problems,
>though. When I use the ifup eth0 command I get the response "delaying
>eth0 initialization". I have no idea what this means, why
>initialization is being delayed or how to tell it not to delay it.
Thanks for a readable error-message as well ;)
It is the response /sbin/ifup (look at it if you want, it's a script)
gives when:
# is this device available? (this catches PCMCIA devices for us)
/sbin/ifconfig ${REALDEVICE} 2>&1 | grep -s "unknown interface" > /dev/null
if [ "$?" = "0" ]; then
echo "Delaying ${DEVICE} initialization."
exit 0
fi
In other words, if '/sbin/ifconfig eth0' return a 'unknown interface',
what comes out on the console is 'Delaying eth0 initialization.'
(nah.. what is 'if [ "$?" = "0" ]' checking for?)
So, why dont you have any eth0...
In linuxconf did you 'activate the changes' before final 'quit'?
Under 'Preview what has to be done'
�����������������Ĵ Things to do ������������������Ŀ
� �
� Executing: /etc/rc.d/rc3.d/S10network reload �
� �
So maybe a '/etc/rc.d/rc3.d/S10network reload' is needed?
But. I am not used to modules. (And I _dont_ have the nic.) And dont
know if the above will be enough to get it loaded. If so, stop
reading..
What is in /etc/conf.modules ?
alias eth0 3c59x
Should be fine. I dont know if it need any options. But seen in
redhat-somewhere..
Device ``Corkscrew''3Com EtherLink PCI III/XL;Vortex
(3c590, 3c592, 3c595, 3c597);Boomerage (3c900,
3c905, 3c595)
Module Name 3c59x.o
conf.modules debug=val
So a /etc/conf.modules (with values up to 6 on debug)
alias eth0 3c59x
options 3c59x debug=1
The http://cesdis.gsfc.nasa.gov/linux/drivers/vortex.html is a good
start.
An example of loading the vortex module is
insmod 3c59x.o debug=1 options=0,,4 full_duplex=0,0,1
But that is for three cards. I guess this is what you need:
insmod 3c59x.o debug=1 options=0
or
insmod 3c59x.o debug=6 options=0
or only
insmod 3c59x.o
If you can 'insmod 3c59x.o' and then '/sbin/ifup eth0' (or it gets
activated during startup), fine.
Is it (from: '3c59x.c:v0.99Kb 5/7/99 Donald Becker
http://cesdis.gsfc.nasa.gov/linux/drivers/') a:
{"3cSOHO100-TX Hurricane", 0x10B7, 0x7646, 0xffff,
PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE, 128, vortex_probe1}
Then you might need a new driver.
If not, is '3Com Officeconnect 100T NIC' a brand new something like
this?:
From: "Mike Cappella" <[EMAIL PROTECTED]>
Newsgroups: comp.os.linux.networking,comp.os.linux.hardware
Subject: Re: RH 6.0 & 3C905C TXM Problems
Date: Wed, 14 Jul 1999 14:28:10 -0700
Message-ID: <7miv9a$[EMAIL PROTECTED]>
You don't need to get a new card. The 3c905C is a fine card. The "test"
version of the 3c59x driver claims support for the Tornado card (3c905C).
Get it at:
ftp://cesdis.gsfc.nasa.gov/pub/linux/drivers/test/3c59x.c
[...]
Check http://cesdis.gsfc.nasa.gov/linux/drivers/vortex.html for both
links (like http://www.tux.org/hypermail/linux-vortex/) and possible
trouble with driver / hardware (irq, pnp-os).
Mvh Vidar Andresen
------------------------------
From: "Mak Fey Loong" <[EMAIL PROTECTED]>
Subject: Help on setting Intranet Linux
Date: Tue, 27 Jul 1999 17:57:40 +0800
Reply-To: "Mak Fey Loong" <[EMAIL PROTECTED]>
Hi, can anybody help me on setting up a linux which connect to intranet.
my house network setup is
1) 56k modem connected to internet
2) A router which can share the internet connection to local network
also act as a DNS and DHCP server.
The setting is :
subnet 192.168.42.0 netmask 255.255.255.0 {
range 192.168.42.1 192.168.42.127;
option domain-name-servers 192.168.42.254;
option domain-name "myoffice.com";
option routers 192.168.42.254;
option subnet-mask 255.255.255.0;
option broadcast-address 255.255.255.255;
default-lease-time 86400;
max-lease-time 259200;
}
3) A 12 port Hub that can setup peer to peer network in my house.
I now setting up RedHat 6.0 with Apache Webserver to act as a Web Server in
my house.
I am using 3Com 3c509b NIC which linux kernel support.
I can't ping the local intranet after i setup RH6.0.
My Linux IP is 192.168.42.50 a static IP.
I've try various way with "netconf" and "netcfg" in RH6.0 still can't figure
out how to make the Apache server access by local intranet.
Can anyone help me. tell me what should i do after refer the DHCP setting.
Helpless Guy
------------------------------
From: "Mak Fey Loong" <[EMAIL PROTECTED]>
Subject: Help
Date: Tue, 27 Jul 1999 17:58:17 +0800
Reply-To: "Mak Fey Loong" <[EMAIL PROTECTED]>
Hi, can anybody help me on setting up a linux which connect to intranet.
my house network setup is
1) 56k modem connected to internet
2) A router which can share the internet connection to local network
also act as a DNS and DHCP server.
The setting is :
subnet 192.168.42.0 netmask 255.255.255.0 {
range 192.168.42.1 192.168.42.127;
option domain-name-servers 192.168.42.254;
option domain-name "myoffice.com";
option routers 192.168.42.254;
option subnet-mask 255.255.255.0;
option broadcast-address 255.255.255.255;
default-lease-time 86400;
max-lease-time 259200;
}
3) A 12 port Hub that can setup peer to peer network in my house.
I now setting up RedHat 6.0 with Apache Webserver to act as a Web Server in
my house.
I am using 3Com 3c509b NIC which linux kernel support.
I can't ping the local intranet after i setup RH6.0.
My Linux IP is 192.168.42.50 a static IP.
I've try various way with "netconf" and "netcfg" in RH6.0 still can't figure
out how to make the Apache server access by local intranet.
Can anyone help me. tell me what should i do after refer the DHCP setting.
------------------------------
From: "ricK" <[EMAIL PROTECTED]>
Crossposted-To: aus.computers.linux
Subject: Cant telnet rh5.2 default install
Date: Tue, 27 Jul 1999 19:59:46 +1000
Hi,
This problem has not worried me before but now I need to use it, I have
setup rh 5.2 using default ( everything ) I cant telnet anywhere, all it
says is ` unable to connect to host localhost access denied ` its probably
easy but I cant work out how to enable it ! driving me nuts.
TIA Rick.
------------------------------
From: "Gary R. Skuse, Ph.D." <[EMAIL PROTECTED]>
Subject: VNC and Caldera OpenLinux 2.2
Date: Tue, 27 Jul 1999 06:15:03 -0400
Is anyone successfully running vnc with Caldera OpenLinux 2.2? Whenever
I tey to run vncviewer I get an error message indicating a Segmentation
fault. This experience is echoed on the vnc bulletin board but I have
heard of no solutions.
Thanks, Gary
[EMAIL PROTECTED]
------------------------------
From: Jeffrey Kok <[EMAIL PROTECTED]>
Subject: Help in Apache
Date: Tue, 27 Jul 1999 18:21:03 +0800
I am currently having some problems with Apache.
I am unable to run any CGIs. using Apache 1.3.6 with SUSE 6.0
Can any experts pls help!
Email to [EMAIL PROTECTED]
Thanks in advance
Jeffrey
------------------------------
From: Jeffrey Kok <[EMAIL PROTECTED]>
Subject: Help in Apache
Date: Tue, 27 Jul 1999 18:16:39 +0800
I am currently having some problems with Apache.
I am unable to run any CGIs. using Apache 1.3.6 with SUSE 6.0
Can any experts pls help!
Email to [EMAIL PROTECTED]
Thanks in advance
Jeffrey
------------------------------
From: Girish Kamath <[EMAIL PROTECTED]>
Subject: Re: ifconfig - unbinding a IP from a NIC card? RH 5.2
Date: 27 Jul 1999 10:31:19 GMT
Hi
I think this should work.
Goto
/etc/sysconfig/network-scripts
directory.
edit ifcfg-eth0 file
Here change the IPADDR to your
new Server IP Address.
Reboot.
Please let me know if you are sucessful.
Girish Kamath.
[EMAIL PROTECTED]
Alex Harrington wrote:
> Not sure but maybe this will work??
>
> (I have split the ip into sections for ease of writing it as follows:
> 192.168.1.1
> a . b .c.d
> so for 'a' read '192' etc..)
>
> /sbin/ifconfig eth0:d a.b.c.d
> /sbin/route add -host a.b.c.d dev eth0:d
>
> replacing a,b,c and d with the correct IP address for your Linux box.
>
> This may work, it may not - I really don't know - just an intelligent
> guess.
>
> NO GUARANTEES. You may be advised to wait for some more replies from
> somebody who has more experience here than me.
>
> Alex -
>
> [EMAIL PROTECTED] wrote:
> >
> > Help!
> > I accidently bound a workstation IP address to my Red Hat 5.2 server
> > ethernet card and and now I get the message on the workstation that I
> > have a IP address conflict.
> >
> > Here are the commands that I did on on my Red Hat 5.2 Primary Server:
> >
> > /sbin/ifconfig eth0:31 200.200.200.31
> > /sbin/route add -host 200.200.200.31 dev eth0:31
> >
> > Please post the commands that will unbind this IP from the server so
> > that I can reuse this IP for a workstation.
> >
> > Thank You,
> > A new web administrator.
> >
> > Sent via Deja.com http://www.deja.com/
> > Share what you know. Learn what you don't.
================== Posted via SearchLinux ==================
http://www.searchlinux.com
------------------------------
From: "Jamie D." <[EMAIL PROTECTED]>
Subject: Re: stopping telnet users
Date: Tue, 27 Jul 1999 03:15:08 -0400
[EMAIL PROTECTED] wrote:
> Andrey Smirnov <[EMAIL PROTECTED]> schrieb
> am Tue, 20 Jul 1999 14:38:58 -0700 in comp.os.linux.networking:
> AS> Hello,
>
> AS> If you don't want users to telnet to your systems at all, just remark with a
> AS> '#' telnet daemon line in /etc/inetd.conf, and you need to restart initd
> AS> daemon (if you don't know how, just reboot your machine).
> Search the inetd process in the listing of "ps ax", kill -HUP the found PID.
> Or "killall -HUP inetd"
>
> AS> Another scenario would be when you don't want certain users to use telnet,
> AS> but want to use it your self, then change their default shell in /etc/passwd
> AS> file to /dev/null. They won't be able to open a shell session to your
> AS> system.
> Set the shell to a script you wrote:
> --Name: /bin/sorry-and-away --------x----------x-------------x--------
> #!/bin/sh
> echo Sorry, not allowed to access ...
> sleep 3
> exit 1
> ------------x--------x--------------x----------x-------------x--------
>
> AS> One more scenario will require more shell programming skills, but it's more
> AS> 'user friendly' - in user's directory (/home/user) in .bash_profile (login
> AS> script file) setup the following script at the end:
>
> AS> echo "You are not allowed to telnet to this system! Sorry..."
> AS> sleep 5
> AS> exit
>
> This has a big security problem, you may
> ftp to the system and remove the .bash_profile or .login script.
>
> Better is IMHO to check this in /etc/profile simular like this:
>
> case "$USER" in
> not-allowed)
> echo Hey $USER, go away, no login for you\!
> sleep 5
> logout
> exit 1
> kill -6 $$
> ;;
> *)
> echo Welcome $USER
> ;;
> esac
>
> Good Luck
> mfg
> Jojo
>
> --
> - Professionelle Linux Server, Professioneller Support und Dienstleistungen
> - AutomatiX GmbH - Vollautomatische Kransteuerungen & SAP f�higes Lagerger�t
> - J�rgen Sauer Neue Str. 11 28790 Schwanewede mailto:[EMAIL PROTECTED]
> - +49 4209-4699 +49 172-5466499 FAX +49 4209 4644 http://www.automatix.de
you may also want to add SSH to your system
------------------------------
From: "Jamie D." <[EMAIL PROTECTED]>
Subject: Re: Networking Problem
Date: Tue, 27 Jul 1999 03:17:29 -0400
Anna Cabral wrote:
> I have a Pent. machine connected to a high speed modem, 1 meg, through my
> local phone company. I think I should be able to put another network card
> in this machine and have it as my gateway to the internet for my other
> machines. I have tried it over and over again, but can neither ping my
> gateway from my local network or the other way around. Any ideas? Thanks
> in advance.
What is the OS?
------------------------------
From: [EMAIL PROTECTED]
Subject: Samba Login Necessary ??
Date: Tue, 27 Jul 1999 10:40:53 GMT
Trying to get my machines at least ping compatible <G> I currently
have the win machines in 'single user' configuration with no login. Is
user login required on W95 machines to be Samba compatible ??
------------------------------
From: Simon Burley <[EMAIL PROTECTED]>
Subject: Re: very slow ethernet connection IN ONE DIRECTION!
Date: Tue, 27 Jul 1999 11:39:27 +0100
Romiko wrote:
<snip>
> SQL 6.5, Proxy 2.0 on the NT server, Dudes I am new to Linux, how can I get
> Network Neighbourhood to see the Linux server (RedHat 6.0.) shot alot dudes.
Install/use Samba. It's on the RedHat 6 cds.
Spend a few minutes reading the Samba man pages. Works like a dream.
S.
--
/* "C makes it easy to shoot yourself in the foot. C++ makes */
/* it harder, but when you do, it blows away your whole leg." */
/* -- Bjarne Stroustrup */
/* Simon Burley, Double Negative Ltd, London. */
------------------------------
From: "Cameron Gregg" <[EMAIL PROTECTED]>
Subject: kppp timeout for normal users.
Date: Tue, 27 Jul 1999 20:49:18 +1000
Hi,
I can connect to my isp using kppp as root, but cannot as a normal user.
I have SUID'd pppd & kppp, but I keep getting the error message:
Timeout whle waiting for ppp interface to come up.
This happens after dial, while logging onto network.
Any suggestions as how to fix this?
The funny thing is, I had it going for a user. Logged in today, nothing
changed, and it starts giving me these errors!
Help much appreciated.
Cameron
------------------------------
From: Mogens Kjaer <[EMAIL PROTECTED]>
Subject: Re: Ping broken under RH6.0?
Date: Tue, 27 Jul 1999 12:40:06 +0200
Mark Emery wrote:
>
> Hi,
>
> Anyone else had problems with PING under RedHat 6.0?
>
> I'd been using "ping $2 -c 3 -i 1" in a shell script under RH5.2 and all
> worked okay. Now that I've got the system upgraded to 6.0 with all of the
> current updates ping just grinds to a halt.
I don't see a problem:
[mk@mail]> cat /etc/redhat-release
Red Hat Linux release 6.0 (Hedwig)
[mk@mail]> time ping bamse.crc.dk -c 3 -i 1
PING bamse.crc.dk (130.226.184.34): 56 data bytes
--- bamse.crc.dk ping statistics ---
3 packets transmitted, 0 packets received, 100% packet loss
0.000u 0.010s 0:12.00 0.0% 0+0k 0+0io
171pf+0w
It takes 12 secs to finish pinging an offline machine, same time
as on redhat 5.2.
Is it a DNS problem?
Mogens
--
Mogens Kjaer, Carlsberg Laboratory, Dept. of Chemistry
Gamle Carlsberg Vej 10, DK-2500 Valby, Denmark
Phone: +45 33 27 53 25, Fax: +45 33 27 47 08
Email: [EMAIL PROTECTED] Homepage: http://www.crc.dk
------------------------------
From: [EMAIL PROTECTED] (Mark Moran )
Subject: Linux firewall Filter for network
Date: Tue, 27 Jul 1999 10:59:25 GMT
I've got a Linux box setup as a gateway for my home network. I've got
my children's computers on this network. Is there any software out
there like net nanny, etc. that will block questionable www sites to
the clients on the network? I'd like it to run on the Linux gateway
box, instead of the individual clients.
Mark
------------------------------
From: [EMAIL PROTECTED] (Mohd-Hanafiah Abdullah)
Subject: DLink DFE-530TX NIC card and Linux
Date: 27 Jul 1999 19:06:49 +0800
Is there a Linux driver for DLink DFE-530TX NIC card. I couldn't find it
in the Linux source directory. Thanks.
Napi
------------------------------
From: Simon Burley <[EMAIL PROTECTED]>
Subject: Re: very slow ethernet connection IN ONE DIRECTION!
Date: Tue, 27 Jul 1999 11:59:03 +0100
Mandl Martin wrote:
>
> INTEL ethernet express ...
>
> Simon Burley wrote:
> >
> > Mandl Martin wrote:
> > >
> > > .... as said before: I have a similar problem but with a "normal" setup:
> > >
> > > I can send fast, but I receive approximatly a factor 1000 slower ...
> > >
> > > I had the same setup with REDHAT 4.1, and everything worked fine ...
> > > Then I upgraded to REDHAT 5.1 (2.0.35) and got this problem. I am
> > > connected directly to our "intranet" ... All (IP, Gatway, DNS,
> > > nameserver ...) is as before ... ifconfig shows only some dropped TX
> > > packages, but not that many ...
> > >
> > > Any suggestions ????
> > >
> > > Martin
> >
> > Which ethernet card?
What does netstat -i show?
Simon
--
/* "C makes it easy to shoot yourself in the foot. C++ makes */
/* it harder, but when you do, it blows away your whole leg." */
/* -- Bjarne Stroustrup */
/* Simon Burley, Double Negative Ltd, London. */
------------------------------
From: [EMAIL PROTECTED] (Mohd-Hanafiah Abdullah)
Subject: DLink DFE-540TX NIC card and Linux (correction)
Date: 27 Jul 1999 19:07:57 +0800
Is there a Linux driver for DLink DFE-540TX NIC card. I couldn't find it
in the Linux source directory. Thanks.
Napi
------------------------------
From: James Patterson <[EMAIL PROTECTED]>
Subject: NFS under Redhat 6.1
Date: Tue, 27 Jul 1999 07:52:07 -0400
Hi,
I am trying to get NFS workign between two Linux boxes. These are
Intel-550Mhz workstations with RH6.1.
I read the Howto and the man pages. This system is supposedly setup to
run NFS:
/usr/sbin]$ rpcinfo -p
program vers proto port
100000 2 tcp 111 rpcbind
100000 2 udp 111 rpcbind
100024 1 udp 667 status
100024 1 tcp 669 status
100011 1 udp 678 rquotad
100011 2 udp 678 rquotad
100005 1 udp 688 mountd
100005 1 tcp 690 mountd
100005 2 udp 693 mountd
100005 2 tcp 695 mountd
100005 3 udp 698 mountd
100005 3 tcp 700 mountd
100003 2 udp 2049 nfs
100021 1 udp 1024 nlockmgr
100021 3 udp 1024 nlockmgr
100021 1 tcp 1024 nlockmgr
100021 3 tcp 1024 nlockmgr
===============================================
The exports file (on xxx2) is set up as follows. I am trying to
communicate between xxx2 and xxx3, currently.
/usr/sbin]$ cat /etc/exports
/usr/export xxx3.xxxx.xxxx.gov(rw)
====================================================
The fstab file (on xxx3) is as follows:
[root@xxx3 /etc]# cat fstab
<snip>
xxx2.xxxx.xxx.gov:/usr/export /mnt/xxx2 nfs
rsize=8192,wsize=8192
==================================================
I login to xxx3, become root, and issue the following command:
[root@xxx3 /home/xxxxxxxxxx]# mount xxx2:/usr/export /mnt/xxx2
mount: xxx2:/usr/export failed, reason given by server: Permission
denied
============================================================
I have checked ownership and permissions, they are all OK.
Docs say to check how the DNS reports the name, thats why I have the
full name in the fstab on xxx3.
I've done what seems like everything that should be done, but still
having permissions error. Can't find docs that cover nlockmgr, and I
suspect that it may be involved.
Any help would be appreciated.
James
--
==============================
James C. Patterson II, MD/PhD
Clinical Fellow
NIMH, Bldg 10, room B1D-306
Bethesda, MD 20892
work: 301-402-1379
Wisdom yields uncertainty.
I wish I wasn't sure of that.
==============================
------------------------------
** 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
******************************