Linux-Networking Digest #17, Volume #10          Wed, 27 Jan 99 08:13:31 EST

Contents:
  DHCP Linux server and subnets help ([EMAIL PROTECTED])
  Re: Default Gateway interferes with PPP? (David Kirkpatrick)
  Re: Samba Printing ("Jeffrey S. Kline")
  IP Forwarding and Linux 2.2.0 (Darren Ward)
  Re: newbie email-Q, please help: Linux,POP3,fetchmail,sendmail,hostname,FQDN????? 
("Jon Horner")
  Re: Linux in a Token Ring network (Stef)
  multihome routing puzzler (Bob Sutterfield)
  Re:diald- not replacing default route (dizzy)
  dhcpcd refuses to install ("T. Clements")
  Linux as a load balancing router SUGGESTIONS ([EMAIL PROTECTED])
  Re: Reset root Password (Jens Reinsberger)
  is my system overloaded? ("christo")
  security problem (dino)
  Re: SMTP problem, please help (Sam E. Trenholme)
  Re: How do I get my IP addresses in multiple NIC conf. (Lawrence Kirby)

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

From: [EMAIL PROTECTED]
Subject: DHCP Linux server and subnets help
Date: Wed, 27 Jan 1999 01:10:21 GMT

I am setting up a DHCP server on Redhat 5.1 running
ISC DHCPD V2-BETA-1-PATCHLEVEL-6

Our network has a router that seperates our class C ip address in to 4
segments.

The subnetting of each segment occurs every so many IP numbers, fo example:

xxx.xxx.xxx.32 is segment A with a mask of 255.255.255.224
The port for that router segment is xxx.xxx.xxx.33 (i.e. the client's gateway
for that subnet).

and so on.

I set-up the linux server on segment A, and configured a couple of clients to
test it. They have no problems getting IP addresses and info from the server.
But when I have a machine, on say segment C of the router, it doesn't work.

my dhcpd.conf looks like so:

default-lease-time 1000;
max-lease-time 3000;
option domain-name-servers 38.9.215.2, 38.9.225.2;
option domain-name "foobar.com";

shared-network FOOBAR {

        # Router seg. A
        subnet 10.0.1.32 netmask 255.255.255.224 {
                option subnet-mask 255.255.255.224;
                option broadcast-address 10.0.1.63;
                option routers 10.0.1.33;
                range 10.234.100.35 206.234.100.57;
        }
        # Router seq. B
        subnet 10.0.1.64 netmask 255.255.255.192 {
                option subnet-mask 255.255.255.192;
                option broadcast-address 10.0.1.127;
                option routers 10.0.1.65;
                range 10.0.1.81 10.0.1.94;
                range 10.0.1.96 10.0.1.126;
        }

        # Router seg. C
        subnet 10.0.1.128 netmask 255.255.255.192 {
                option subnet-mask 255.255.255.192;
                option broadcast-address 10.0.1.191;
                option routers 10.0.1.128;
                range 10.0.1.131 10.0.1.140;
                range 10.0.1.142 10.0.1.158;
        }
        # Router seg. D
        subnet 10.0.1.192 netmask 255.255.255.192 {
                option subnet-mask 255.255.255.192;
                option broadcast-address 10.0.1.255;
                option routers 10.0.1.192;
                range 10.0.1.209 10.0.1.217;
                range 10.0.1.240 10.0.1.248;
        }
}

When monitoring the server in debug mode I notice it seems to only be
listening to it's own subnet and none of the others.

Any help would be greatly appreciated.

thanks,

colins stefani
[EMAIL PROTECTED]

============= Posted via Deja News, The Discussion Network ============
http://www.dejanews.com/       Search, Read, Discuss, or Start Your Own    

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

From: David Kirkpatrick <[EMAIL PROTECTED]>
Subject: Re: Default Gateway interferes with PPP?
Date: Tue, 26 Jan 1999 20:15:38 +0000
Reply-To: [EMAIL PROTECTED]

PPP0 wants to use it so it will work.  Do a route and you can see
it.
It is your network device and it is our gateway to the internet. 
Do
an ifconfig -a after ppp0 comes up.

