Linux-Networking Digest #622, Volume #11         Tue, 22 Jun 99 12:13:39 EDT

Contents:
  ppp always connects but sometimes drops (Basel Shishani)
  Re: Samba and Win98 (Lew Pitcher)
  Re: Help! Cannot use the gateway (another linux) (S P Arif Sahari Wibowo)
  Re: D-Link NIC (Rod Smith)
  Re: Linux to replace NT Server (billpiasecki)
  Need step by step for PCMCIA ([EMAIL PROTECTED])
  Re: Need help with configuring system as dial access server and printer  server. 
(Monte Phillips)
  Re: Linux networking newbie (Monte Phillips)
  Re: Setting up Linux to share PPP connection... (Sven Holz)
  Announcement: Bandwidth patch for ProFTPD (Vidar Madsen)
  Re: DNS related problems ("Carl R. Friend")
  Re: help with dhcpcd setup; Linux RH4.2, dhcpcd v0.70, DHCPNOOFFER (Leonid Flaks)
  Re: How to??? - ADSL w/SuSE 6.1 (Alex Lam)
  Re: network interfaces won't activate ("Bob Glover")
  Re: stupid vnc question (Nicholas E Couchman)

----------------------------------------------------------------------------

From: Basel Shishani <[EMAIL PROTECTED]>
Crossposted-To: comp.protocols.ppp
Subject: ppp always connects but sometimes drops
Date: 23 Jun 1999 00:29:31 +1000


Hi

I'm having this weird problem when connecting to my ISP
(OptusNet-Australia) from my linux box (i586 - kernel 2.0.36 -
RH5.2). After establishing a *successful* ppp connection, the line will
drop after some few seconds to few minutes of activity. However, this
behavior is not consistent, in some instances it just connects and stays
connected for hours without any problems, in other instances I keep
getting the line drops repeatedly (ie. connecting successfully then
dropping on successive tests)

I also tested on windows NT (same machine) successfully a couple of
times but not enough times to establish that NT side is problem free.

The modem I know is no culprit because it connects to other ISPs without
any problems.
  
I included my chat scripts and a log of a single session (with kdebug=1)
where dropouts were occurring. If you can spot any abnormality in the
log messages or have any suggestions as to why this should be happening,
I would really appreciate your help.
  

============== 
Basel Shishani



====> chat scripts:

---->ppp-on

#!/bin/sh

TELEPHONE=32395000      # The telephone number for the connection
ACCOUNT=******          # The account name for logon (as in 'George Burns')
PASSWORD=*****          # The password for this account 
LOCAL_IP=0.0.0.0        # Local IP address if known. Dynamic = 0.0.0.0
REMOTE_IP=0.0.0.0       # Remote IP address if desired. Normally 0.0.0.0
NETMASK=255.255.255.0   # The proper netmask if needed

export TELEPHONE ACCOUNT PASSWORD

DIALER_SCRIPT=/etc/ppp/optus/ppp-dialer

setserial /dev/ttyS1  spd_vhi

exec /usr/sbin/pppd  lock modem crtscts /dev/ttyS1 38400 \
     asyncmap 0 \
     noipdefault defaultroute debug kdebug 1 connect $DIALER_SCRIPT

---->ppp-dialer

#!/bin/sh

exec chat -v                                            \
        TIMEOUT         3                               \
        ABORT           '\nBUSY\r'                      \
        ABORT           '\nNO CARRIER\r'                \
        ABORT           '\nRINGING\r\n\r\nRINGING\r'    \
        ''              \rAT                            \
        'OK-+++\c-OK'   ATH0                            \
        TIMEOUT         30                              \
        OK              ATDT$TELEPHONE                  \
        CONNECT         ''                              \
        rname:--rname:  $ACCOUNT                        \
        sword:          $PASSWORD                       \
        nnex:           ppp

 

====> log messages for a single session:

