Linux-Networking Digest #609, Volume #10 Tue, 23 Mar 99 23:13:40 EST
Contents:
Re: Ethernet vs. SCSI ([EMAIL PROTECTED])
Re: routing tables - just being curious ([EMAIL PROTECTED])
Re: What is the best Linux to install? (John Meissen)
Non-Winmodem problems! Help! ([EMAIL PROTECTED])
Re: PCMCIA network card under Linux ? (Wasim Juned)
Re: -- A LITTEL HELP FOR MILLONS OF WOMEN -- ("Curt")
Re: Routing ("Curt")
Re: NFS problems with Linux 2.2.x server, freebsd client (Leslie Mikesell)
Re: ppp0 -> eth0 (Lew Pitcher)
IPCHAINS not working (Andre Giordano)
Re: LAN Card (Ng Wai Wing)
Re: Can't telnet (Ng Wai Wing)
Modem: no luck w/simple AT cmd (brett russ)
Re: ftp to Linux m/c. ("Curt")
POP server problems (Darrin Crook)
Basic Samba configuration problem (Andy Jaworski)
PPP & Web pages ("Doug Roach")
Re: 3Com 3C509B-TPO and linux kernel (Bob Williams)
DialUp Networking & Viking Modem (Satish Ganti)
gate mail 2 INN? (Re: INN 2.2 question) (Alan Mead)
Re: ppp0 Connection Fails ("Bob D")
----------------------------------------------------------------------------
Crossposted-To: comp.os.linux.hardware
Subject: Re: Ethernet vs. SCSI
From: [EMAIL PROTECTED]
Date: Thu, 11 Mar 1999 18:07:18 GMT
According to Christopher Howard <[EMAIL PROTECTED]>:
> I have a 386, 486, and a 586. I was thinking of linking them with
> ethernet but then I started thinking about SCSI. They will be stacked
> on top of each other, and I do plan on getting another system to add to
> it later. What would be the advantages and disadvatages of using SCSI
> instead of Ethernet?
It should be faster than 10bT, but probably on par with 100bT, unless
you have really good SCSI cards and cables. Going 100bT would be much
cheaper and much easier to set up.
-p.
------------------------------
From: [EMAIL PROTECTED]
Crossposted-To: comp.os.linux.help
Subject: Re: routing tables - just being curious
Date: Thu, 11 Mar 1999 18:01:03 GMT
In article <7c66sk$eab$[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (Andy Jaworski) wrote:
> Hi there,
>
> I have been struggling a little with my very small home network. I have
> only two machines. The Linux box has a small Win98 partition (dual boot).
> The other box is Win95 OSR2. They are both connected through a crossover
> twisted-pair cable. The Linux box also has PPP configured.
> The IP addresses of both machines are 192.168.48.1 and 192.168.48.2.
>
> Now, without PPP running i get the following output from the "route -n"
> command
>
> Destination Gateway Genmask Flags Metric
> Use Iface
> 192.168.48.1 0.0.0.0 255.255.255.255 UH 0
> 0 eth0
===> this one is implicit and should not appear : it says something like :
"to go to MY eth0 card, please pass thru MY computer"
> 127.0.0.1 0.0.0.0 255.255.255.255 UH 0
> 0 lo
===> same thing : implicit, should not appear
but the route to 127.0.0.0 passing thru 127.0.0.1 is missing !!!
>
> 192.168.48.0 0.0.0.0 255.255.255.255 U 0
> 0 eth0
===> this one is wrong : the mask should be 255.255.255.0 : it should says :
"to go to THE local lan (192.168.48.xxx), pass thru MY eth0 card"
> 0.0.0.0 192.168.48.1 255.255.255.0 UG 0
> 0 eth0
===> this one says : "default route : to go to the world, pass thru my eth0
card", which has no meaning if you have have only two computers on your room
My conclusion is that, when you were installing Linux, you gave a default
route (you should have not) . First thing is to strip all explicit routes you
gave, until you get the following :
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.48.0 0.0.0.0 255.255.255.0 U 0 0 13 eth0
127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 2 lo
and only that.
The 1st line means : "to go to the local netwrk, pass thru my eth0 card"
The 2nd line means : "to go to the pseudo-internal network (127.0.0.0), pass
thru my looopback (pseudo network) card lo = 127.0.0.1"
check by 'ifconfig -a'
if necessary, run 'ifconfig eth0 inet 192.168.48.1 netmask 0xFFFFFF00'
if RedHat, check the /etc/sysconfig/network* files
>
> My first question is: why is my local host 127.0.0.1 not 127.0.0.0. It has
> been like this from the beginning (i.e. from original installation of
> RH5,2). Does it matter?
> The second question: how did the 192.168.48.0 line get into the routing
> table and what iis it for?
>
> As you can see I am just being curious and try to understand a little more.
> When I fire up my PPP connection, the routing table changes to:
>
> Destination Gateway Genmask Flags Metric
> Use Iface
> 206.156.201.131 0.0.0.0 255.255.255.255 UH 0
> 0 ppp0
> 127.0.0.1 0.0.0.0 255.255.255.255 UH 0
> 0 lo
>
> 192.168.48.0 0.0.0.0 255.255.255.255 U 0
> 0 eth0
> 0.0.0.0 206.156.201.131 255.255.255.0 UG 0
> 0 ppp0
>
> Everything seems to work fine, but in order for this to work I had to add
> "route del default"
> line to my ppp-up script just before the pppd line. Also, I had to add the
> following line
> route add -net default gw `hostname`
> to my ppp-off script.
====> logical : you did have already a "default (0.0.0.0)" route BEFORE
setting up ppp - Thus ppp was unable to set up its own default route.
>
> Is this correct? Unfortunately, for this to work for all users on my Linux
> box, I had to make the route command suid.
>
> Sorry for the longish ramblings. I would appreciate any comments.
>
> Andy
> -----------------------------------------
> Andy Jaworski
> [EMAIL PROTECTED]
>
> Opinions expressed herein are my own and may not represent those of my
employer.
>
>
============= Posted via Deja News, The Discussion Network ============
http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
------------------------------
From: [EMAIL PROTECTED] (John Meissen)
Crossposted-To: comp.os.linux,comp.os.linux.misc,comp.os.linux.setup
Subject: Re: What is the best Linux to install?
Date: 23 Mar 1999 23:02:30 GMT
In article <[EMAIL PROTECTED]>,
Jon-o Addleman <[EMAIL PROTECTED]> wrote:
>
>Just out of curiosity, why aren't RPM an YaST good for coders? I don't
>think I've heard that said before...
RPM and YaST like to do things the way the developer, or package builder,
thinks is best. That may or may not agree with my personal philosophy.
I'm suffering with YaST now, even though it gets in my way more
often than not, in order to try SuSE. Over the years I've developed
a system that organizes things into core services, optional products,
and stuff I add myself. And I like to localize the files so that
products are as self-contained as possible within a single directory
subtree. This makes it easier to backup, maintain, and track
the stuff on the system.
Every RPM package I've installed, however, seems to insist on putting
its binaries in either /bin or /usr/bin, the configuration files
in /etc, the library files in /lib or /usr/lib, log files in
/var/log, etc.
I don't like having a 2GB root partition. Having to backup/restore
that much data just to recover a crashed system is ridiculous. With
Slackware I had a 250MB root partition. It contained what I needed
to make the system run.
And if I want to remove/update a package now I have to go searching
all over the system for files. If I rolled my own I could put
support files, documentation files, config files, etc. all under
/usr/local/<product>, and I'd know right where to find them.
Sure, rpm is supposed to keep track of all that for me. But then
there's yet another tool/interface I HAVE to learn and remember.
So far it hasn't done a better job, or made it easier for someone
who knows what they're doing to do their job. It's just provided
a point-and-click WIMP interface for those who DON'T know what
they're doing yet.
john-
------------------------------
From: [EMAIL PROTECTED]
Crossposted-To: comp.os.linux.setup,comp.os.linux.hardware
Subject: Non-Winmodem problems! Help!
Date: Thu, 11 Mar 1999 18:14:25 GMT
Greetings: I recently purchased a non-WinModem 3Com/USR 56K modem that I am
trying to set up on my linux box. Currently, I have a 28.8K USR Sportster
internal modem, and that has been working splendidly without problems.
However, when I install and try to set up the 56K modem, diald (which I am
using for dial-up) fails to initialize the modem. I have tried setting up the
modem on /dev/cua0, /dev/cua1, & /dev/cua2, but have not had any luck. It
seems to me that the problem might be in the modem initialization string, but
I thought that these were all pretty much the same, especially for modems
made by the same manufacturer? Please, can anyone help?? Thanks!!
Justin
(send email to [EMAIL PROTECTED])
============= Posted via Deja News, The Discussion Network ============
http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
------------------------------
From: Wasim Juned <[EMAIL PROTECTED]>
Subject: Re: PCMCIA network card under Linux ?
Date: Wed, 24 Mar 1999 02:46:05 GMT
Check the Linux laptop page to see if this card is supported under Linux
(http://hyper.stanford.edu/~dhinds/pcmcia/ftp/SUPPORTED.CARDS).
1. Find out if your card manager is actually started at boot time and if
so
2. is it being detected by the card manager.
(1. "ps aux | grep card" and 2. "dmesg | more")
You may have to get the latest pcmcia sources and compile them for your
kernel if it is not detected.
Cheers Wasim
Henk Elskamp wrote:
> This card is working fine under W98 on the same PC,
> but i can't get it working under Linux.
> Any ideas what i can do to get it working ?
--
Wasim Juned
[EMAIL PROTECTED]
------------------------------
From: "Curt" <[EMAIL PROTECTED]>
Subject: Re: -- A LITTEL HELP FOR MILLONS OF WOMEN --
Date: Tue, 23 Mar 1999 21:55:12 -0500
But is it distributed under GPL?
[EMAIL PROTECTED] wrote in message <7d8nah$7a8$[EMAIL PROTECTED]>...
>The first female Bio-Clip.
>
>A product conceived to reduce the menstrual pains.
>A concept of new generation that will surprise you.
>
>For more information visit us at : http://www.bio-clip.com
>---------------------------------------------------------------------------
=====
>El primer Bio-Clip femenino.
>
>Un producto concebido para reducir los dolores menstruales
>Un concepto de nueva generaci�n, que le sorprendera.
>
>Para mas informaci�n visitenos en : http://www.bio-clip.com
>---------------------------------------------------------------------------
============
>
------------------------------
From: "Curt" <[EMAIL PROTECTED]>
Subject: Re: Routing
Date: Tue, 23 Mar 1999 21:50:42 -0500
Is forwarding on in /etc/sysconfig/network?
FORWARD_IPV4="yes"
Web-Hotel Danmark wrote in message <[EMAIL PROTECTED]>...
>Hi,
>
>I've been trying to get my RedHat 5.2 to do some routing, and I believe
>that I've done everything I need to, but it still don't work...
>
>The machine has 3 Intel EtherExpress PRO 10/100 netcards.
>Card1 is a line to the internet
>Card2 is a local network
>Card3 is an other local network
>
>I start out executing the following commands:
>
>ifconfig eth0 <THIS MACHINE's IP> netmask 255.255.255.240 broadcast <The
>Internet Router's IP>
>ifconfig eth1 <THIS MACHINE's IP> netmask 255.255.255.240
>ifconfig eth2 <THIS MACHINE's IP> netmask 255.255.255.240
>ifconfig eth0 up
>ifconfig eth1 up
>ifconfig eth2 up
>ifconfig eth0 promisc
>
>ifconfig eth1:0 <A Server's IP> netmask 255.255.255.240
>ifconfig eth1:1 <An Other Server's IP> netmask 255.255.255.240
>ifconfig eth1:2 <A Third Server's IP> netmask 255.255.255.240
>
>route add -net 0.0.0.0 dev eth0
>route add -net default gw <Internet Router's IP>
>
>route add -host <First server's IP> dev eth1:0
>route add -host <Second server's IP> dev eth1:1
>route add -host <Third server's IP> dev eth1:2
>
>---
>
>Now after my knowledge it should work...
>Okay...
>
>Then I plug in some trafic on eth0 (and I can se it with tcpdump), and i
>plug a Hub on eth1....
>But when there is some traffic on eth0 for the specified servers on
>eth1, there is still no traffic on the hub on eth1
>
>The netcards are working (I've tried to plug the internet-traffic on
>eth1 and eth2 and used tcpdump on those, and it worked fine).
>
>If I ping a specified machine on eth1 (eg. "First Server IP"), the ping
>uses eth0 ????
>
>
>If I just write "route" in the shell, it lists all the rules as they
>should be, and if I write "ifconfig" in the shell, is lists all Cards
>and Aliases, no problem....
>
>well there is a problem.... ;-)
>
>
>
>Anyone out there able to help me ?
>
>
>-Palle Nielsen
>
>
>
>
>
------------------------------
From: [EMAIL PROTECTED] (Leslie Mikesell)
Crossposted-To: comp.unix.bsd.freebsd.misc
Subject: Re: NFS problems with Linux 2.2.x server, freebsd client
Date: 23 Mar 1999 20:53:17 -0600
In article <7d56o7$8v4$[EMAIL PROTECTED]>,
<[EMAIL PROTECTED]> wrote:
>
>> There are some other free solutions to this as well. The one from
>> http://www.eddieware.org/
>> does load balancing and dead server detection.
>
>I took a look at the page, but unfortunately that's a load-balancing solution
>which works primarily by redirecting requests, with Apache as a front-end.
>That's simply not going to work very well in this case. The site in question
>already has dedicated load-balancing routers and a pretty robust distributed
>network -- it's access to the data itself that's causing the bottleneck
>(several Terabytes of data). The problem is essentially one of moving from a
>constrained topology on the storage side of things (few NFS servers) to a
>more distributed model (clusters of local storage controllers) -- while
>*decreasing* the complexity of the (already-distributed) front-end machines,
>which handle the network side of requests.
>
>This is a pretty exotic problem, so I don't really expect there to be any
>off-the-shelf solutions. I do appreciate the suggestion, though :).
I'm not sure how you are going to help this situation unless the
data is cachable. If it is, you can generate appropriate
Expires: and/or Cache-control: headers on the initial output and
insert caching proxies either ahead of or behind the load balancers.
If you want other people's caches to help out as well you may need
to make sure that the URL's don't include /cgi-bin/ or ?. Squid
running in accel mode is very fast at delivering cached pages and
needs next-to nothing in the way of configuration to make it do
the right thing.
Les Mikesell
[EMAIL PROTECTED]
------------------------------
From: [EMAIL PROTECTED] (Lew Pitcher)
Subject: Re: ppp0 -> eth0
Reply-To: [EMAIL PROTECTED]
Date: Thu, 11 Mar 1999 19:32:47 GMT
On Thu, 11 Mar 1999 14:21:52 -0500, "Paul" <[EMAIL PROTECTED]>
wrote:
> Hi
>
>I have two networks I am trying to connect to each other using pppd.
>I setup the server side to assign IP's and I have configured the client side
>to call. My connection is fine between the two servers, but machines on the
>client side can't see past the Linux client gateway. It's as if the linux
>(client) box can't route over the ppp0 device. I know the ethernet routing
>is fine, because I have two other routers on the clinet side LAN and routing
>is fine. If anyone knows how to get the routing working on two lans
>connected over a dialup ppp connection. Please let me know.
>
> P.S. Please don't send me simple routing solutions (I have tried all the
>possible routing options) it's more of an issue with pppd or arp or
>something.
Do you have IP forwarding enabled?
cat /proc/sys/net/ipv4/ip_forward should return 1
if it doesnt, then echo 1 >/proc/sys/net/ipv4/ip_forward
If /proc/sys/net/ipv4/ip_forward doesnt exist, recompile your kernel
with the IP_FORWARDING option enabled.
Lew Pitcher
System Consultant, Development Services
Toronto Dominion Bank
(Opinions expressed are my own, not my employers')
------------------------------
From: Andre Giordano <[EMAIL PROTECTED]>
Subject: IPCHAINS not working
Date: 11 Mar 1999 19:32:02 GMT
I have setup IP chains on my system and the `output` chain works great but
I can't get ANY services working with the input chains.
This is the script I am using:
# this is the script for my firewall
/sbin/ipchains -F input
/sbin/ipchains -F output
# rules for outgoing packets
/sbin/ipchains -A output -p TCP -d 0.0.0.0/0 80 -t 0x01 0x10
/sbin/ipchains -A output -p TCP -d 0.0.0.0/0 23 -t 0x01 0x10
/sbin/ipchains -A output -p TCP -d 0.0.0.0/0 ftp-data -t 0x01 0x02
#rules for incomming packets
/sbin/ipchains -A input -i lo -j ACCEPT
/sbin/ipchains -P input DENY
/sbin/ipchains -A input -p TCP -s 0.0.0.0/0 ftp-data -d $myip 1024:5999 -j
ACCEPT
/sbin/ipchains -A input -p TCP -s 0.0.0.0/0 ftp-data -d $myip 6010: -j
ACCEPT
/sbin/ipchains -A input -p TCP -s 0.0.0.0/0 ftp -d $myip -j ACCEPT
/sbin/ipchains -A input -p TCP -s 0.0.0.0/0 110 -d $myip -j ACCEPT
/sbin/ipchains -A input -p TCP -s 0.0.0.0/0 23 -d $myip -j ACCEPT
/sbin/ipchains -A input -p ICMP -j ACCEPT
================== Posted via SearchLinux ==================
http://www.searchlinux.com
------------------------------
From: [EMAIL PROTECTED] (Ng Wai Wing)
Subject: Re: LAN Card
Date: 24 Mar 1999 01:04:01 GMT
Ng Wai Wing ([EMAIL PROTECTED]) wrote:
: What can I do if the kernel doesn't support my lan card? What should I
: modify? I'm using Redhat 5.2 and linux kernel version 2.0.36.
: Martin
------------------------------
From: [EMAIL PROTECTED] (Ng Wai Wing)
Subject: Re: Can't telnet
Date: 24 Mar 1999 01:06:28 GMT
Ng Wai Wing ([EMAIL PROTECTED]) wrote:
------------------------------
From: [EMAIL PROTECTED] (brett russ)
Crossposted-To: comp.os.linux.hardware
Subject: Modem: no luck w/simple AT cmd
Date: 11 Mar 1999 19:33:42 GMT
I'm running RH5.2 on 486/66. There is one serial port on back of
machine which I am using for my mouse. It is mapped to /dev/ttyS1
(COM2) and is IRQ 3. I am installing a Gateway (USR) Telepath 550
14400 internal ISA modem with jumpers configured for IRQ4, COM1. My
BIOS does not provide access to serial port info (enabling/disabling)
so I assume I can use this port. It's a SystemSoft BIOS and the PC is
a VTech.
My problem is that I've followed all of the instructions I've found in
the modem manual, PPP HOWTO, and serial HOWTO to simply issue an AT
command to talk to this modem and I have no luck. Nothing shows up on
the screen when I type and nothing shows up from the modem in
response. It feels like I'm talking to a wall. I have used both
Kermit and minicom, setting it to look for the modem at /dev/ttyS0, to
no avail. In Kermit I've tried setting modem type to both usrobotics
and telepath. I'm running them as root so permissions shouldn't be
the problem. I've run setserial on the port and it reports a 16450
UART and the address and IRQ look fine. Neither Kermit or minicom
complained when initializing/connecting to the modem. I've looked at
/proc/interrupts before and during the modem programs. Before nothing
was shown for IRQ 4, during it showed activity for this interrupt.
Once I typed something and got a dialtone and some activity on the
line which I heard from the speaker on the modem but I typed another
key and it stopped. I had some hope for a second but I could not
repeat it. And once I got "trapped" in Kermit while connected to the
modem and could not issue the escape sequence to get out to the Kermit
prompt. I did Ctrl-z to suspend, and when I typed 'fg' to return, I
saw an "OK" as if the modem had replied. This too happened only once.
I am wondering if the modem takes forever to reply, but why wouldn't
my commands show up? At this point in the installation, does it even
matter what the modem's settings are? I tried 'stty <the string to
enable CTS/RTS HW flow control> < /dev/ttyS0' but this changed
nothing. My modem has all dip switches in default locations. Next
I'll try a different COM port/IRQ (I suppose I could use 5...) but I
don't know what's going on with my current config. Is the modem
toast? I've tried swapping ISA slots.
Thanks--
br
------------------------------
From: "Curt" <[EMAIL PROTECTED]>
Subject: Re: ftp to Linux m/c.
Date: Tue, 23 Mar 1999 22:00:05 -0500
Make sure you have the win machines' IPs in /etc/hosts.allow .
[EMAIL PROTECTED] wrote in message <7d8jl2$70i$[EMAIL PROTECTED]>...
>Hi, I have linux 5.2 installed on my computer. I am able to ftp to other
>unix m/c from my computer but I can't ftp to my m/c from other window's m/c
>or unix m/c. It says that "Service not available, remote server has closed
>connection". Can anyone suggest me as how can I enable ftp permission to my
>computer? Thanx in advance. --Shashank
>
>-----------== Posted via Deja News, The Discussion Network ==----------
>http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
------------------------------
From: Darrin Crook <[EMAIL PROTECTED]>
Subject: POP server problems
Date: Tue, 23 Mar 1999 17:14:29 -0600
I am having trouble with our pop server the error message:
-ERR being read already /usr/spool/mail/crook
is there a lock file some where that I'm missing some where.
Thanks
Darrin Crook
[EMAIL PROTECTED]
------------------------------
From: [EMAIL PROTECTED] (Andy Jaworski)
Crossposted-To: comp.os.linux.help
Subject: Basic Samba configuration problem
Date: Wed, 10 Mar 1999 10:43:39 -0600
Hi there,
I have the smallest network of two machines: Win 95 OSR2 and Linux RH 5.2
with 2.2.2 kernel running together with all required updates (including
Samba 2.0.3). I have them connected using a crossover twisted-pair cable.
The machines see one another. I can ping from both machines.
I noticed that, after configuring the network card on my Linux box, my boot
process now stalls for a long time at two points. The sendmail daemon takes
about a minute to start, and the smbd takes even longer. Samba actually
seems to time out. Now, the smbd got configured to start from my original
RH5.2 installation, even though I did not have a network card then (I am not
sure why). Before I put the network card in my Linux box this did not cause
any problems.
Now I would like to actually try to use Samba. I looked at the
/etc/smb.conf file which got installed originally (I think) and tried to
check it with testparm Samba utility. It never gets beyond prining "loading
the configuration file" or something similar. I tried to make a very small
configuration file with just a few lines in it, but the testparm never seems
to do anything. It just sits there hanging even with an empty configuration
file.
I have a feeling that I am missing something very basic, but I cannot put my
finger on it. Any insight/help will be appreciated
Andy
=========================================
Andy Jaworski
[EMAIL PROTECTED]
Opinions expressed herein are my own and may not represent those of my employer.
------------------------------
From: "Doug Roach" <[EMAIL PROTECTED]>
Subject: PPP & Web pages
Date: Tue, 23 Mar 1999 22:07:02 -0500
Hello all,
I configured ppp using KPPP for 2 separate connections, 1 for my ISP & 1 for
work. When I dial in to work I have no problems, can ping, ftp & access Web
pages through their firewall. When I dial in to my ISP, I can ping my ISP's
home page (or any other page), & I can ftp with no problem. But when I use
my browser (Netscape) I get the following:
contacting www.whatever.com
www.whatever.com contacted, waiting for reply.
Then it just sits there & spins.
I'm pretty sure the DNS setting is OK since I can ping by web address & I
also get the above problem using IP addresses in the browser. From what I
understand, KPPP temporarily writes into the resolv.conf file, so I don't
think my problem lies there.
Also, I put in an ftp address in the netscape location bar & that works OK.
Again I use the same setup for work & everything works fine.
Any sugestions?
Thanks,
Doug
------------------------------
Date: Tue, 23 Mar 1999 16:07:28 -0800
From: Bob Williams <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Crossposted-To: comp.os.linux.setup
Subject: Re: 3Com 3C509B-TPO and linux kernel
My group has been using the 3C509B-TPO card with RedHat
for over a year now and it has worked out OK. Initially,
I had to boot DOS, run the 3c5x9 config program (floppy
sometimes provided with the NIC) and select an available IRQ.
Once the IRQ is set on the NIC, I go into the BIOS and select
legacy ISA for that IRQ.
--Bob--
Sergio Masciotra wrote:
> Hi,
> I'm using the same card (or similar).
> What I did was rebuild the kernel selecting the right network card
> (I'm using Slackware with kernel 2.0.36), then configured my card
> using the configuration utility on the 3COM installation diskette. I
> selected 10BaseT instead of autoselect, and turned off PnP. Once I
> rebooted the system. The green light was lit, but I was not able to
> connect to it, I then edited the rc.modules file in /etc/init.d (not
> sure of exact path) and removed the # before the 3C509 device entry.
> Rebooted and it worked. Hope this helps.
>
> Thanks,
>
> Sergio Masciotra
> Oracle DBA
> Hartco Enterprises Inc.
> Montreal, Canada
>
> On Tue, 23 Mar 1999 16:09:20 -0500, EVANGELOS KOUTSAVDIS
> <[EMAIL PROTECTED]> wrote:
>
> >Hi, I just had a 3C509B-TPO card installed (which is a ISA card) I don't
> >know whether
> >I just have to turn the PnP feature off or rebuild the kernel or both.
> >
> >If anybody had any experience with that card and wants to share it with
> >me I would appreciate that.
> >
> >Thanks
> >
> >
------------------------------
Date: Tue, 23 Mar 1999 22:28:19 -0500
From: Satish Ganti <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup,comp.os.linux.hardware
Subject: DialUp Networking & Viking Modem
Hello! I am a Linux newbie. Long on linux enthusiasm and short on
knowledge.
I installed a new Viking ISA 56K PnP internal modem. After pnptools,
Linux does recognize the modem.
I use minicom to dial into my ISP. I configured minicom myself. I can
dialout at least I think so. After establishing
connection with my ISP, I get a login prompt. I type in the ISP username
& password then I get a prompt
for "Login/Network User:". When I type "Network" I get this string of
char then after about 30 sec "No Carrier" message and the onnection
terminates.
What am I missing. Why the login prompt when already gave that info in
minicom?
How can I get the connection? What else to do?
Here is the snapshot of the modem dial out transaction;
________________________________________________________________
OPTIONS: History Buffer, F-key Macros, Search History Buffer, I18n
Compiled on Oct 1 1998, 23:34:55.
Press CTRL-A Z for help on special keys
AT&F&C1&D2S7=55S37=17E1V1Q0L3
OK
CONNECT 115200
Welcome to 3Com Total Control HiPer ARC (TM)
Networks That Go The Distance (TM)
login:
Password:
Login/Network User:network
~�}#.!}!}!} }?}!}$}%�}"}&����}%}&�W�B}'}"}(}"}1}$}%�}3}#} �V~~�}#.!}!}"}
}?}!}$}
%�}"}&����}%}&�W�B}'}"}(}"}1}$}%�}3}#} .7~~�}#.!}!}#}
}?}!}$}%�}"}&����}%}&�W�B}
'}"}(}"}1}$}%�}3}#} Z}7~~�}#.!}!}$}
}?}!}$}%�}"}&����}%}&�W�B}'}"}(}"}1}$}%�}3}#
} ..~~�}#.!}!}%} }?}!}$}%�}"}&����}%}&�W�B}'}"}(}"}1}$}%�}3}#}
p.~~�}#.!}!}&} }?
}!}$}%�}"}&����}%}&�W�B}'}"}(}"}1}$}%�}3}#} e.~~�}#.!}!}'}
}?}!}$}%�}"}&����}%}&
�W�B}'}"}(}"}1}$}%�}3}#} ..~~�}#.!}!}(}
}?}!}$}%�}"}&����}%}&�W�B}'}"}(}"}1}$}%�
}3}#} �y~~�}#.!}!})} }?}!}$}%�}"}&����}%}&�W�B}'}"}(}"}1}$}%�}3}#}
5Y~~�}#.!}!}*
} }?}!}$}%�}"}&����}%}&�W�B}'}"}(}"}1}$}%�}3}#} 8~�
NO CARRIER
___________________________________________________
Thank you in advance for any help.
Satish Ganti
------------------------------
From: [EMAIL PROTECTED] (Alan Mead)
Crossposted-To: news.software.nntp
Subject: gate mail 2 INN? (Re: INN 2.2 question)
Date: Wed, 24 Mar 1999 03:53:55 GMT
On 23 Mar 1999 17:07:50 GMT, [EMAIL PROTECTED] (Dale Pontius) wrote:
>At the time, INN 2.2 wasn't out yet, but the feature list was.
>Two specific features were equivalents for mail2news.pl and NewsX.
>Since 2.2 wasn't out yet, I installed 2.1 and used the add-ons.
>Now that 2.2 is out, can anyone comment on these features? Does
>the mailing list bridge properly thread messages mail2news.pl
>gets the subject right, but doesn't thread anything.
Dale, or other gurus. I'm in a similar boat. I'm not sure I
understand your last bit; mail2news threads pretty well (what it
keeps, anyway) for me. I put INN up to gate some very high volume
mailing lists using the same? mail2news.pl (found in the mail2news
mini HOW-TO). I'm running 1.7.2 and I cannot say I understand INN
thoroughly.
So, should I upgrade to 2.2?
I have this problem which is probably my poor configuration but I
cannot find any help on log files to decypher where I went wrong. I
get dozens of these messages a day:
Mar 23 15:57:36.191 - conan.ipat.com
<[EMAIL PROTECTED]> 437 EMP rejected (ph/l)
Mar 23 15:59:19.831 - conan.ipat.com
<[EMAIL PROTECTED]> 437 EMP rejected
(ph/l)
Advice, comments--thanks in advance!
-Alan Mead
------------------------------
From: "Bob D" <[EMAIL PROTECTED]>
Subject: Re: ppp0 Connection Fails
Date: Wed, 24 Mar 1999 03:37:48 GMT
If you are using RedHat5.2 your login and password might be found in that
ever popular location:
/etc/sysconfig/networks/chat-ppp0
Bob D
Thomas Lepkowski wrote in message <7d97tq$nfs$[EMAIL PROTECTED]>...
>I just changed my email address with my ISP but now my ppp0 connection
>disconnects
>after about 10 seconds. I updated the password in the X-Windows Network
>Configurator.
>Are there other files that need a password update? What files does the
>Network Configurator
>create or edit when a ppp0 is set up?
>
>Thanks in advance for any help.
>
> -TML
>
------------------------------
** 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
******************************