Darren Enns wrote:
> 
> This is what my laptop Linux 'netup' script looks
> like:
> 
> insmod 8390
> MODPATH=/lib/modules/2.0.34/net:/lib/modules/2.0.34/pcmcia
> export MODPATH
> insmod pcnet_cs
> ifconfig eth0 inet 192.168.0.3 netmask 255.255.255.0 up
> route add -net 192.168.0.0 netmask 255.255.255.0 eth0
> #route add default gw 192.168.0.2 eth0
> /usr/sbin/routed
> 
> I noticed that I could not have BOTH my PPP connection
> running *and* a local network running if I had that
> 'route add default gw...' stuff.  So I commented it
> out and it works fine.
> 
> Could someone explain in 'easy' terms why this is so?
> I am also very fuzzy on the 'routed' stuff.
> 
> Thanks
> 
> Dare
> --
> Darren Enns
> EMAIL: [EMAIL PROTECTED]
> HTTP:  www.pangea.ca/~dmenns

-- 
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]

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

From: "Jeffrey S. Kline" <[EMAIL PROTECTED]>
Subject: Re: Samba Printing
Date: Tue, 26 Jan 1999 19:03:15 -0600

If your using Redhat, this should be a snap as you use printtool to set up
what kind of printer it is. Then make sure you have proper entries inthe
"hosts" files, and refer to it as the name found in the share'ed as dialog
in the Win98. It's easier if you put it on a linux box and share it from
there to the Windows boxes as I did on mine. WOrks much nicer and you can
also provide a printcap that can be shared as an HP Laserjet using
postscript!.

Networking is probably the biggest issue. If it' aint' talkin', nothing
jive'n.
Use the print tool if your on that. If not, then yes, I might send you a
copy of my printcap but I suspect you may have other issues.

Jeff


geoffrey george hing wrote:

> Hello,
>
> I am trying to set up printing from my linux box to a HP Inkjet printer
> attached to a Win '98 box.  I assume the best way to do this is through
> smbclient.  However, I have followed the directions in the how-to on the
> LDP page and it is still very broken.  I would appreciate it if anyone
> who got this set up could tell me any special steps that they had to
> take or send me a copy of their /etc/printcap file and their
> /usr/bin/smbprint files to see what they did.
>
> Thanks,
> Geoff


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

From: Darren Ward <[EMAIL PROTECTED]>
Subject: IP Forwarding and Linux 2.2.0
Date: Wed, 27 Jan 1999 22:48:02 +1100

Hi All, 

Since upgrading to 2.2.0 kernel IP forwarding is broken.

The server can see the internet and the clients can see the server (and
have default routes to it) but no forwarding seems to be happening...

I also can't seem to find ip forwarding in the make menuconfig 

Any pointers?

Darren

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

From: "Jon Horner" <[EMAIL PROTECTED]>
Subject: Re: newbie email-Q, please help: 
Linux,POP3,fetchmail,sendmail,hostname,FQDN?????
Date: Mon, 25 Jan 1999 15:08:15 -0500

If your ISP already has an smtp and pop server going, you shouldn't really
need to have your own running.  If you do, why are you trying to connect
your smtp server to their pop server?  I usually just connect to their smtp
to send outgoing mail, and to the pop server to receive mail.  I wouldn't
recommend trying to serve your own smtp if you don't have a set IP.  Again,
I could be wrong. . .

Jon.