Jun 19 13:24:07 localhost pppd[466]: pppd 2.3.5 started by root, uid 0
Jun 19 13:24:08 localhost chat[467]: timeout set to 3 seconds
Jun 19 13:24:08 localhost chat[467]: abort on (\nBUSY\r)
Jun 19 13:24:08 localhost chat[467]: abort on (\nNO CARRIER\r)
Jun 19 13:24:08 localhost chat[467]: abort on (\nRINGING\r\n\r\nRINGING\r)
Jun 19 13:24:08 localhost chat[467]: send (rAT^M)
Jun 19 13:24:08 localhost chat[467]: expect (OK)
Jun 19 13:24:08 localhost chat[467]: rAT^M^M
Jun 19 13:24:08 localhost chat[467]: OK
Jun 19 13:24:08 localhost chat[467]:  -- got it 
Jun 19 13:24:08 localhost chat[467]: send (ATH0^M)
Jun 19 13:24:08 localhost chat[467]: timeout set to 30 seconds
Jun 19 13:24:08 localhost chat[467]: expect (OK)
Jun 19 13:24:08 localhost chat[467]: ^M
Jun 19 13:24:08 localhost chat[467]: ATH0^M^M
Jun 19 13:24:08 localhost chat[467]: OK
Jun 19 13:24:08 localhost chat[467]:  -- got it 
Jun 19 13:24:08 localhost chat[467]: send (ATDT32395000^M)
Jun 19 13:24:08 localhost chat[467]: expect (CONNECT)
Jun 19 13:24:08 localhost chat[467]: ^M
Jun 19 13:24:26 localhost chat[467]: ATDT32395000^M^M
Jun 19 13:24:26 localhost chat[467]: CONNECT
Jun 19 13:24:26 localhost chat[467]:  -- got it 
Jun 19 13:24:26 localhost chat[467]: send (^M)
Jun 19 13:24:26 localhost chat[467]: expect (rname:)
Jun 19 13:24:26 localhost chat[467]:  115200^M
Jun 19 13:24:27 localhost chat[467]: ^M
Jun 19 13:24:27 localhost chat[467]: ^M
Jun 19 13:24:27 localhost chat[467]: Annex Command Line Interpreter   *   Copyright 
(C) 1988, 1999 Bay Networks^M
Jun 19 13:24:27 localhost chat[467]: Checking authorization, Please wait...^M
Jun 19 13:24:27 localhost chat[467]: Annex username:
Jun 19 13:24:27 localhost chat[467]:  -- got it 
Jun 19 13:24:27 localhost chat[467]: send (<username>^M)
Jun 19 13:24:27 localhost chat[467]: expect (sword:)
Jun 19 13:24:27 localhost chat[467]:  <username>^M
Jun 19 13:24:27 localhost chat[467]: Annex password:
Jun 19 13:24:27 localhost chat[467]:  -- got it 
Jun 19 13:24:27 localhost chat[467]: send (<password>^M)
Jun 19 13:24:27 localhost chat[467]: expect (nnex:)
Jun 19 13:24:28 localhost chat[467]:  ^M
Jun 19 13:24:28 localhost chat[467]: ^[[;H^[[2J ^M
Jun 19 13:24:28 localhost chat[467]: ** Unified Digital Access Node V3.0^M
Jun 19 13:24:28 localhost chat[467]: ^M
Jun 19 13:24:28 localhost chat[467]:    Access Commands :-^M
Jun 19 13:24:28 localhost chat[467]: ^M
Jun 19 13:24:28 localhost chat[467]:  hangup   - When you are finished. |  jolt     - 
Shell "Jolt" Access.^M
Jun 19 13:24:28 localhost chat[467]:  slip     - To start slip.         |  terminal - 
Pnotes Access.^M
Jun 19 13:24:28 localhost chat[467]:  ppp      - To start ppp.          |  uucp     - 
Unix to Unix Copy.^M
Jun 19 13:24:28 localhost chat[467]: ^M
Jun 19 13:24:28 localhost chat[467]: annex:
Jun 19 13:24:28 localhost chat[467]:  -- got it 
Jun 19 13:24:28 localhost chat[467]: send (ppp^M)
Jun 19 13:24:28 localhost pppd[466]: Serial connection established.
Jun 19 13:24:29 localhost pppd[466]: Using interface ppp0
Jun 19 13:24:29 localhost pppd[466]: Connect: ppp0 <--> /dev/ttyS1
Jun 19 13:24:29 localhost pppd[466]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 
0x34180c99> <pcomp> <accomp>]
Jun 19 13:24:29 localhost kernel: ppp_tty_ioctl: set flags to 10000
Jun 19 13:24:29 localhost kernel: ppp_tty_ioctl: get flags: addr bffffa5c flags 0
Jun 19 13:24:29 localhost kernel: ppp_tty_ioctl: set flags to 10000
Jun 19 13:24:29 localhost kernel: ppp_tty_ioctl: set xasyncmap
Jun 19 13:24:29 localhost kernel: ppp_tty_ioctl: set xmit asyncmap ffffffff
Jun 19 13:24:29 localhost kernel: ppp_tty_ioctl: get flags: addr bffff9f4 flags 0
Jun 19 13:24:29 localhost kernel: ppp_tty_ioctl: set flags to 10000
Jun 19 13:24:29 localhost kernel: ppp_tty_ioctl: set mru to 5dc
Jun 19 13:24:29 localhost kernel: ppp_tty_ioctl: set rcv asyncmap ffffffff
Jun 19 13:24:29 localhost kernel: ppp_tty_ioctl: get flags: addr bffffa08 flags 0
Jun 19 13:24:29 localhost kernel: ppp_tty_ioctl: set flags to 10000
Jun 19 13:24:29 localhost kernel: ppp_dev_xmit_lower: fcs is dfd9
Jun 19 13:24:29 localhost kernel: ppp_dev_xmit: writing 47 chars
Jun 19 13:24:29 localhost kernel: ppp: successfully queued 22 bytes, flags = f010000
Jun 19 13:24:29 localhost kernel: ppp_tty_read: called buf=08064610 nr=1504
Jun 19 13:24:29 localhost pppd[466]: rcvd [LCP ConfAck id=0x1 <asyncmap 0x0> <magic 
0x34180c99> <pcomp> <accomp>]
Jun 19 13:24:29 localhost kernel: ppp_tty_read: len = 22
Jun 19 13:24:29 localhost kernel: ppp_tty_read: passing 24 bytes up
Jun 19 13:24:31 localhost kernel: ppp: successfully queued 34 bytes, flags = f010000
Jun 19 13:24:31 localhost kernel: ppp_tty_read: called buf=08064610 nr=1504
Jun 19 13:24:31 localhost kernel: ppp_tty_read: len = 34
Jun 19 13:24:31 localhost kernel: ppp_tty_read: passing 36 bytes up
Jun 19 13:24:31 localhost kernel: ppp_dev_xmit_lower: fcs is dce8
Jun 19 13:24:31 localhost kernel: ppp_dev_xmit: writing 37 chars
Jun 19 13:24:31 localhost pppd[466]: rcvd [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 
0xe65e8268> <pcomp> <accomp> < 11 04 05 dc> < 12 02> < 13 06 01 4d 50 58>]
Jun 19 13:24:31 localhost pppd[466]: sent [LCP ConfRej id=0x1 < 11 04 05 dc> < 12 02> 
< 13 06 01 4d 50 58>]
Jun 19 13:24:31 localhost kernel: ppp: successfully queued 22 bytes, flags = f010000
Jun 19 13:24:31 localhost kernel: ppp_tty_read: called buf=08064610 nr=1504
Jun 19 13:24:31 localhost kernel: ppp_tty_read: len = 22
Jun 19 13:24:31 localhost kernel: ppp_tty_read: passing 24 bytes up
Jun 19 13:24:31 localhost kernel: ppp_dev_xmit_lower: fcs is c2d5
Jun 19 13:24:31 localhost kernel: ppp_dev_xmit: writing 45 chars
Jun 19 13:24:31 localhost kernel: ppp_tty_ioctl: set xmit asyncmap 0
Jun 19 13:24:31 localhost kernel: ppp_tty_ioctl: get flags: addr bffff984 flags f000000
Jun 19 13:24:31 localhost kernel: ppp_tty_ioctl: set flags to f010003
Jun 19 13:24:31 localhost kernel: ppp_tty_ioctl: set mru to 5dc
Jun 19 13:24:31 localhost kernel: ppp_tty_ioctl: set rcv asyncmap 0
Jun 19 13:24:31 localhost kernel: ppp_tty_ioctl: get flags: addr bffff998 flags f000003
Jun 19 13:24:31 localhost kernel: ppp_tty_ioctl: set flags to f010003
Jun 19 13:24:31 localhost kernel: ppp_dev_xmit_lower: fcs is 1427
Jun 19 13:24:31 localhost kernel: ppp_dev_xmit: writing 22 chars
Jun 19 13:24:31 localhost kernel: ppp_tty_ioctl: get flags: addr bffff964 flags f000003
Jun 19 13:24:31 localhost pppd[466]: rcvd [LCP ConfReq id=0x2 <asyncmap 0x0> <magic 
0xe65e8268> <pcomp> <accomp>]
Jun 19 13:24:31 localhost pppd[466]: sent [LCP ConfAck id=0x2 <asyncmap 0x0> <magic 
0xe65e8268> <pcomp> <accomp>]
Jun 19 13:24:31 localhost pppd[466]: sent [IPCP ConfReq id=0x1 <addr 0.0.0.0> 
<compress VJ 0f 01>]
Jun 19 13:24:31 localhost kernel: ppp_tty_ioctl: set flags to f010043
Jun 19 13:24:31 localhost kernel: ppp0: no compressor for [15 3 29], 3
Jun 19 13:24:31 localhost kernel: ppp0: no compressor for [1a 4 8], 4
Jun 19 13:24:31 localhost kernel: ppp0: no compressor for [18 4 8], 4
Jun 19 13:24:32 localhost kernel: ppp: successfully queued 18 bytes, flags = f010043
Jun 19 13:24:32 localhost kernel: ppp_tty_read: called buf=08064610 nr=1504
Jun 19 13:24:32 localhost kernel: ppp_tty_read: len = 18
Jun 19 13:24:32 localhost kernel: ppp_tty_read: passing 20 bytes up
Jun 19 13:24:32 localhost kernel: ppp_dev_xmit_lower: fcs is c8d
Jun 19 13:24:32 localhost kernel: ppp_dev_xmit: writing 22 chars
Jun 19 13:24:32 localhost pppd[466]: rcvd [IPCP ConfReq id=0x3 <compress VJ 0f 01> 
<addr 198.142.245.21>]
Jun 19 13:24:32 localhost pppd[466]: sent [IPCP ConfAck id=0x3 <compress VJ 0f 01> 
<addr 198.142.245.21>]
Jun 19 13:24:34 localhost pppd[466]: sent [IPCP ConfReq id=0x1 <addr 0.0.0.0> 
<compress VJ 0f 01>]
Jun 19 13:24:34 localhost kernel: ppp_dev_xmit_lower: fcs is 1427
Jun 19 13:24:34 localhost kernel: ppp_dev_xmit: writing 22 chars
Jun 19 13:24:34 localhost kernel: ppp_tty_read: called buf=08064610 nr=1504
Jun 19 13:24:34 localhost kernel: ppp_tty_read: no data (EAGAIN)
Jun 19 13:24:34 localhost kernel: ppp: successfully queued 12 bytes, flags = f010043
Jun 19 13:24:34 localhost kernel: ppp_tty_read: called buf=08064610 nr=1504
Jun 19 13:24:34 localhost kernel: ppp_tty_read: len = 12
Jun 19 13:24:34 localhost kernel: ppp_tty_read: passing 14 bytes up
Jun 19 13:24:34 localhost kernel: ppp_dev_xmit_lower: fcs is a61f
Jun 19 13:24:34 localhost kernel: ppp_dev_xmit: writing 22 chars
Jun 19 13:24:34 localhost pppd[466]: rcvd [IPCP ConfNak id=0x1 <addr 198.142.248.142>]
Jun 19 13:24:34 localhost pppd[466]: sent [IPCP ConfReq id=0x2 <addr 198.142.248.142> 
<compress VJ 0f 01>]
Jun 19 13:24:35 localhost kernel: ppp: successfully queued 18 bytes, flags = f010043
Jun 19 13:24:35 localhost kernel: ppp_tty_read: called buf=08064610 nr=1504
Jun 19 13:24:35 localhost kernel: ppp_tty_read: len = 18
Jun 19 13:24:35 localhost kernel: ppp_tty_read: passing 20 bytes up
Jun 19 13:24:35 localhost kernel: ppp_tty_ioctl: get flags: addr bffff9b0 flags f000043
Jun 19 13:24:35 localhost kernel: ppp_tty_ioctl: set maxcid to 16
Jun 19 13:24:35 localhost kernel: ppp_tty_ioctl: set flags to f010047
Jun 19 13:24:35 localhost kernel: ppp: channel ppp0 going up for IP packets!
Jun 19 13:24:35 localhost pppd[466]: rcvd [IPCP ConfAck id=0x2 <addr 198.142.248.142> 
<compress VJ 0f 01>]
Jun 19 13:24:35 localhost pppd[466]: local  IP address 198.142.248.142
Jun 19 13:24:35 localhost pppd[466]: remote IP address 198.142.245.21
Jun 19 13:24:35 localhost kernel: ppp_dev_xmit [ppp0]: skb 02936c70
Jun 19 13:24:35 localhost kernel: ppp_dev_xmit_lower: fcs is 645
Jun 19 13:24:35 localhost kernel: ppp_dev_xmit: writing 84 chars
Jun 19 13:24:35 localhost kernel: ppp_dev_xmit [ppp0]: skb 03005664
Jun 19 13:24:35 localhost kernel: ppp_dev_xmit_lower: fcs is 3048
Jun 19 13:24:35 localhost kernel: ppp_dev_xmit: writing 564 chars

... lots ppp_dev_xmit ...

Jun 19 13:24:36 localhost kernel: ppp_dev_xmit [ppp0]: skb 02936c70
Jun 19 13:24:36 localhost kernel: ppp_dev_xmit_lower: fcs is 1960
Jun 19 13:24:36 localhost kernel: ppp_dev_xmit: writing 84 chars
Jun 19 13:24:39 localhost kernel: ppp_dev_stats called<6>ppp_dev_stats 
called<6>ppp_dev_stats called<6>ppp_dev_stats called<6>ppp_dev_stats 
called<6>ppp_dev_stats called<6>ppp_dev_stats called<6>ppp_dev_stats 
called<7>ppp_dev_xmit [ppp0]: skb 02936c70
Jun 19 13:24:39 localhost kernel: ppp_dev_xmit_lower: fcs is fc7
Jun 19 13:24:39 localhost kernel: ppp_dev_xmit: writing 85 chars
Jun 19 13:24:39 localhost kernel: ppp_tty_read: called buf=08064610 nr=1504
Jun 19 13:24:39 localhost kernel: ppp_tty_read: no data (EAGAIN)
Jun 19 13:24:43 localhost kernel: ppp_dev_xmit [ppp0]: skb 02936c70
Jun 19 13:24:43 localhost kernel: ppp_dev_xmit_lower: fcs is 48c8
Jun 19 13:24:43 localhost kernel: ppp_dev_xmit: writing 85 chars
Jun 19 13:24:45 localhost kernel: ppp_dev_xmit [ppp0]: skb 02936898
Jun 19 13:24:45 localhost kernel: ppp_dev_xmit_lower: fcs is e22
Jun 19 13:24:45 localhost kernel: ppp_dev_xmit: writing 46 chars

... lots ppp_dev_xmit ...

Jun 19 13:25:36 localhost kernel: ppp_dev_xmit [ppp0]: skb 034a6098
Jun 19 13:25:36 localhost kernel: ppp_dev_xmit_lower: fcs is 9407
Jun 19 13:25:36 localhost kernel: ppp_dev_xmit: writing 104 chars
Jun 19 13:25:45 localhost kernel: ppp: channel ppp0 closing.
Jun 19 13:25:45 localhost kernel: ppp: channel ppp0 going down for IP packets!
Jun 19 13:25:45 localhost pppd[466]: Hangup (SIGHUP)
Jun 19 13:25:45 localhost pppd[466]: Modem hangup
Jun 19 13:25:45 localhost pppd[466]: Connection terminated.
Jun 19 13:25:46 localhost pppd[466]: Exit.

====<



------------------------------

From: [EMAIL PROTECTED] (Lew Pitcher)
Subject: Re: Samba and Win98
Reply-To: [EMAIL PROTECTED]
Date: Tue, 22 Jun 1999 14:35:56 GMT



On Tue, 22 Jun 1999 10:28:55 -0400, "the lobotomy was a success!!!" <[EMAIL PROTECTED]> wrote:

>an article i read said that win98 sends encrypted passwords as a default.
>samba likes plain-text passwords.  refer to support.microsoft.com Article

IIRC, Samba 2.0 supports encrypted passwords

>ID: Q187228 for help or a direction to head in at least :)
>
>Brian Witowski <[EMAIL PROTECTED]> wrote in message
>news:[EMAIL PROTECTED]...
>> Greetings,
>>
>> Occassionally I get 'Fatal Errors' or other blue-screen crashes on my
>> Win98 box when attempting to open a file directly off my Linux server.
>> It seems like the only way to do this reliably is to drag it across to
>> my
>> Win98 box then open it locally.  Does anybody have any idea why
>> this happens?  In every other way, the network functions perfectly.
>>
>>
>> Thanks,
>> Brian
>>
>
>


Lew Pitcher
System Consultant, Integration Solutions Architecture
Toronto Dominion Bank

([EMAIL PROTECTED])


(Opinions expressed are my own, not my employer's.)

------------------------------

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: Tue, 22 Jun 1999 09:34:44 -0500

On Wed, 16 Jun 1999, DanH wrote:

>> >Put these two lines in your /etc/sysconfig/network file:
>> >
>> >GATEWAY=192.168.1.x (whatever your gateway device's IP is)
>> >GATEWAYDEV=eth0
>> >
>> It was there, but the routing still was not set. 
>
>How about trying these at the command line (change the IPs to suit):
>
>/sbin/ifconfig eth0 192.168.1.2 netmask 255.255.255.0 broadcast
>192.168.1.255
>/sbin/route add default gw 192.168.1.1

Actually these commands have been working fine. The problem is these have
to be done manually upon restart. I just wondering where will be the good
place to put it so it will be executed on start up.

Thank you.


                                   S P Arif Sahari Wibowo
  _____  _____  _____  _____ 
 /____  /____/ /____/ /____           [EMAIL PROTECTED]
_____/ /      /    / _____/          http://spas.8m.com/


------------------------------

From: [EMAIL PROTECTED] (Rod Smith)
Subject: Re: D-Link NIC
Date: Thu, 17 Jun 1999 15:47:40 GMT
Reply-To: [EMAIL PROTECTED]

[Posted and mailed]

In article <7kb3dc$t66$[EMAIL PROTECTED]>,
        "Rick Ridzon" <[EMAIL PROTECTED]> writes:
> I bought a D-Link DFE530-tx NIC and want to configure it for RedHat 6.0.  I
> found the source to the driver on Donald Becker's site but I'm not too
> affluent with the compiler.  Can someone point me to binary version of this
> driver or explain the steps needed to compile and install this driver.

My suggestion is that you upgrade to a 2.2.x kernel, since the VIA Rhine
driver needed for this board comes with the more recent kernels.  If
you're doing IP masquerading or certain other things, though, you might
need to reconfigure these items.  This probably won't be an issue, though.

-- 
Rod Smith
[EMAIL PROTECTED]
http://www.channel1.com/users/rodsmith
NOTE: Remove the "uce" word from my address to mail me

------------------------------

From: billpiasecki <[EMAIL PROTECTED]>
Crossposted-To: linux.redhat
Subject: Re: Linux to replace NT Server
Date: Tue, 22 Jun 1999 08:10:36 -0700

Steve Bui wrote:Hi everyone,

>         I am trying to find out how to setup a linux machine to perform the
> duties of an NT server (i.e. authenticate users, resolve domain names,
> etc) If anyone can help or point me in the right direction, it would be
> greatly appreciated. THanks
>
> --
> Steve

Go to the Linux Documentation Project homepage and start from there. I am not
sure of the url exactly now but if you go to Altavista.com and type in the
above wording, I m sure you will get there. If you still have problems, let me
know.

Bill


------------------------------

From: [EMAIL PROTECTED]
Subject: Need step by step for PCMCIA
Date: Tue, 22 Jun 1999 13:25:01 GMT

Help!!  I am trying to get RedHat 5.2 to work
with my PCMCIA card in my laptop.  Can someone
give me step by step direction for getting this
to work.  I have read the PCMCIA-HOWTO and have
been slightly successful.  I can get the cardmgr
to start but cant get further.  HELP!!!

Thanks in advance!!



Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.

------------------------------

From: [EMAIL PROTECTED] (Monte Phillips)
Subject: Re: Need help with configuring system as dial access server and printer  
server.
Date: Tue, 22 Jun 1999 14:05:03 GMT

For file and print sharing you install samba
http://www.sfu.ca/~yzhang/linux/samba/index.html
and this one as well
http://home.talkcity.com/MigrationPath/maguai/samba.html
These sites singly or in combination are nearly guaranteed to get you
networked.

For the dialup share you need to read the IPMasquarade HOW-TO etc.
that should do the trick


David Hodge <[EMAIL PROTECTED]> wrote:
>I have small network set up in my home. My intentions are to setup a
>print server / WEB access for
>my family 
>
>Note my wife and daughter will be using Win95 systems for there personal
>computer, while my son
>and myself will be using the LINUX systems. The server of course will be
>Slackware v4.0 .
>
>Thank much in advance.
>
>Dave Hodge ..8^)
>[EMAIL PROTECTED]


------------------------------

From: [EMAIL PROTECTED] (Monte Phillips)
Subject: Re: Linux networking newbie
Date: Tue, 22 Jun 1999 14:14:02 GMT

http://www.sfu.ca/~yzhang/linux/samba/index.html
and this one as well
http://home.talkcity.com/MigrationPath/maguai/samba.html

These sites singly or in combination are nearly guaranteed to get you
networked.

>On Tue, 22 Jun 1999 11:46:56 +0200, Anthony <[EMAIL PROTECTED]> wrote:
>I've recently purchased a laptop and I want to be able to
>connect it on my linux box which is in turn connected
>to Internet via ISP (DHCP).
>Of course, I read many of the linux network documentation 
>pages available on the internet but I found them too 
>general. What I need is a step by step tutorial because
>I'm absolutely new to networking. 
>So if you've got any suggestions ...


------------------------------

From: Sven Holz <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux.mandrake
Subject: Re: Setting up Linux to share PPP connection...
Date: Tue, 22 Jun 1999 16:37:52 +0200

If you want the other Compis to use INet, you have to install a proxy
server on your Linuxrouter or you use the IP-Masquerading (best is to
use both, the proxy for better performance).

the reason is, that the your Ip-Adresses are not official INet-Addresses
which can be routed over your ISP so you have to use a trick, best is
you reads the manuals about squid (proxy) and firewalling (masquerading
s a package from the firewall-packet)

Hope it works

c ya

xylus

------------------------------

From: Vidar Madsen <[EMAIL PROTECTED]>
Subject: Announcement: Bandwidth patch for ProFTPD
Date: 22 Jun 1999 14:41:39 GMT

Hi all. 

This is not strictly Linux-related as such, but someone might find it
handy nevertheless.

I just finished a small patch for ProFTPD v1.2.0pre3 that allows
one to specify the maximum allowed bandwidth taken by each connection.
(I.e. it can protect you from being swamped by a single user.)

If you want to check it out, have a look at
  http://www.prosalg.no/~vidar/proftpd/

I hope someone finds it useful - I do, because I was quite sick of
spending hours on the net trying to find something like this. :-)

Thanks,
Vidar


------------------------------

From: "Carl R. Friend" <[EMAIL PROTECTED]>
Subject: Re: DNS related problems
Date: Tue, 22 Jun 1999 14:46:19 +0000

theoldman wrote:
> 
>  As far as IP-Masquerading is concerned, I have implemented all of the
> steps listed in the HOWTO and other posts but I can still not get
> beyond he point I described in my <long> call for help.

   Have you issued the

   "ipfwadm -F -a -m -S <your_net_id> -D 0.0.0.0/0"

command? Note that I'm quoting that from memory (I use ipchains now)
and it may be off somewhat.

   You will also have to set the IP address of the network port on
your private LAN to be the default gateway on the W95 box. Without
that setting, masquerading will not work.

> I am not sure whether I need 'named' to be configured or whether to
> use ipfwadm to achieve my end result which is to be able to access
> the internet from my W95 box and / or my Linux box at the same time.

   You shouldn't need to. Just make sure that the DNS server IP
addresses on the W95 box point off at your ISP's servers and you
should be fine.

-- 
+------------------------------------------------+---------------------+
| Carl Richard Friend (UNIX Sysadmin)            | West Boylston       |
| Minicomputer Collector / Enthusiast            | Massachusetts, USA  |
| mailto:[EMAIL PROTECTED]                |                     |
| http://www.ultranet.com/~crfriend/museum/      | ICBM: N42:21 W71:46 |
+------------------------------------------------+---------------------+

------------------------------

From: Leonid Flaks <[EMAIL PROTECTED]>
Subject: Re: help with dhcpcd setup; Linux RH4.2, dhcpcd v0.70, DHCPNOOFFER
Date: Tue, 22 Jun 1999 10:21:52 -0400

"Crooks, Robert [CAR:9W14:EXCH]" wrote:
> 
> I am having trouble setting up dhcp on my Linux box.  I recently got a
> cable modem and the ISP uses DHCP to setup its clients.  Everything
> works when I define everything statically (resolv.conf, etc.), but when
> I set dhcpcd to execute during boot up it fails with the error:
> DHCPNOOFFER.  Any help would be appreciated.

It all depends on your particular Cable company. I have
Cablevision/@home
and found usefull information at
http://members.home.net/jasonbrossa/Linux

In short I had to use 'dhcpcd -h my_computer_name' to make it work.
It was working with RH 5.2 and works with RH6.0.
The latest RedHat has new utility 'pump', which did not work for me :(
-- 

Leon Flaks

------------------------------

From: Alex Lam <[EMAIL PROTECTED]>
Subject: Re: How to??? - ADSL w/SuSE 6.1
Date: Tue, 22 Jun 1999 07:59:54 -0700



Spicoli wrote:
> 
> Hey all,
> 
> I have ADSL, which works in my other OS, and I can get the Ethernet
> card (it is an Intel Ether Express Pro 100) to be recognized by my
> Linux system but I can't find any documentation in the SuSE manual on
> getting/installing/configuring TCP/IP for the connection.  Without a
> connection to the 'net the system is fun to play with but...
> 
> Anybody know where I can find the information on how to get this
> bugger working?
> 
Just login as root, then use YaST to config the network. Save the
changes, log out from root. Piece of cake. Should takes no more than 2-3
minutes.

Forget the SuSE manuel. It tells you absolute nothing, other than the
initial installation.

Alex Lam.

> Thanks in advance.
> 
> Spicoli
> 
> spicoli at aracnet dot com

-- 
***     ***     ***     ***     ***     ***     ***
Remove all the upper case Xs from my email address if reply by e mail.
**************************************************
*If you receive any spam from my domain name. It's forged.
I DO NOT  send spam e mail. But I've found out that my
domain has been forged many times.
**************************************************

------------------------------

From: "Bob Glover" <app1rtg_at_air.ups.com>
Subject: Re: network interfaces won't activate
Date: Tue, 22 Jun 1999 12:58:54 +0100

If it's an ISA Plug-and-Pray card, then 'man isapnp.conf' or man 'pnpdump'
(or was it 'isapnpdump'?).  The /etc/isapnp.conf file, which may or may not
exist, on your box, applies only to ISA PNP cards.  It does not apply to PCI
cards.  If your NIC is ISA PNP, then you'll need to create the iapnp.conf
file like so:

pnpdump > /etc/isapnp.conf.

Then you must hand-edit the file to use the same settings as the other OS
you dual-boot.  If you don't dual-boot, then just choose settings that don't
conflict.

I'm kind of fuzzy on this, so find and read the man pages.

Also, you should look at 'cat /proc/interrupts', and while you're at it look
at  /proc/dma and just for good measure look at the directory /proc.

Good luck.

>Aris Cruz wrote in message <7k6d5m$iif$[EMAIL PROTECTED]>...
>>I don't know if it will be diff in RedHat, but my SuSE system has the
>>config of the dev @ /etc/rc.config.  But then the rc.config in the
>suse
>>system is just there to set variables, it is finally executed in
>>the /etc/rc.d/network script.  Check your /etc/rc.d.  Sorry I
>couldn't be
>>too specific, but I dropped redhat years ago.
>>
>>Aris
>>YouDontKnowWho wrote:
>>> Which one is the file that contains the actual hardware settings
>for
>>> the card?  I checked in conf.modules but that one doesn't have
>>> anything related to networking.
>>>
>>> --
>>> And now we return to our regularly scheduled,
>>> uncommonly entertaining thread...
>>>
>>> Aris Cruz wrote in message <7k4run$bqf$[EMAIL PROTECTED]>...
>>> >some things you might want to do is first do a dmesg to see if you
>>> system
>>> >sees interface eth0.  If not, edit the file /etc/conf.modules to
>>> reflect
>>> >the correct module for your card.
>>> >for example ne2000 compatible card
>>> >
>>> >alias eth0 ne
>>> >options ne             io=0x300 irq=5
>>> >
>>> >now after a reboot, you should see eth0 when you do a dmesg |more.
>>> >
>>> >From there you can go back to your netconf, or you can do a:
>>> >ifconfig eth0 (ipaddress) (mask)
>>> >
>>> >Hope this helps
>>> >Luke Cyca wrote:
>>> >>
>>> >> I have been having a lot of trouble getting my ethernet card to
>>> work.  It
>>> >> seems to be configured right.  It seems fine in the startup log.
>>> but
>>> >> everytime I look in netcfg, both it (eth0) and the lookback
>>> interface are
>>> >> inactive.  I click activate for both of them and then they say
>they
>>> are
>>> >> active.  I save, quit, open netcfg again, and they are both
>>> inactive
>>> >> again.  Please help.
>>> >>
>>> >> Please reply by email.
>>> >>
>>> >> Thanks.
>>> >> -Luke





------------------------------

From: Nicholas E Couchman <[EMAIL PROTECTED]>
Subject: Re: stupid vnc question
Date: Thu, 17 Jun 1999 07:04:33 GMT

I figured out the three finger solution.  Inside the VNC viewer on NT, click
the menu thing up in the top left hand corner and find the command "send crl +
alt + del".  This should give you some results.
--Nick

mark vann wrote:

> I have installed VNC on several NT boxes at work and on a linux laptop that
> i use to go mobile. My two questions are.....
>    1. is there anyway to make vnc feel as sharp or repond as well as
> terminal server?
> 2. After i install vnc on NT how do I unlock the damn screen when i start a
> sessin. Everytime I do the three finger solute I get my own machine's task
> manager.
>
> Any help would be great.


------------------------------


** 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
******************************

Reply via email to