Linux-Networking Digest #857, Volume #10 Wed, 14 Apr 99 17:13:35 EDT
Contents:
Re: how to use IP-adres in firewall script (Luca Filipozzi)
Re: how to migrate ide to scsi hd ("Doug")
more PPP probs: server assigns ip 0.0.0.0 (smjones)
Routing across multiple interfaces (Gerald Brandt)
network timming out ([EMAIL PROTECTED])
Re: Linux minicom login problem (Markus Wandel)
Re: DNS - for yu (yugoslav) top-level-domain (Johan Wevers)
Re: WWW server ("Deslock")
Re: can't ping isp server (Clifford Kite)
Re: Subnetting and Masquarading (Sean OC)
Re: Linux/98/NT Network ("Daniel G. Hyams")
Performance comparison of nt vs linux (William Evans)
Fatal IO error #54 ("pm")
Re: RedHat 5.2 and Samba on a Server, And a Win/95 Box...Help
([EMAIL PROTECTED])
Re: SMC1211 Driver -- unresolved dependency! (Jeffrey Rice)
Linux client for Microsoft Proxy ? ("Franky")
Re: Couple of quick questions (jik-)
Samba & Linux RH52 --- NT & Access ("Andrei Safonov")
----------------------------------------------------------------------------
From: [EMAIL PROTECTED] (Luca Filipozzi)
Subject: Re: how to use IP-adres in firewall script
Date: Wed, 14 Apr 1999 13:04:20 -0700
[This followup was posted to comp.os.linux.networking and a copy was sent
to the cited author.]
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
says...
> >In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
> >says...
> >>
> >>
> >> >In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
> >> >says...
> >> >> I want to run a firewallscript from commandline.
> >> >>
> >> >> IPADDR=`/sbin/ifconfig ipp p0 | /bin/grep 'inet addr' | /usr/bin/cut
> >> >> -f >2 -d: | /usr/bin/cut -f 1 -d' '`
> >> >>
> >> >> ipchains -A input -p udp -j DENY -d $IPADDR 137:139 gives an error.
> >> >>
> >> >> How can i generate my ip-addres?
> >> >> What is the right syntax?
> >> >>
> >> >>
> >> >don't you need to export IPADDR to the environment.
> >> >
> >> >setenv IPADDR yadayada for csh or tcsh
> >> >export IPADDR=yadayada for sh, ksh, or bash
> >>
> >> Can you please be more specific.
> >> I am just a newbie, sorry
> >>
> >>
> >>
> >>
> >In a shell script, you can do the following assign to a variable (IPADDR)
> >and use it anywhere in the script as $IPADDR. This works in a shell
> >script because it has its own environment (inherited from the login shell
> >from which it was called, but definitely its own). When the shell
> >completes and you are returned to your login shell (the prompt), IPADDR
> >will no longer be valid.
> >
> >Similarly, if at the command prompt you simply type IPADDR=something,
> >IPADDR will not be valid after you press enter because a simple
> >assignment does not add IPADDR to the environment. If you want IPADDR to
> >remain valid in the login shell, you must "export" it to the environment.
> >How you export depends on which login shell you use.
> >
> >setenv is used with csh or tcsh
> >export is used with sh, ksh, or bash
> >
> >You need to buy a good book on shell programming and using shells. I'm
> >sure O'Reilly has a good selection.
> >
> >#!/bin/sh
> >IPADD
>
> Okay i understand, but one more question.
> When i do:
> /sbin/ifconfig ipp p0 | /bin/grep 'inet addr' | /usr/bin/cut
> -f >2 -d: | /usr/bin/cut -f 1 -d' '
> from the prompt i get the ipadres indeed. So the syntax is good.
>
> But when i put it in a script like:
> export IPADDR=/sbin/ifconfig ipp p0 | /bin/grep 'inet addr' |
> /usr/bin/cut -f >2 -d: | /usr/bin/cut -f 1 -d' '
> echo $IPADDR
>
> Then i get the whole string back instead of the ipaddres.
> So what is in IPADDR when the script executes?
> The string or the ipaddres?
It contains the string.
Try this:
export IPADDR=`stuff`
surround the stuff you have above in back-ticks.
This tells the shell to execute the stuff inside the quotes and to
assigne the result (the ip address) to the variable.
--
Luca Filipozzi <[EMAIL PROTECTED]>
------------------------------
From: "Doug" <[EMAIL PROTECTED]>
Subject: Re: how to migrate ide to scsi hd
Date: Wed, 14 Apr 1999 14:43:37 -0500
When you say all hardware was installed correctly, do you mean that you know
that your kernel is compiled to support scsi devices, including your card?
s9752438 wrote in message <[EMAIL PROTECTED]>...
>Dear all,
>I'm new to Linux, I want to migrate old hda to new sda
>my scsi controll card is AHA2490UW. All hardware was installed collect
>the BIOS boot sequence is SCSI ,A,C
>When I type fdisk after prompt #, howcome only hda was presented and sda
>was not presented?
>
>Please Help.
>
------------------------------
From: smjones <[EMAIL PROTECTED]>
Subject: more PPP probs: server assigns ip 0.0.0.0
Date: Wed, 14 Apr 1999 21:40:33 +0200
This is a multi-part message in MIME format.
==============8C97A0957B8FD24AA2E82924
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Im going through all the fun of setting up a PPP connection to my ISP.
When I connect using minicom I am assigned the address 0.0.0.0, PPP then
starts up their side.
On my side I can ping the server and nameserver only and only with ip
addresses. The HOW-TO puts this down to a routing problem. Is the
0.0.0.0 address at the root of this?
TIA
S
--
=============================
Simon M Jones Ph.D.
8 Place Gabriel Peri
Lyon 69007 FRANCE
** remove 'nospam' from return address **
[EMAIL PROTECTED]
+33.04.72.71.36.68
==============8C97A0957B8FD24AA2E82924
Content-Type: text/x-vcard; charset=us-ascii;
name="seven.wonders.vcf"
Content-Transfer-Encoding: 7bit
Content-Description: Card for smjones
Content-Disposition: attachment;
filename="seven.wonders.vcf"
begin:vcard
n:Jones;Simon M
x-mozilla-html:FALSE
adr:;;;;;;
version:2.1
email;internet:[EMAIL PROTECTED]
x-mozilla-cpt:;0
fn:Simon M Jones
end:vcard
==============8C97A0957B8FD24AA2E82924==
------------------------------
From: [EMAIL PROTECTED] (Gerald Brandt)
Subject: Routing across multiple interfaces
Date: Wed, 14 Apr 1999 14:35:52 GMT
Hi there,
I have a dedicated 64K ISDN line, and a Cable Modem. My cable modem changes
its IP address everyonce in a while, while my ISDN line has a static IP.
When requests come in on the ISDN line, I want them to go out the Cable modem.
For example, someone grabs a Web page, the request comes in the ISDN line,
and the resulting Web page goes out the cable modem.
Any idea how I an set this up?
Gerald
--
---
Gerald Brandt [EMAIL PROTECTED]
10:32am up 18 days, 2:07, 4 users, load average: 0.00, 0.00, 0.00
Linux summit.rubicon.net 2.0.36 #1 Tue Oct 13 22:17:11 EDT 1998 i586 unknown
------------------------------
From: [EMAIL PROTECTED]
Subject: network timming out
Date: Wed, 14 Apr 1999 15:23:14 GMT
I have a small LAN at home that has a problem. The systems are connected
via BNC with one Windows 95, one Windows NT 4 workstation, and one RedHat
linux 5.2. The Linux box is on 24/7, the Windows 95 box is up most of teh
time, and the NT box goes up and down daily. The problem is the Linux box
times out (or something) and will no longer "see" the network without a
reboot. The timeout is longer than 24hrs. Only the Linux box is affected,
and the Winddows 95/NT boxes can communicate without problem. Is there
some default setting that after some period of network inactivity, the
network shuts down?
Roger
[EMAIL PROTECTED]
------------------------------
From: [EMAIL PROTECTED] (Markus Wandel)
Crossposted-To: comp.protocols.ppp
Subject: Re: Linux minicom login problem
Date: 14 Apr 1999 14:38:29 GMT
In article <[EMAIL PROTECTED]>, Cory Phillips <[EMAIL PROTECTED]> wrote:
>Using the Linux RedHat 5.2 minicom logging into my ISP, I get the
>username and password prompt, but they keep getting rejected when I type
>them in. My ISP is using PAP. They are not very much help (They are
>all NT guys). They can not tell me what command I need to send to their
>server to start ppp, but they have told me that I need to initiate it
>from the client side.
>I'm able to log into my ISP from Win95 no problem. How does Win95 know
>what command to send my ISP to start ppp? There has got to be an easier
>way. I have read so many HOWTO's on this that I'm probably an expert by
>now. I'm just about ready to change to an ISP that doesn't use Windows NT.
I have a sneaking suspicion about the answer and would appreciate it if
someone could tell me whether I am right.
I think after modem connection, the ISP is exepecting _you_ to so start
sending PPP packets, specifically I'd guess an LCP ConfReq. pppd will do
this as soon as you start it. But, here is my guess, if the ISP doesn't see
these packets (either because it sees the wrong characters -- e.g. you bang on
the RETURN key, or there is a timeout), it drops into an alternative login
mechanism (userid/password prompt).
It can be that the PAP/CHAP authorization is correctly set up and the
userid/password prompt authorization is not (i.e. you get the prompts but
the userid/password don't work.) This has happened to me.
Solution? Make sure your pppd is ready right after modem connection. One
way to do this is to configure it so that _it_ dials the modem, cumbersome
as that is, you just have to read the HOWTO about five times until it all
makes sense, the information is there. "chat" scripts are simple and there
is an example one in the HOWTO.
My own experience is with kppp (part of KDE) which gives a real nice front-end
to ppp, but only fires up pppd when it is sure it has the connection, and
sometimes that results in PAP/CHAP authorization (either will work) and
sometimes in a login/password prompt. I suspect the latter happens when my
machine was just a little bit slow starting up pppd.
All this is unconfirmed suspicions because your typical ISP help provider is
a "Microsoft professional" type who goes deaf when you mention Linux and who
has never heard of an LCP packet anyway.
You can learn a lot about how PPP starts up by looking at its debug output.
The trick is that with RedHat 5.2, it is not saved by default. You invoke
pppd with the "debug" argument and you also have to edit the file
/etc/syslog.conf with an entry like (warning, it's from memory, may be wrong)
*.debug /var/log/messages.debug
Again, most of this is conjecture and if anyone _knows better_ please help.
Markus
------------------------------
Crossposted-To:
nl.burgerrechten,nl.internet.algemeen,nl.internet.misbruik,nl.internet.providers,nl.internet.www.ontwerp,nl.juridisch,nl.politiek,nlnet.misc,soc.culture.yugoslavia
From: [EMAIL PROTECTED] (Johan Wevers)
Subject: Re: DNS - for yu (yugoslav) top-level-domain
Date: Wed, 14 Apr 1999 16:56:09 GMT
Sabri Berisha <[EMAIL PROTECTED]> wrote:
>If Srbija wants to show their side of the story, they should not deport
>all of the western journalists.
I think they don't trust them any more.
>> I'm sure the UCK terrorists would love it, they have us already fight the
>> war they started and are dependent on the fact that the western media are
>> demonizing the Serbs.
>Terrorists?
Yes, terrorists. Attacking civilians is the act of terrorists. The UCK is
not any better than the Serbian police.
>Srbija rapes women, kills and burns down entire vilages
I don't claim that the Serbs have any right to do that, but I DO say that
they are not worse than their opponents.
>and you (!) as an outsider have the guts to defend them?
I defend their right to tell their side of the story, just as the Albanians
and all other parties in this conflict. Freedom of speech, you know.
Something which both Milisevic and the UCK don't like because it might
convince people that the situation is not so black-white as the media in
most countries (both Serbia and its opponents) suggests.
>Go sit in the corner!
I have better things to do.
BTW, can you tell me what country has .cx as domain?
--
ir. J.C.A. Wevers // Physics and science fiction site:
[EMAIL PROTECTED] // http://www.xs4all.nl/~johanw/index.html
Finger [EMAIL PROTECTED] for my PGP public key. PGP-KeyID: 0xD42F80B1
------------------------------
From: "Deslock" <[EMAIL PROTECTED]>
Subject: Re: WWW server
Date: Tue, 13 Apr 1999 22:44:52 -0400
The server needs to have a dns entry for itself specifying it is
www.yourserver.com. This is called an alias. you can put the
aforementioned entry in the host table next to the domainname.com entry
[space in between], which should be next to the machine's IP address.
Is this an intranet server, or internet server?? If it's intranet, this
change needs to be made to the hosts list of your DNS server if your running
DNS. If your running static IP, then this change has to be made to the
hosts file residing on each of your nodes. If this is an internet server,
contact your ISP, and have them enter the www alias for you.
CyberCode wrote in message <7emhki$9bb$[EMAIL PROTECTED]>...
>I am setting up a www server using Redhat 5.2. Got the Static ip, got it
>registered. Configured the server. I can connect to the server using a
>browser if I use domainname.com, but when I try www.domainname.com I cannot
>connect. Any hints/clues will be greatly appreciated.
>
>Charles Stallings
>[EMAIL PROTECTED]
>
>
------------------------------
From: kite@NoSpam.%inetport.com (Clifford Kite)
Subject: Re: can't ping isp server
Date: 14 Apr 1999 09:32:47 -0500
RensFunHog ([EMAIL PROTECTED]) wrote:
: I just got my pppd working. I view ifconfig and route -n and see my isp
: server network address. However when I try to ping it or any other network
: addresses nothing replys. I am able to ping my own PC network address and
: another PC network address that is connected to my #2 node network. I am
: using 10.0.0.0 network address 1 & 2 station. Any ideas. Thanks..
If you have a default route for your network then remove it and use a
network specific route. Pppd won't replace an existing default route
even with the defaultroute option.
--
Clifford Kite <kite@inet%port.com> Not a guru. (tm)
/* A salute to Inspector Baynes, of the Surry Constabulary, the only
police Inspector to ever best Mr. Sherlock Holmes at his own game.
"The Adventure of Wisteria Lodge", by Sir Arthur Conan Doyle. */
------------------------------
From: Sean OC <[EMAIL PROTECTED]>
Subject: Re: Subnetting and Masquarading
Date: Wed, 14 Apr 1999 11:38:45 -0400
Pavel:
Yes, you should be able to get a "network kit" containing a hub and two
nics for something like $60 (so I have heard). If you have a few bucks, it
pays to go with name brand, both for manufacturer support and easier
installs, finding drivers, getting examples etc.
Have you also read through the Net-3 Howto (tcp/ip) and the Ethernet
howto? They are a bit intimidating to start off, but packed with info. I
started by keeping notes, questions and unknown terms on a pad of paper.
The cablemodem is tricky (at least for me). Is it internal or external?
Internal cablemodems need a loadable module (
ftp://powerlink.adelphia.net/pub/surfboard/linux/sb1000-1.1.2.tar.gz , the
original webpage/location of the driver is in the rpm in one of the source
files). External modems are easier in some ways, but for security, you
probably want 2 Ethernet cards, one to the cablemodem, the other to the lan.
this has its own issues, expressed in one of the howtos concerning getting
linux to see the second card at boot time correctly.
The masquerading (kernels 2.* and above have switched to ip-chains)
worked pretty well for me. I just adapted the sample script to my ip
addresses, and everything works. Subnetting I haven't spent much time on,
but I _think_ it is unnecessary if you are already masquerading. Also, you
are using one of the private/disconnected (i.e. 192.168.1.1-255) networks
right?
HTH
SoC
Pavel Grinfeld wrote:
> Hi,
>
> I have read both HOWTO's but I couldn't figure out what sort of
> additional hardware I have to acquire.
> I have three machines (of which I have to network at least 2) sitting in
> one room: 2 Linux boxes and 1 NT box. The linux box has a network card
> and is networked by means of a cable modem.
>
> I'm guessing I should stick an NIC card into each of the other machines
> and get some sort of a hub, but what exactly? Where do I find out?
>
> Thanks a lot in advance!
>
> Pavel
>
> [EMAIL PROTECTED]
------------------------------
From: "Daniel G. Hyams" <[EMAIL PROTECTED]>
Subject: Re: Linux/98/NT Network
Date: Wed, 14 Apr 1999 15:07:37 -0500
On Wed, 14 Apr 1999, Chris wrote:
> I am completely new to linux. I have a small peer to peer network
> between a NT workstation and 98 Box, I want to get the linux box to share
> the it's drive with the rest of the network. and vice versa. I am using
> RH5.2... where do i start?
>
I was where you were about a week ago; make sure that you follow a
step-by-step approach to setting up the network:
1) install ethernet card properly (the startup messages when booting
and ifconfig should help with this)
2) make sure that TCP/IP is working correctly. ping 192.168.100.1, where
the number above is a computer on your network. Do this from each
machine (Win98 has a ping tool also), to make sure that each computer
sees the other.
3) make sure that name service is working properly. For a small network,
you can probably get by with just editing /etc/hosts and /etc/lmhosts
to map machine names to IP addresses. NT and 98 also have their
own hosts and lmhosts files; I think that Win98 stores these files
in c:\windows or c:\windows\system (look for a hosts.sam and rename
it hosts; same thing for lmhosts). Now, ping mymachine, where
"mymachine" is the name of each box on the network, to make sure
that name service works on each box.
4) Now, you are ready for samba. First find the most recent version
of samba (2.0.3, I think) in rpm form on the web; www.samba.org might
help out. Install it. Then configure samba to share out the directory
that you want (read the samba docs in /usr/doc for how to configure
samba). Use smbmount (this is not technically part of samba) to
mount Windows shares on your linux box. Also, use
"smbclient -L hostname", after samba is up and running, to see
what shared are available on a given machine.
===========================================================
Daniel G. Hyams
email: [EMAIL PROTECTED]
phone: (601) 323-4198
===========================================================
------------------------------
From: William Evans <[EMAIL PROTECTED]>
Subject: Performance comparison of nt vs linux
Date: Wed, 14 Apr 1999 20:19:19 +0000
Has anyone seen this, and are there any comments. ? (my comments are
included below)
Seems like the MS marketing machine has gone into action against linux.
Mindcraft, Inc. conducted the performance tests described in this report
between March 10 and March 13, 1999.
Microsoft Corporation sponsored the testing reported
herein.
http://www.mindcraft.com/whitepapers/nts4rhlinux.html
What is really noticable from this report, is there are no
price/performance charts here. If some one has the time it would be
usefull to do this comparison. No guesses as to who would win here
though.
3700 requests per second is probably the level of activity you would see
in a 10,000 user intranet web server. 20 hits per user per minute.
The licensing for an intranet server with this number of users would
probably cost you over 500,000 dollars in client access license fees.
Though I have not had time to verify this, if some one else wants to
verify this please do.
William
------------------------------
From: "pm" <[EMAIL PROTECTED]>
Subject: Fatal IO error #54
Date: Wed, 14 Apr 1999 17:28:43 +0200
I got the following error while running an X session from a remote computer:
XIO Fatal IO error 54 (Connection reset by peer) on X server "......."
.....
I'd like to know what can cause this error message to appear. And also if is
possible to have a description of what the error #54 refers to.
Thank to anyone who can help me.
------------------------------
From: [EMAIL PROTECTED]
Subject: Re: RedHat 5.2 and Samba on a Server, And a Win/95 Box...Help
Date: Wed, 14 Apr 1999 15:33:27 GMT
In article <[EMAIL PROTECTED]>,
Michael Myers <[EMAIL PROTECTED]> wrote:
> I have a 486/100 HP NetServer LF with 56M ram, 4 gig HD, and 3com 10/100
> Card.
> hooked to a 3com superstack II Hub, along with a Win/95 Box, 64Meg, blah
> blah blah,
>
> My Problem, I can FTP, I can Telnet, I can Ping Both ways, and even see
> the Apache Web server from my 95 Box, How or what do I need to do so I
> can log in from the 95 box, (want to set up users) and have Drive
> Mappings, ......Is this possiable?
>
> I am an IS Manager in a NT Enviorment, and I am a Unix\Linux
> Virgin.......I have Bought Samba Intergrating UNIX and
> Windows.......reading it I was lost.
>
> how do I edit the SMB.conf file in REdHat 5.2?
>
>
Hi, seems as if you�ve not read any of the information provided with ReadHat
at all. Under /usr/doc/samba-1.9.18p10 you�ll certainly find enough to
resolve your problem along with helpful examples. (With Windows: look for
information on how to disable password encryption ...) As you�re probably
familiar with Norton Commander, you might consider using Midnight Commander
(mc) which is much more than a clone ... but that�s not the way how to get
familiar with Linux/Unix.
RTFM is the best hint I can give you!
Cheers
============= Posted via Deja News, The Discussion Network ============
http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
------------------------------
From: Jeffrey Rice
Subject: Re: SMC1211 Driver -- unresolved dependency!
Date: Wed, 14 Apr 1999 16:01:24 -0400
Jeffrey Rice wrote:
> Jeffrey Rice wrote:
>
> > Hi,
> > I have an SMC1211 PCI Ethernet card... maybe that's problem number
> > 1.
> >
> > I believe that the RealTek 8129/39 drivers can be used instead, or
> > so the source I got says. So I'm trying to get rtl8139.c to compile
> > properly, but it's a pain. The command I'm using (from the file) is
> > gcc -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -O6 -c rtl8139.c '[
> > -f /usr/src/linux/include/linux/modversions.h ] && echo -DMODVERSIONS
> >
> > However, I get a message saying modversions isn't found. I don't
> > understand that, because I can it is there. Without it, I get an
> > unresolved dependency when I boot up.
> >
> > Anyone out there have this card working who can please give me some
> > help?? cc by email if you don't mind.
> >
>
> Opps, I goofed a bit. The error I'm getting is "unresolved symbol", not
> dependency. I'm missing an header file, right? I'm lost...
>
> Jeff
Never mind... I found a solution that worked. Kernel 2.2.5 has built in
support to rtl8139, so I just made a new kernel (not a bad exercise to begin
with) and it also fixed my NIC problem!
Jeff
------------------------------
From: "Franky" <[EMAIL PROTECTED]>
Subject: Linux client for Microsoft Proxy ?
Date: 14 Apr 1999 15:05:56 GMT
Is there by any change a way to connect from a Laptop running linux to
internet via a Microsoft Proxy 2.0 Server to the Internet ?
Please help.......
Thanx....
[EMAIL PROTECTED]
------------------------------
Date: Wed, 14 Apr 1999 13:49:24 -0700
From: jik- <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux,comp.os.linux,comp.os.linux.misc
Subject: Re: Couple of quick questions
Aaron Dershem wrote:
>
> I downloaded a small program from AT&T called VNC. It's an X server that
> has a client that can run on Windows (among other OSs) boxes and display the
> X session - they also has a Java client. It's pretty cool (tested it on a
> machine other than my home on). The problem I have is that I can't use it
> on my Linux server at home! It uses TCP port 5900+ for its listening port.
> When I try to connect, I can't. How do I check which ports I can make a
> connection to? Also, which configuration file to I change to allow/disallow
> TCP connections on specific ports?
>
> Another, unrelated question: How do I change the default path for all
> users? I use the set command to see the path, but I can't figure out how to
> change it.
/etc/profile will do it before the log in....don't know how when they
are already there...
------------------------------
From: "Andrei Safonov" <[EMAIL PROTECTED]>
Crossposted-To: linux.samba,comp.os.linux.setup,comp.protocols.smb
Subject: Samba & Linux RH52 --- NT & Access
Date: Wed, 14 Apr 1999 00:52:34 +0300
When MS Access 7.0 opens large (20Mb) database from network drive on Samba
Linux happens in MS Access error : "Disk or network error". At this time
SMBSTATUS inform no open files from client side.
Small databases are seems to be working.
Tested database is our company working database and we are using it from MS
NT server without any problems.
Please send me answers to [EMAIL PROTECTED]
Regards,
Andrei Safonov
------------------------------
** 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
******************************