[EMAIL PROTECTED] wrote in message
<78hemn$9ao$[EMAIL PROTECTED]>...
>
>
>Hi linux-users!
>
>I'm quite new to Linux and certainly no expert of TCP/IP and so on.
>I've learned a lot the past couple of days, but now I'm really stuck.
>So, probably I'm about to ask a FAQ, but I can't find the information
>I need on dejanews, nor in the Linux faq, HOWTO's etcetera.
>Here it goes:
>
>a- I like to send and receive email on my linux box.
>b- I have Red Hat 5.1; sendmail, procmail, fetchmail installed.
>c- I have an ISP with a pop3 server, ppp connection working.
>
>So far I can contact the pop3 server of my ISP (using fetchmail), but
cannot
>establish a SMTP connection between the pop3 server of the ISP and my linux
>box, to transfer the mail to my computer.
>
>The questions that arise:
>
>1) I get a dynamic IP number: what should I choose as a hostname?
>   (If I choose 'somename' as hostname, and do a "nslookup
>   somename.my.isp.domain" from another host (with fixed internet
connection)
>   it cannot find it. Does this mean that the hostname I chose doesn't
>   have any meaning whatsoever?). If I do 'nslookup <my-dynamic-ip-nr>'
>   I get some cryptic name, not related to the hostname I chose.
>2) How should I 'activate' port 25 on my linux box for accepting mail by
SMTP?
>   (Should I do that in the first place?) (for instance my /etc/host.deny
>   says "ALL: ALL", does that mean that I do not accept 'connections' on
>   port 25?)
>3) Should I run sendmail as a daemon to accept incoming SMTP traffic at
>   port 25? How to do that on a RedHat installation?
>4) How do I tell (through fetchmail) that the pop3 server should
>   send my mail to my humble linux box. Probably something different
>   than my chosen hostname as mentioned in point 1 above.....? If I use
>   the name found by 'nslookup <my-dynamic-internet-ip-nr>' it does not
>   work either. Should that normally work?
>5) If I specify the ISP's domain name (e.g. by RedHat's netcfg-tool) it
>   shows up in /etc/resolv.conf (in the line "search my.isp.name").
>   However, if I send mail to a non-local email adress in the 'From'
>   field only 'user@somename' shows up, so not a FQDN.
>   Making a /etc/mailname file with the ISP domain name (as sugessted
>   in the ISP-hookup-HOWTO) didn't change this.
>6) How can I (using sendmail) have my email adress at my ISP in the
>   'From' and 'Reply-to' fields of my sent emails, so that recipients
>   can easily reply. (instead of the 'user@somename' as mentioned under
>   number 5).
>
>Thanks in advance for any help! Please send copy of the usenet replies to:
>"joost . willemen @ rt . bosch . de" (please remove the whitespaces
>inbetween). (I don't have a usenet client installed yet..... Probably next
>questions).
>
>Best regards,
>
>Joost
>
>
>-----------== Posted via Deja News, The Discussion Network ==----------
>http://www.dejanews.com/       Search, Read, Discuss, or Start Your Own



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

From: Stef <[EMAIL PROTECTED]>
Subject: Re: Linux in a Token Ring network
Date: 27 Jan 1999 12:56:21 +0100

: Is there anybody who installed a Linux machine in Token Ring network?
: Which network card do you use and how did you install the drivers?

Yes. I use an old Token Ring adapter with IBM chips on it (don't know
the exact type of the card), together with the ibmtr module.
One thing I noticed is, that I could not configure the card until it
was connected to the network. But still you should be able to insert
the ibmtr module.
There is also a mailinglist for Token Ring on linux:
Send an e-mail with the line
subscribe linux-tr
in the body to [EMAIL PROTECTED]

Stef
-- 
WebMaster D-WERK
UNIX and Windows NT administration, SOS-ETH 
ETH Zurich
[EMAIL PROTECTED]        http://hoes.li

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

From: Bob Sutterfield <[EMAIL PROTECTED]>
Crossposted-To: revue.linux-net
Subject: multihome routing puzzler
Date: 27 Jan 1999 12:55:56 +0100

We're using RedHat 5.2 (kernel 2.0.36) with the SDL Frame Relay driver
installed for a Riscom N2 card.  We also have two NICs, eth1 to a /25
net, and eth0 to two /24 nets that share the same LAN cable.  So there
are really four nets here, with three different physical interfaces.

THE PROBLEM:

[root@gw bob]# /usr/sbin/traceroute 204.31.147.5
traceroute: Warning: Multiple interfaces found; using 204.31.147.10 @
eth0
traceroute to 204.31.147.5 (204.31.147.5), 30 hops max, 40 byte packets
 1  abraham.xc.org (204.31.147.5)  1.161 ms  0.375 ms  0.345 ms
