Linux-Networking Digest #649, Volume #11 Thu, 24 Jun 99 12:13:50 EDT
Contents:
Re: Cable modem not working... (Ted Sikora)
Re: Linux And Windows 95 (TS Stahl)
POP3 Error -ERR Received Kiss of Death ([EMAIL PROTECTED])
Problems compiling satan (Robert Rhoads)
Re: 2 modems routing problem (Rob van der Putten)
Masquerading with Sendmail ("Daniel Fernandez")
Q: Getting the server time ("Jon Finanger")
Re: CGI displays raw HTML code? (XuYifeng)
Re: Cable modem not working... (Ted Sikora)
Help! NFS uid/gid problems (Peter)
Re: wingate1.3 (JuanValdez)
Why not C++ ("Ralph Glebe")
Re: telnet: out yes, in no (Nicholas E Couchman)
Re: POP Installation (Nicholas E Couchman)
Re: Disney vacation 8794 (Nicholas E Couchman)
Re: Cisco 675 question ("Richi")
Re: Default Routing... ("Bob Glover")
Re: Help! Cannot use the gateway (another linux) (S P Arif Sahari Wibowo)
RH 6.0 & ftp RPM...no in.ftpd!!! (Jeffrey Scott)
Re: Setting up Linux to share PPP connection... ("Hoyt")
Re: mgetty for dial-in blocks outgoing traffic (M. Buchenrieder)
Re: mgetty for dial-in blocks outgoing traffic (M. Buchenrieder)
Re: POP Installation FIXED! ("Brian E. Parker")
Re: IP adress for small network that needs internet access ("Nevyn")
Re: Cable modem not working... ("Stephen Jacob")
----------------------------------------------------------------------------
From: Ted Sikora <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Crossposted-To: comp.os.linux.hardware,comp.os.linux.misc
Subject: Re: Cable modem not working...
Date: Thu, 24 Jun 1999 14:05:48 GMT
This is a multi-part message in MIME format.
==============55863936BFD9D77F9C5C866D
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Ted Sikora wrote:
>
> compe wrote:
> >
> > I have slackware 4.0 installed on my system and I cannot get my cable modem
> > to work. To start off www.bresnanlink.net is my ISP, it does not require
> > authentication, etc. like rr. I have 2 , that's right, 2 NIC's in my
> > computer, due to it being a gateway machine on my network. The first, eth0
Use eth0 for cable and eth1 for internal and edit the following scripts
to reflect your setup. rc.inet1 goes in /etc/rc.d the rest in /etc
--
Ted Sikora
[EMAIL PROTECTED]
http://tsikora.tiac.net
==============55863936BFD9D77F9C5C866D
Content-Type: text/plain; charset=us-ascii;
name="rc.inet1"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="rc.inet1"
#! /bin/sh
#
# rc.inet1 This shell script boots up the base INET system.
#
# Version: @(#)/etc/rc.d/rc.inet1 1.01 05/27/93
#
HOSTNAME=`cat /etc/HOSTNAME`
# Attach the loopback device.
/sbin/ifconfig lo 127.0.0.1
/sbin/route add -net 127.0.0.0 netmask 255.0.0.0 lo
# IF YOU HAVE AN ETHERNET CONNECTION, use these lines below to configure the
# eth interfaces. If you're only using loopback or SLIP, don't include the
# rest of the lines in this file.
# Edit for eth0.
IPADDR0="24.2.112.12" # REPLACE with YOUR IP address!
NETMASK0="255.255.255.0" # REPLACE with YOUR netmask!
NETWORK0="24.2.0.0" # REPLACE with YOUR network address!
BROADCAST0="24.2.0.255" # REPLACE with YOUR broadcast!
GATEWAY="24.2.0.1" # REPLACE with YOUR ISP gateway address!
# Edit for eth1.
IPADDR1="192.168.0.1" # REPLACE with YOUR IP address!
NETMASK1="255.255.255.0" # REPLACE with YOUR netmask!
NETWORK1="192.168.0.0" # REPLACE with YOUR network address!
BROADCAST1="192.168.0.255" # REPLACE with YOUR broadcast address!
# Uncomment the line below to configure your ethernet card.
/sbin/ifconfig eth0 ${IPADDR0} broadcast ${BROADCAST0} netmask ${NETMASK0}
/sbin/ifconfig eth1 ${IPADDR1} broadcast ${BROADCAST1} netmask ${NETMASK1}
# Older kernel versions need this to set up the eth0 routing table:
KVERSION=2.2
if [ "$KVERSION" = "1.0" -o "$KVERSION" = "1.1" \
-o "$KVERSION" = "1.2" -o "$KVERSION" = "2.0" -o "$KVERSION" = "" ]; then
/sbin/route add -net ${NETWORK0} netmask ${NETMASK0} eth0
fi
# Older kernel versions need this to set up the eth1 routing table:
KVERSION=2.2
if [ "$KVERSION" = "1.0" -o "$KVERSION" = "1.1" \
-o "$KVERSION" = "1.2" -o "$KVERSION" = "2.0" -o "$KVERSION" = "" ]; then
/sbin/route add -net ${NETWORK1} netmask ${NETMASK1} eth1
fi
# Uncomment this to set up your gateway route:
if [ ! "$GATEWAY" = "" ]; then
/sbin/route add default gw ${GATEWAY} netmask 0.0.0.0 metric 1
fi
# Uncomment to enable ip_forward. It is not enabled by default in 2.2 kernels.
echo 1 > /proc/sys/net/ipv4/ip_forward
# Start IP-Masquerading.
/sbin/ipchains -P forward DENY
/sbin/ipchains -A forward -j MASQ -s 192.168.0.0/24 -d 0.0.0.0/0
# End of rc.inet1
==============55863936BFD9D77F9C5C866D
Content-Type: text/plain; charset=us-ascii;
name="hosts"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="hosts"
#
# hosts This file describes a number of hostname-to-address
# mappings for the TCP/IP subsystem. It is mostly
# used at boot time, when no name servers are running.
# On small systems, this file can be used instead of a
# "named" name server. Just add the names, addresses
# and any aliases to this file...
#
# By the way, Arnt Gulbrandsen <[EMAIL PROTECTED]> says that 127.0.0.1
# should NEVER be named with the name of the machine. It causes problems
# for some (stupid) programs, irc and reputedly talk. :^)
#
# For loopbacking.
127.0.0.1 localhost
24.2.112.12 c33322-a.cable.com c33322-a
192.168.0.1 c33322-a.cable.com c33322-a
192.168.0.2 windows.cable.com windows
192.168.0.3 freebsd.cable.com freebsd
# End of hosts.
==============55863936BFD9D77F9C5C866D
Content-Type: text/plain; charset=us-ascii;
name="resolv.conf"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="resolv.conf"
search cable.com
nameserver 24.2.111.23
nameserver 24.2.111.24
==============55863936BFD9D77F9C5C866D==
------------------------------
From: TS Stahl <[EMAIL PROTECTED]>
Subject: Re: Linux And Windows 95
Date: Thu, 24 Jun 1999 09:45:58 -0500
I think you want SAMBA. There is a plethora of information on it. Start in
your /usr/doc/HOWTO directory and look for the SMB howto's
http://www.milla.simplenet.com/articles/linux/LDP/HOWTO/
The above is a mirror for the linux documentation project.
molten wrote:
> Hey there, i am looking for some docs on how to get windows 95 logging onto
> a linux box, if you know of any ideas, please send them to
> [EMAIL PROTECTED]
>
> Thanks in advance,
> Jeff
--
TS Stahl
------------------------------
From: [EMAIL PROTECTED]
Subject: POP3 Error -ERR Received Kiss of Death
Date: Thu, 24 Jun 1999 14:57:24 GMT
I am using an older Caldera distribution (1.2/1.3) as a POP3 server. The
POP3 server frequently gives the error message "-ERR Received Kiss of Death"
for no apparent reason.
I telnet to port 110 and login. Whether the user has email or not does not
seem to be relevant. The error occurs whether I take any actions or not.
Sometimes I login and it will kick me out almost immediately. Other times I
have to wait 30 seconds. Sometimes the error occurs after a list or retrieve
command ... basically there seems to be no pattern to the cause of the error.
Does anyone know what "-ERR Received Kiss of Death" means?
TIA,
Fraser
------------------------------
From: Robert Rhoads <[EMAIL PROTECTED]>
Subject: Problems compiling satan
Date: Thu, 24 Jun 1999 08:46:18 -0400
Is there someone here who can offer some help with SATAN? I'm running Linux
RedHat 6.0 and every time I attempt to compile SATAN the compile fails on
line 24 of boot.c because macro 'strchr' was used without arguments. I also
get warnings in rex.c at various lines because of passing args from
incompatible pointer types. This is version 1.1.1 of SATAN and I have
applied the patches to it. Any help fixing these problems would be greatly
appreciated. Email me at [EMAIL PROTECTED]
------------------------------
From: Rob van der Putten <[EMAIL PROTECTED]>
Subject: Re: 2 modems routing problem
Date: 24 Jun 1999 14:53:10 +0200
Hi there
[EMAIL PROTECTED] wrote:
> Any hint ?
I think you have a default route to your dial in line instead of to your
isp.
Don't use the default route option but set a route in ip-up instead.
There is an example in de the leased line mini howto.
Regards,
Rob
--
+------------------------------------------------------------------------+
| Rob van der Putten, [EMAIL PROTECTED] |
| http://www.sput.webster.nl/spam-policy.html |
+------------------------------------------------------------------------+
------------------------------
From: "Daniel Fernandez" <[EMAIL PROTECTED]>
Subject: Masquerading with Sendmail
Date: Thu, 24 Jun 1999 14:55:27 +0200
Hi anybody there...
Here�s a question ...how can I make Sendmail to stop masquerading the
senders domain when the destination user is local , because when the mail is
replied the destination user it�s incorrect , i.e...
localuser@localdomain -> localuser@masqueradedomain
Thanks
------------------------------
From: "Jon Finanger" <[EMAIL PROTECTED]>
Subject: Q: Getting the server time
Date: Thu, 24 Jun 1999 14:52:56 +0200
I just wondered if there is possibly to get the server time from any
internet server?
Or must the server run some kind of service?
-Jon
--
-- -- -- --
[EMAIL PROTECTED]
------------------------------
From: XuYifeng <[EMAIL PROTECTED]>
Subject: Re: CGI displays raw HTML code?
Date: Sat, 19 Jun 1999 14:40:37 +0800
output
Content-Type: text/html
as you first line.
XuYifeng
Chris Harshman wrote:
> I posted this before, but maybe it got lost in another
> thread. I've got a CGI program that I'm working on (basically
> a Hotmail-style interface for our local email).
>
> Whenever the CGI program first runs (called from a static
> HTML page with a form for username/password) for a Netscape(*)
> browser, it displays the raw HTML source of the page it
> automatically generates (the user's inbox listing).
>
> (If it matters, this page sends a cookie.)
>
> If you 'Reload' and 'Repost form data' the page displays
> properly, and all subsequent pages generated by the same
> script load and display properly. It's just that first
> time logging in.
>
> Now, if I pull up the same site in Internet Explorer 4.0,
> it always displays properly, every time.
>
> I don't have any Perl directives in my *.conf files;
> the CGI code in question is compiled C code.
>
> Anyone have any suggestions? Many thanks in advance!
>
> - Chris
>
> P.S. The site is (temporarily) at http://paradigm.uor.edu/~crank/mail
> and you can login as 'test' password 'test' - no, this account is
> *not* able to interact with our computer in any other meaningful way ;)
>
> (*) Mac 4.5 / Wintel 4.08 / 4.5 / 4.6 tested
------------------------------
From: Ted Sikora <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Crossposted-To: comp.os.linux.hardware,comp.os.linux.misc
Subject: Re: Cable modem not working...
Date: Thu, 24 Jun 1999 13:16:26 GMT
Stephen Jacob wrote:
>
> Edmund Lian wrote in message <[EMAIL PROTECTED]>...
> >On Wed, 23 Jun 1999 08:55:32 GMT, Ted Sikora
> ><[EMAIL PROTECTED]> wrote:
> >
> >>You have it backwards. eth0 should be the cable nic eth1 internal
> >>network otherwise the routing will be all messed up especially with ip
> >>forwarding enabled.
> >
> >Hmmm... don't know much about Slackware, but I doubt it's that
> >different from Debian. i.e., it doesn't matter which NIC the cable
> >modem is plugged into as long as the configs are right. I run eth0 as
> >my local LAN interface, and eth1 for my cable modem.
>
> I agree, that doesn't make sense to me either. I don't think it should make
> any difference whatsoever which NIC is used for the cable modem. It's just a
> matter of configuring your routes correctly (it's not like eth0 has to be
> the default route or anything -- my eth0 certainly isn't). IP forwarding
> doesn't make any difference to this. It's perfectly possible to set it up to
> forward (presumably with NAT [IP masquerading] in the case mentioned)
> through the interface of your choice.
>
> Regards,
> sj
True it may make no difference but since he is new to this and apt to
get info from many sources using the 'traditional' setup may stave off
potential problems. (Did this save my neck?) It is the prefered setup
from many sources. Actually this is the first time I have seen it
backwards like this. Most docs and examples recommend this and
traditionally show it the other way around.
--
Ted Sikora
[EMAIL PROTECTED]
http://tsikora.tiac.net
------------------------------
Crossposted-To: alt.uu.comp.os.linux.questions,alt.os.linux.redhat,comp.os.linux.help
Subject: Help! NFS uid/gid problems
From: [EMAIL PROTECTED] (Peter)
Date: Thu, 24 Jun 1999 13:18:16 GMT
Hi,
I am running Linux as an NFS server and Solaris x86 as an
NFS client. No matter what I do, the uid's and gid's don't
seem to map correctly, meaning that if I create a file on
the client, it maps as something like nobody4 (65534). I
tried the map_static entry in the exports file to no avail.
Any idea what I am doing wrong? I simply want uid's and gid's
to map equivalently across the systems.
I am running Redhat 5.2.
Peter
------------------------------
From: [EMAIL PROTECTED] (JuanValdez)
Subject: Re: wingate1.3
Date: Thu, 24 Jun 1999 13:21:00 GMT
I've not tried wingate but use vsocks lite.
If wingate is socks compatible all you have to do in NS is see the
socks proxy. DO NOT set any of the other proxy values.
On Thu, 24 Jun 1999 04:58:22 +1000, daniel <[EMAIL PROTECTED]>
wrote:
>Wingate1.3 on a win98 machine supplies the network with access to a
>dialup internet connection.
>
>On the linux machine, the network card is set up ok etc.
>
>Entering in the manual proxies settings into Netscape communicator for
>linux as per a windows clent has allowed the linux machine to access
>HTTP via wingate and to access the newsgroups (via port 119) using
>wingate.
>
>The interesting thing is that accessing an FTP site doesn't work in
>netscape under linux (this is supplied by wingate using SOCKS on port
>1080) and neither does email in netscape under linux.
>
>Does anyone know why FTP and email in netscape won't work while HTTP and
>newsgroups work ok in netscape under linux, and they all work using a
>windows machine. The same settings are used in netscape in both
>operating systems.
>
>I know linux can do the job that wingate is doing.... at this stage the
>linux machine is trying to fit into an existing network, not take it
>over (yet)
>
>Daniel.
>
>
>
------------------------------
From: "Ralph Glebe" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.development.apps,comp.os.linux.development.system
Subject: Why not C++
Date: Wed, 23 Jun 1999 16:09:29 -0700
I'v started to do some development on the linux platform. Looking at some of
the source code around, I noticed that it is all C as opposed to C++.
Although I've been a C programmer for many years, in the last year most of
my programming has been in C++, and I've come to appreciate some of its
benefits. Still, it makes me wonder if I'm headed for trouble trying to
program in C++ on the linux platform. Are all the programs in C because:
1) The legacy programs were written in C, and its easier to keep them that
way.
2) There is something inferior about the code produced with the GNU C++
compiler.
3) It's an extra effort to download the C++ libraries, so if you want to
distribute the source, C is the way to go if you want to be sure that your
code is going to compile.
I'd appreciate any insight, before I get to far along producing C++ code.
Thanks,
Ralph
------------------------------
From: Nicholas E Couchman <[EMAIL PROTECTED]>
Subject: Re: telnet: out yes, in no
Date: Wed, 23 Jun 1999 23:07:41 GMT
Just make sure your inetd services are running okay.
--Nick
Big Fish wrote:
> Hello all,
>
> I can telnet out from my Linux machine but
> cannot telnet into it (it has fixed IP):
>
> /home/bigfish: telnet 123.456.7.8
> Trying...
> Connected to 123.456.7.8
> Local flow control off
> Connection closed by foreign host.
>
> What's the problem, and what should I change in
> my configuration?
>
> Thanks!
>
> --
> Please kindly send a copy of your reply directly
> to my e-mail: [EMAIL PROTECTED]
>
> Sent via Deja.com http://www.deja.com/
> Share what you know. Learn what you don't.
------------------------------
From: Nicholas E Couchman <[EMAIL PROTECTED]>
Crossposted-To: linux.redhat.misc
Subject: Re: POP Installation
Date: Wed, 23 Jun 1999 23:10:53 GMT
Either find the pop packages listed in the RH RPMS directory (if they are
there), or go to ftp.qualcomm.com and download qpopper. I have had a little
trouble getting it to install, but if you get qpopper, email me and I will
explain how to go about installing it. I have qpopper and it works great.
--Nick
"Brian E. Parker" wrote:
> Addendum - This is in my /etc/inetd.conf :
>
> # Pop and imap mail services et al
> #
> pop-2 stream tcp nowait root /usr/sbin/tcpd ipop2d
> pop-3 stream tcp nowait root /usr/sbin/tcpd ipop3d
> imap stream tcp nowait root /usr/sbin/tcpd imapd
> #
>
> and this is what happens if I telnet to port 110 (or 109) :
>
> # telnet localhost 110
> Trying 127.0.0.1...
> Connected to localhost.
> Escape character is '^]'.
> Connection closed by foreign host.
> #
>
> I can telnet to the sendmail port just fine, though. It's as if I have
> those ports blocked for some reason.
>
> Thanks for the reply, Jesse.
> -BEP
>
> Brian E. Parker <[EMAIL PROTECTED]> wrote in message
> news:ZE8c3.7$[EMAIL PROTECTED]...
> > Hello Linux people,
> >
> > We have a Redhat 5.2 box that is running fine and quite stable. It is
> > on our network at work, does web services, has 3 modems in it and allows 3
> > PPP dial-ups, and never fails us *knock knock knock*. The machine also
> runs
> > the sendmail that came with it and we have no problems with it. It has
> its
> > own domain name and that works fine, too.
> >
> > What I want to do is to allow access via POP mail. I know exactly
> > nothing on the subject, so I don't know if POP-mail comes with Redhat,
> > Sendmail, etc,. nor do I know how to activate it if it does exist already
> on
> > the box.
> >
> > What do I need to do to get started on running POP mail? I don't need
> > anything fancy at all, so I don't want to install some 3rd party app that
> > does a bunch of things I don't need. We just want very basic POP mail
> > services.
> >
> > Any help is, as usual, appreciated! Thanks,
> > -BEP mailto:[EMAIL PROTECTED]
> >
> >
------------------------------
From: Nicholas E Couchman <[EMAIL PROTECTED]>
Subject: Re: Disney vacation 8794
Date: Wed, 23 Jun 1999 23:18:28 GMT
==============331B2365DAE0FB20E9C1421C
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
This is a LINUX news group, not a vacation newsgroup.
[EMAIL PROTECTED] wrote:
> Would you like to find out where can you get, the best priced ever, Disney vacation
>packages?
>
> Go To: http://www.altavista.com/cgi-bin/query?pg=q&kl=XX&q=Disney+vacation+packages
>
> and you will find.
>
> Thank you.
>
>
> cxghugbtbrksfkzcbksvdixvncrsxihglngupvgeownnkwit
==============331B2365DAE0FB20E9C1421C
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
This is a LINUX news group, not a vacation newsgroup.
<p>[EMAIL PROTECTED] wrote:
<blockquote TYPE=CITE>Would you like to find out where can you get, the
best priced ever, Disney vacation packages?
<p>Go To: <a
href="http://www.altavista.com/cgi-bin/query?pg=q&kl=XX&q=Disney+vacation+packages">http://www.altavista.com/cgi-bin/query?pg=q&kl=XX&q=Disney+vacation+packages</a>
<p>and you will find.
<p>Thank you.
<br>
<p>cxghugbtbrksfkzcbksvdixvncrsxihglngupvgeownnkwit</blockquote>
</html>
==============331B2365DAE0FB20E9C1421C==
------------------------------
From: "Richi" <[EMAIL PROTECTED]>
Subject: Re: Cisco 675 question
Date: Thu, 24 Jun 1999 08:22:20 -0500
Thanks for the reply Tom. I am currently running it plugged into the hub and
it works OK. I would prefer it to be run via the Linux box with IP
masquerading and have a better firewall.
I am not running it in Bridging mode right now. It is plugged into the hub
using PPP.
Besides according to the Cisco book ping, telnet, web interface, etc. does
not work in bridge mode. Is this correct ?
Thanks again for the reply.
Rich
Tom Mulder wrote in message <[EMAIL PROTECTED]>...
>Why don't you use bridging for the 675 it does it verry well.
>We configure all cisco 675's with briding becouse then you also have a
>fire wall and you won't have to use your Linuxbox as masq. machine?
>
>
> Leased line
> |
> -------
> | 675 |
> -------
> |
> |
> |------------ LAN ----------|
> | |
> comp1 comp2
>
>Just configure it for routing and plug it in you NIC or hub. that will
>do it.
>
>
>
>>
>> OK I admit it... I am lost.
>>
>> I am trying to get Linux up and running as a Gateway server. It used to
work
>> as a dialup !!!!
>>
>> I just got DSL and have a Cisco 675 router and can not figure out how to
>> make it work. I have read and read, and still am lost :(
>>
>> Eventually I want to get back to IP masquerading but I just want Linux to
>> connect to the itnernet via DSL first.
>>
>> Here is what I have.
>>
>> The linux box has two ethernet cards.
>>
>> eth1
>> 192.168.1.2 IP
>> 255.255.255.128 subnet
>>
>> eth2
>> 192.168.1.1 IP
>> 255.255.255.0 subnet
>>
>> All other windows machines are on the 255.255.255.128 subnet.
>>
>> The Cisco is set up as it was supposed to be for Win 98 as outlined by
>> USWest. I have a dynamic IP.
>>
>> Do I need to reprogram the cisco and assign an IP address ?
>>
>> Do I need to add information to the routing properties of netcfg ?
>>
>> ANY help would be most appreciated.
>>
>> Thank you
>>
>> Rich
>
>--
>---
>Tom Mulder
>E-Mail: [EMAIL PROTECTED] or [EMAIL PROTECTED]
>Website: http://www.darkseed.net
------------------------------
From: "Bob Glover" <app1rtg_at_air.ups.com>
Subject: Re: Default Routing...
Date: Thu, 24 Jun 1999 14:07:18 +0100
You do not want a default route on anything except the ppp interface.
R. Alcazar wrote in message <[EMAIL PROTECTED]>...
>Hello All,
>
>I have configured my machine with PPP and a dummy ethernet connection. I
>have to disable the ethernet connection in order to properly run PPP. I
>understand that this is a routing problem (perhaps my default route is on
my
>ethernet) and I don't know how to fix this.
>
>I probably want to set no default route to my ethernet. I'm running RHL
>6.0. Can anyone advise me on the proper commands or procedures to do this?
>
>
>Thanks much,
>R. Alcazar
>
>
------------------------------
From: S P Arif Sahari Wibowo <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup,linux.redhat.install
Subject: Re: Help! Cannot use the gateway (another linux)
Date: Thu, 24 Jun 1999 10:13:52 -0500
Hi!
>>How about trying these at the command line (change the IPs to suit):
>>/sbin/route add default gw 192.168.1.1
For an update: I found out that both configuration files and network
scripts are working properly in this issue. As I mentined in other topic,
the problem is that the network device seems to be slow starter. Issuing
route command in startup process produce the error "Network is
unreachable", although when I issued the exact same command later after
the startup process complete, the command works flawlessly.
Any idea on a fix? I use network cards wirh Realtek 8139 chips using the
rtl8139 driver.
Thank you.
S P Arif Sahari Wibowo
_____ _____ _____ _____
/____ /____/ /____/ /____ [EMAIL PROTECTED]
_____/ / / / _____/ http://spas.8m.com/
------------------------------
From: Jeffrey Scott <[EMAIL PROTECTED]>
Subject: RH 6.0 & ftp RPM...no in.ftpd!!!
Date: Thu, 24 Jun 1999 10:05:57 -0500
Hi,
When I install the ftp module that came with RedHat 6.0, the in.ftpd
file is not placed in /etc...in fact, it isn't placed anywhere. I think
this why people are having difficulty with ftp'ing now. So I copied a
version of in.ftpd from a friends' 5.2 box, and things improved, but I
still can't ftp into my machine. I can ftp out.
I have the inetd.conf setup as people previously posted (ftp stream
..../in.ftpd etc), and inetd is running.
I still can't ftp into my machine. I am trying to login as a user (not
root), and the connection is made, but service is refused. I have the
hosts.allow and hosts.deny files, but there is no info in them, just
comments.
What else do I need to do to get ftp working correctly?
Also, I have no httpd running/installed/working in my 6.0 package. How
do I set that up?
Telnet works fine. Ping works fine.
6.0 is becoming frustrating, seriously contemplating starting over with
5.2.
Thanks,
Jeff
------------------------------
From: "Hoyt" <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux.mandrake
Subject: Re: Setting up Linux to share PPP connection...
Date: Thu, 24 Jun 1999 10:39:22 -0400
Ken J Braatz <[EMAIL PROTECTED]> wrote in message =
news:[EMAIL PROTECTED]...
>=20
> I would like to setup my Linux box to route traffic from my PPP
> connection to my ISP to other boxes on my home network. I've made a =
few
> attempts using what documentation I've been able to find but have been
> unsuccessful. I have no problems connecting the Linux box to my ISP
> (Netcom) and have no problems connecting my other WinTel boxes to the
> Linux box. They just won't route.
>=20
> Here's what I have running:
Here's what I have running:
Dell 386SX-16
8MB ram
floppy drive
NIC=20
56k modem
no other hardware
Ballantain 1.0.0, a mini-distro of Linux that is made specifically for =
this (get it through http://freshmeat.org). I had to modify two of the =
init scripts to correctly set up my resolv.conf and hosts files. A very =
interesting distro.
I was able to free up a "real" computer for other uses.
Hoyt
------------------------------
From: [EMAIL PROTECTED] (M. Buchenrieder)
Subject: Re: mgetty for dial-in blocks outgoing traffic
Date: Thu, 24 Jun 1999 14:26:43 GMT
[EMAIL PROTECTED] writes:
[...]
>ppp/options has a "lock" entry
>do I need a an options.ttyS3 file?!
Yes.
Michael
--
Michael Buchenrieder * [EMAIL PROTECTED] * http://www.muc.de/~mibu
Lumber Cartel Unit #456 (TINLC) & Official Netscum
Note: If you want me to send you email, don't munge your address.
------------------------------
From: [EMAIL PROTECTED] (M. Buchenrieder)
Subject: Re: mgetty for dial-in blocks outgoing traffic
Date: Thu, 24 Jun 1999 14:25:28 GMT
[EMAIL PROTECTED] writes:
>>>Now please show us the logfile from an _unsussessful_
> attempt of using pppd , otherwise the excerpts are pretty useless...
><<
>That *is* the log file for an unsuccessful pppd session.
Oops. Sorry. If that is the result of an attempted pppd session,
then you'll need an pppd*rpm update, or a recompiled pppd . Mgetty doesn't
recognize any attempt of pppd accessing that port. All your logfile
shows is the initialization of mgetty itself, its initial port locking
and then the removal of that lockfile, waiting for something to be
happening on that port. Either your "chat" script is broken, or the pppd
version doesn't work at all with ttyS* ports due to a possibly broken
compile-time setting.
>I use "ifup ppp0" and the modem refuses to connect.
No, it doesn't. PPPD never reaches the part where it would talk to
the modem at all; instead, it just does nothing. What actually happens is
that mgetty just sits there waiting for some activity on that port which
never happens at all: No signal, no lockfile, nothing. Does pppd create
a lockfile at all ? Is it called LCK...ttyS3 ?
Michael
--
Michael Buchenrieder * [EMAIL PROTECTED] * http://www.muc.de/~mibu
Lumber Cartel Unit #456 (TINLC) & Official Netscum
Note: If you want me to send you email, don't munge your address.
------------------------------
From: "Brian E. Parker" <[EMAIL PROTECTED]>
Crossposted-To: linux.redhat.misc
Subject: Re: POP Installation FIXED!
Date: Thu, 24 Jun 1999 09:02:20 -0500
Thanks for your help and suggestions. I had never installed a package
before and because my /etc/inetd.conf had the IMAP and POP line uncommented,
I had assumed they were installed. I wouldn't know how to check if they
were or were't anyway. But, lo and behold, they weren't installed. I
installed the latest and *BAM* it's working fine, now. Thanks to David
Lyons and Nick Couchman and Villy for a pointer in the right direction.
Nick mentioned QPopper. All I want are basic POP services. Would QPopper
be of any benefit to me?
Thanks,
-BEP
------------------------------
From: "Nevyn" <[EMAIL PROTECTED]>
Subject: Re: IP adress for small network that needs internet access
Date: Thu, 24 Jun 1999 15:54:27 +0100
thankx
------------------------------
From: "Stephen Jacob" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.hardware,comp.os.linux.misc
Subject: Re: Cable modem not working...
Date: Thu, 24 Jun 1999 14:46:18 +0100
Ted Sikora wrote in message <[EMAIL PROTECTED]>...
>True it may make no difference but since he is new to this and apt to
>get info from many sources using the 'traditional' setup may stave off
>potential problems. (Did this save my neck?) It is the prefered setup
Fair enough. :) I'd find it more logical to have my local network considered
to be my "primary"/"first" interface (in the sense that it's always up,
etc.), but that could just be me being odd. <g>
Regards,
sj
------------------------------
** 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
******************************