[root@gw bob]# /usr/sbin/traceroute 207.2.31.66
traceroute: Warning: Multiple interfaces found; using 204.31.147.10 @
eth0
traceroute to 207.2.31.66 (207.2.31.66), 30 hops max, 40 byte packets
 1  207.93.223.161 (207.93.223.161)  94.631 ms  526.631 ms  65.710 ms
 2  ont-ca-gw1.netcom.net (163.179.42.1)  48.394 ms  52.773 ms  41.734
ms
 3  h1-0-28-lax-ca-gw1.netcom.net (165.236.27.209)  63.913 ms  46.626
ms  52.457 ms
^C
[root@gw bob]#

THE QUESTION:

How can I turn the route that looks like
 207.2.31.209    0.0.0.0         255.255.255.255 UH     1500 0         0
eth0:0
into
 207.2.31.0      0.0.0.0         255.255.255.0   U      1500 0         0
eth0:0
so that packets between 234.56.78.128/25 and 207.2.31.0/24 travel
through eth0:0 rather than through fr0?

CONFIG INFO:

[root@gw bob]# /sbin/ifconfig -a
lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Bcast:127.255.255.255  Mask:255.0.0.0
          UP BROADCAST LOOPBACK RUNNING  MTU:3584  Metric:1
          RX packets:406 errors:0 dropped:0 overruns:0 frame:0
          TX packets:406 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0

eth0      Link encap:Ethernet  HWaddr 00:60:67:31:16:0D
          inet addr:204.31.147.10  Bcast:204.31.147.255
Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:76880 errors:0 dropped:0 overruns:0 frame:0
          TX packets:72934 errors:3 dropped:0 overruns:0 carrier:3
          collisions:14790
          Interrupt:11 Base address:0xec00

eth0:0    Link encap:Ethernet  HWaddr 00:60:67:31:16:0D
          inet addr:207.2.31.209  Bcast:207.2.31.255 Mask:255.255.255.0
          UP BROADCAST RUNNING  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0

eth1      Link encap:Ethernet  HWaddr 00:03:C6:01:03:1C
          inet addr:234.56.78.129  Bcast:234.56.78.255
Mask:255.255.255.128
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:73192 errors:0 dropped:0 overruns:0 frame:0
          TX packets:72313 errors:0 dropped:0 overruns:0 carrier:0
          collisions:44
          Interrupt:10 Base address:0x300

fr0       Link encap:Point-to-Point Protocol
          inet addr:207.93.223.205  P-t-P:192.168.9.2 Mask:255.255.255.0
          UP POINTOPOINT RUNNING NOARP  MTU:1500  Metric:1
          RX packets:1319 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1496 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0

fr1       Link encap:Point-to-Point Protocol
          inet addr:0.0.0.0  P-t-P:0.0.0.0  Mask:0.0.0.0
          POINTOPOINT NOARP  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0

[root@gw bob]#


[root@gw bob]# netstat -rn
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window irtt
Iface
207.2.31.209    0.0.0.0         255.255.255.255 UH     1500 0         0
eth0:0
192.168.9.2     0.0.0.0         255.255.255.255 UH     1500 0         0
fr0
207.93.223.161  0.0.0.0         255.255.255.255 UH     1500 0         0
fr0
234.56.78.128   0.0.0.0         255.255.255.128 U      1500 0         0
eth1
204.31.147.0    0.0.0.0         255.255.255.0   U      1500 0         0
eth0
127.0.0.0       0.0.0.0         255.0.0.0       U      3584 0         0
lo
0.0.0.0         207.93.223.161  0.0.0.0         UG     1500 0         0
fr0
[root@gw bob]#

[root@gw bob]#  diff /etc/sysconfig/network-scripts/ifcfg-eth0{,:0}
1c1
< DEVICE="eth0"
---
> DEVICE="eth0:0"
4c4
< IPADDR="204.31.147.10"
---
> IPADDR="207.2.31.209"
[root@gw bob]#

[root@gw bob]# cat /etc/sysconfig/static-routes
any net 204.31.147.0 netmask 255.255.255.0 gw 204.31.147.10
any net 207.2.31.0   netmask 255.255.255.0 gw 207.2.31.209
[root@gw bob]#

Any suggestions are welcome!
-- 
Bob Sutterfield            +1 909 794 1151
Mission Aviation Fellowship / MAFlink Tech
mailto:[EMAIL PROTECTED]    http://www.XC.Org/bob
     Pray Globally - Serve Locally
-
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to [EMAIL PROTECTED]

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

From: dizzy <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.help,comp.os.linux.setup
Subject: Re:diald- not replacing default route
Date: Sun, 24 Jan 1999 18:24:33 -0500

David Kirkpatrick wrote:

> Is our default route open for ppp0 to use or is ie specified
> somewhere?  It should be available

#######################################
output from route -n
Destination        Gateway                Genmask                 Flags
Metric Ref   Use Iface
192.68.1.9         0.0.0.0                255.255.255.255      UH
0        0      0 dummy0
192.68.1.0         0.0.0.0                255.255.255.0
U         0        0      0 eth0
127.0.0.0           0.0.0.0                255.0.0.0
U         0        0      0 lo
########################################
etc/suseppp/generic.options

/dev/ttyS0
19200
crtscts
lock
name "my username"
noipdefault
defaultroute
debug
############################################
/etc/suseppp/diald/generic.diald

device /dev/ttyS0
-mppp
two-way
local 127.0.0.3
remote 127.0.0.2
reroute
defaultroute
dynamic
disconnect-timeout 120
redial-timeout 30
dial-fail-limit 5
fifo /var/run/diald/ctl
#####################################################
this is from dialing up w/o diald
ifconfig
lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Bcast:127.255.255.255  Mask:255.0.0.0
          UP BROADCAST LOOPBACK RUNNING  MTU:3584  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0
          TX packets:0 errors:0 dropped:0 overruns:0

dummy0    Link encap:10Mbps Ethernet  HWaddr 00:00:00:00:00:00
          inet addr:192.68.1.9  Bcast:192.68.1.255  Mask:255.255.255.0
          UP BROADCAST RUNNING NOARP MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0
          TX packets:0 errors:0 dropped:0 overruns:0

eth0      Link encap:10Mbps Ethernet  HWaddr 00:40:05:2F:54:3F
          inet addr:192.68.1.9  Bcast:192.68.1.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:24 errors:0 dropped:0 overruns:0
          TX packets:13 errors:0 dropped:0 overruns:0
          Interrupt:3 Base address:0x300

ppp0      Link encap:Point-Point Protocol
          inet addr:209.66.144.194  P-t-P:209.66.144.129
Mask:255.255.255.0
          UP POINTOPOINT RUNNING  MTU:1500  Metric:1
          RX packets:10 errors:0 dropped:0 overruns:0
          TX packets:19 errors:0 dropped:0 overruns:0
################################################################

tail -f /var/log/messages
the first message is the original problem...
the following 2 are NEW problems any help would be appreciated!!!!!
#################################################################

Jan 24 13:33:56 Serina pppd[188]: rcvd [LCP ProtRej id=0xe3 80 2b 01 01
00 18 01 06 00 00 00 00 02 08 00 00 62 9f 18 87 04 04 00 02 06 02]
Jan 24 13:33:56 Serina pppd[188]: rcvd [IPCP ConfAck id=0x2 <addr
209.66.145.141> <compress VJ 0f 01>]
Jan 24 13:33:56 Serina pppd[188]: local  IP address 209.66.145.141
Jan 24 13:33:56 Serina pppd[188]: remote IP address 209.66.145.130

Jan 24 13:33:56 Serina pppd[188]: ppp not replacing existing default
route to sl0[0.0.0.0]

Jan 24 13:34:55 Serina diald[109]: failed to set terminal attributes:
Invalid argument
Jan 24 13:34:56 Serina diald[109]: failed to set terminal attributes:
Invalid argument
Jan 24 13:34:56 Serina diald[109]: Running connect (pid = 194).
Jan 24 13:34:56 Serina chat[194]: Can't set terminal parameters: Invalid
argument
Jan 24 13:34:56 Serina diald[109]: Connect script failed.
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

Jan 24 18:25:35 Serina kernel: SLIP: version
0.8.4-NET3.019-NEWTTY-MODULAR (dynamic channels, max=256) (6 bit
encapsulation enabled).
Jan 24 18:25:35 Serina kernel: SLIP linefill/keepalive option.
Jan 24 18:25:47 Serina login[141]: ROOT LOGIN on `tty1'
Jan 24 18:26:37 Serina diald[109]: Running connect (pid = 160).
Jan 24 18:26:47 Serina login[142]: ROOT LOGIN on `tty2'
Jan 24 18:27:04 Serina diald[109]: Running pppd (pid = 169).
Jan 24 18:27:06 Serina kernel: PPP: version 2.2.0 (dynamic channel
allocation)
Jan 24 18:27:06 Serina kernel: PPP Dynamic channel allocation code
copyright 1995 Caldera, Inc.
Jan 24 18:27:06 Serina kernel: PPP line discipline registered.
Jan 24 18:27:06 Serina kernel: registered device ppp0
Jan 24 18:27:06 Serina pppd[169]: pppd 2.2.0 started by root, uid 0
Jan 24 18:27:06 Serina pppd[169]: Using interface ppp0
Jan 24 18:27:06 Serina pppd[169]: Connect: ppp0 <--> /dev/ttyS0
Jan 24 18:27:06 Serina pppd[169]: sent [LCP ConfReq id=0x1 <mru 1500>
<magic 0xf21aaea1> <pcomp> <accomp>]
Jan 24 18:27:24 Serina last message repeated 6 times
Jan 24 18:27:26 Serina pppd[169]: Hangup (SIGHUP)
Jan 24 18:27:26 Serina pppd[169]: Modem hangup
Jan 24 18:27:26 Serina pppd[169]: Connection terminated.
Jan 24 18:27:26 Serina pppd[169]: Exit.
Jan 24 18:27:32 Serina diald[109]: Delaying 30 seconds before clear to
dial.
Jan 24 18:28:05 Serina diald[109]: Running connect (pid = 180).
Jan 24 18:29:05 Serina kernel: PPP: ppp line discipline successfully
unregistered
Jan 24 18:29:06 Serina diald[109]: Connect script timed out. Killing
script.
Jan 24 18:29:06 Serina chat[180]: SIGINT
Jan 24 18:29:07 Serina diald[109]: Delaying 30 seconds before clear to
dial.
Jan 24 18:29:46 Serina diald[109]: Running connect (pid = 181).
Jan 24 18:30:13 Serina diald[109]: Running pppd (pid = 182).
Jan 24 18:30:14 Serina kernel: PPP: version 2.2.0 (dynamic channel
allocation)
Jan 24 18:30:14 Serina kernel: PPP Dynamic channel allocation code
copyright 1995 Caldera, Inc.
Jan 24 18:30:14 Serina kernel: PPP line discipline registered.
Jan 24 18:30:14 Serina kernel: registered device ppp0
Jan 24 18:30:14 Serina pppd[182]: pppd 2.2.0 started by root, uid 0
Jan 24 18:30:14 Serina pppd[182]: Using interface ppp0
Jan 24 18:30:14 Serina pppd[182]: Connect: ppp0 <--> /dev/ttyS0
Jan 24 18:30:14 Serina pppd[182]: sent [LCP ConfReq id=0x1 <mru 1500>
<magic 0xd115f95> <pcomp> <accomp>]
Jan 24 18:30:41 Serina last message repeated 9 times
Jan 24 18:30:44 Serina pppd[182]: LCP: timeout sending Config-Requests
Jan 24 18:30:44 Serina pppd[182]: Connection terminated.
Jan 24 18:30:44 Serina pppd[182]: Exit.
Jan 24 18:30:50 Serina diald[109]: Delaying 30 seconds before clear to
dial.
Jan 24 18:31:24 Serina diald[109]: Running connect (pid = 199).
Jan 24 18:31:37 Serina chat[199]: SIGHUP
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

Jan 24 18:43:47 Serina kernel: SLIP: version
0.8.4-NET3.019-NEWTTY-MODULAR (dynamic channels, max=256) (6 bit
encapsulation enabled).
Jan 24 18:43:47 Serina kernel: SLIP linefill/keepalive option.
Jan 24 18:43:55 Serina diald[278]: Running connect (pid = 288).
Jan 24 18:44:23 Serina diald[278]: Running pppd (pid = 290).
Jan 24 18:44:24 Serina kernel: PPP: version 2.2.0 (dynamic channel
allocation)
Jan 24 18:44:24 Serina kernel: PPP Dynamic channel allocation code
copyright 1995 Caldera, Inc.
Jan 24 18:44:24 Serina kernel: PPP line discipline registered.
Jan 24 18:44:24 Serina kernel: registered device ppp0
Jan 24 18:44:24 Serina pppd[290]: pppd 2.2.0 started by root, uid 0
Jan 24 18:44:24 Serina pppd[290]: Using interface ppp0
Jan 24 18:44:24 Serina pppd[290]: Connect: ppp0 <--> /dev/ttyS0
Jan 24 18:44:24 Serina pppd[290]: sent [LCP ConfReq id=0x1 <mru 1500>
<magic 0xacd8649e> <pcomp> <accomp>]
Jan 24 18:44:45 Serina last message repeated 7 times
Jan 24 18:44:47 Serina pppd[290]: Hangup (SIGHUP)
Jan 24 18:44:47 Serina pppd[290]: Modem hangup
Jan 24 18:44:47 Serina pppd[290]: Connection terminated.
Jan 24 18:44:47 Serina pppd[290]: Exit.

>
> >
> > when I request a service such as telnet <my provider in /etc/hosts>
> it
> > triggers diald and sucessfully dials up gives me a local IP and
> remote
> > IP
> > then states
> > "ppp not replacing existing default route to sl0"
> >  "connect script timed out. Killing script"
> > Ive tried to add an IP address in route.conf but it dosent seem to
> make
> > any difference
> > apparently its looking for a replacement route for serial line 0.
> AFAIK
> > this is a ficticioous device linking to ppp.
> > I do have slip running when dials starts <slip keep alive>
> > can someone shed some light to my delimmna?
> > This is on SuSE 5.3 and Ive posted to their list but <nada>
> > this is driving me nuts!!
> > I spent most of the morning serching deja news but diddnt come upp
> with
> > any answers.
> > many thanks
> > rob
> >
> > Linux Home page http://www.connix.com/~dizzy73/LBM.htm
>
> --
> [EMAIL PROTECTED]
> [EMAIL PROTECTED]
> [EMAIL PROTECTED]

--
Linux Home page http://www.connix.com/~dizzy73/LBM.htm



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

From: "T. Clements" <[EMAIL PROTECTED]>
Subject: dhcpcd refuses to install
Date: Sun, 24 Jan 1999 23:32:09 GMT

I am trying to install dhcpcd-1.3.17-pl2 onto 486 DX50 Slackware Ver
2.0.34.  When I do the make I get an error message "Make:***
[udpipgen.o] error 1".  I also tried dhcpcd-1.3.6 and I get the same
thing. I guess it is a setup problem on my behalf but have ran out of
ideas. Can anyone help.  
PS - both my ethers work I can ifconfig them both.

Tom

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

From: [EMAIL PROTECTED]
Subject: Linux as a load balancing router SUGGESTIONS
Date: Wed, 27 Jan 1999 00:47:25 GMT

I work for an ISP in Houston that is upgrading services.  We're
considering a rather radical move for an ISP, using a load balancing
setup for dual T1's.  If anyone has any suggestions for the
possibility of using Linux as the router utilizing BGP4 and OSPF, Id
be thrilled.

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

From: Jens Reinsberger <[EMAIL PROTECTED]>
Subject: Re: Reset root Password
Date: 27 Jan 1999 11:43:27 GMT

Edwin Calimbo <[EMAIL PROTECTED]> wrote:
EC> : His there a way to reset the root password when someone change it in a
EC> : five minutes of inatention ?

EC> : Without reinstalling it all.

Sure you can. Just put in a linux boot disk or cdrom, mount the partition
where your /etc directory resides and delete the encrypted password string
from either your /etc/shadow or your /etc/passwd (depends on whether you
have shadow passwords installed or not)

Then reboot without the boot medium and log in as root without a password.

Bye, Jennes

-- 
"Mami, mir ist ganz schwindlig!"
"Sei still! Das ist erst der Vorwaschgang!"

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

From: "christo" <[EMAIL PROTECTED]>
Subject: is my system overloaded?
Date: Wed, 27 Jan 1999 12:59:01 +0100

i've a linux 2.0.35 running on a double p2 with 128Mb ram and a quantm disk
(server style) of 6 Gbyte.
It performs web and mail server jobs, with apache and sendmail.

After 6 mounth of hard working without any problem i noticed that response
time when you try to connect to any port are getting longer.

my 'messages' is about 6 Mb and my 'access.log' is almost the same.

Could this slow down be caused by the fact it needs to write logs in this
big files?
In this case, can i backup this file and empty them without problems?

If this this is a bad diagnosis, do anyone have suggestions?

Thank you in advance and sorry for my poor english.

    christiano presutti
    istituto per il lavoro
    +39 051 6564241
    fax +39 051 6565425
    [EMAIL PROTECTED]



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

From: dino <[EMAIL PROTECTED]>
Subject: security problem
Date: Wed, 27 Jan 1999 14:20:31 +0100

Hi all,

Jan 25 22:29:24 nyul imapd[4783]: connect from 62.144.130.200

I've got this line in /var/log/secure, and the computer it comes from is
not known by any of the users here...
what even more surprising is that I don't see any messages related to
the login procedure in /var/log/messages, which is usually the case for
normal remote logins

is this some attempt to break in? if so, how can I prevent such things?

                     dino
                     [EMAIL PROTECTED]





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

From: [EMAIL PROTECTED] (Sam E. Trenholme)
Crossposted-To: alt.os.linux,comp.os.linux.misc
Subject: Re: SMTP problem, please help
Date: 26 Jan 1999 18:08:12 -0800

>I have a pop mail server (linux slackware) and 5 NT machines (5
>different users).
>The NT machines are using netscape for downloading emails.

Try using a different popper.  Last time I looked, the popper [pop mail
server] Slackware uses is the UC Davis popper, which has for all intents
and purposes, not been updated in a long time. 

Although there is not freely available popper optimized for security [1],
the latest version of Qpopper is pretty good, and has a lot of features
that the UC Davis popper does not have. 

Another option is the popper included with the Washington University IMAP
server, which looks like it has finally taken care of most of the glaring
security problems earlier versions of the IMAP package had.  The
disadvantage of this popper is that it is a little bigger, and doesn't
have as many features as Qpopper.

Look here for Qpopper:

        ftp://ftp.qualcomm.com

- Sam

[1] That can use ordinary "From space" mailboxes
-- 
Email address here: http://www.samiam.org/ssi/mailme.shtml
Music I write here: http://www.mp3.com/sam http://www.samiam.org/mp3
Mp3 reviews here:   http://www.samiam.org/music

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

From: [EMAIL PROTECTED] (Lawrence Kirby)
Crossposted-To: comp.lang.tcl,comp.lang.c
Subject: Re: How do I get my IP addresses in multiple NIC conf.
Date: Wed, 27 Jan 99 12:14:36 GMT
Reply-To: [EMAIL PROTECTED]

In article <[EMAIL PROTECTED]>
           [EMAIL PROTECTED] "Vladimir Peric" writes:

>Hi,
>is there any machine and OS independent way to get IP addresses in
>multiple NIC configuration without using host names ?

There's machine and OS independent way to get *any* hardware related
information (except perhaps the system time).

-- 
=========================================
Lawrence Kirby | [EMAIL PROTECTED]
Wilts, England | [EMAIL PROTECTED]
=========================================


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


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