Linux-Networking Digest #779, Volume #10          Wed, 7 Apr 99 15:13:48 EDT

Contents:
  IP tunneling problem w/ details ([EMAIL PROTECTED])
  hylafax and mserver (Tobias Hilbert)
  nedit, where to find?? (sn0brdr)
  Proxy client for linux. (Johan Ankarloo)
  free computer2 (webmaster)
  Mail server configuration over NIS (Nicolas Boulard)
  free computer5 (webmaster)
  free computer10 (webmaster)
  free computer11 (webmaster)
  free computer13 (webmaster)
  Re: Unresolved modules (symbols) ("George Georgakis")
  Re: Duplicating an xterm on a remote machine (John F. McKee)
  Re: setting up apache (Holger Haeffelin)
  Re: Apache Virtual Hosting and cgi (Holger Haeffelin)
  Re: Compex ethernet adapter (Daniel Cave)
  Re: TCP Port Reservation!!! (Brian McCauley)
  DNS w/ Intra & Internet (MGruber)
  free computer15 (webmaster)
  Putting Linux on my existing NetWare LAN - questions (Christopher R. Dorr)
  Dial-out from Networked machine thru Linux gateway (John McKee)
  Re: Linux in NT Domain (Tom Betz)
  Re: ipchains-firewall 1.6 problem (mist)
  Where can I find drivers to redhat 5.2 for my network card (Accton (EN1660 PnP Lan 
Card? ("Bert Berg")
  Re: Can I shutdown linux remotely? ("fred")
  Re: Mail server configuration over NIS (Daniel Cave)

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

From: [EMAIL PROTECTED]
Subject: IP tunneling problem w/ details
Date: Wed, 07 Apr 1999 16:35:21 GMT

I was wondering if somebody could help me with an IP tunneling problem.

I have two Linux boxes with kernel 2.2.3 and the requisit networking
options compiled into the kernel with the latest nettools.  My tunnels
on either end, however, just generate errors.  Do I have to specify a
forwarding route in ipchains or something to get packets to use the
tunnel?

I have FORWARD_IPV4=true in /etc/sysconfig/network which seems to be
the equivalent of sticking echo "1" > /proc/sys/net/ipv4/ip_forward
in your startup scripts.

Anything unusual that you notice in here would be greatly appriciated.  I
have been in the "banging my head against the wall" phase for about 4 weeks
now.  I don't know what else to try! :-(

Thanks.

-Steve Maring
Tampa, FL   USA



Here is my setup:

BOX A (x.x.x.50) wants BOX B (x.x.x.134) to ARP PROXY x.x.x.133 on behalf
of BOX A.  Yes, the implementation is trivial, being in the same network, but
the concept is what is important.

BOX A (172.17.42.50):

starts with:
# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
172.17.42.0     0.0.0.0         255.255.255.0   U     0      0        0 eth0
172.17.42.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
0.0.0.0         172.17.42.1     0.0.0.0         UG    0      0        0 eth0

Then I do:

# ifconfig tunl0 172.17.42.133 pointopoint 172.17.42.134
# ifconfig tunl0 netmask 255.255.255.0
# route add 172.17.42.134 dev eth0
# route del -net 172.17.42.0 netmask 255.255.255.0 dev eth0
# route del -net 172.17.42.0 netmask 255.255.255.0 dev eth0
# route del default gw 172.17.42.1
# route add -net 0.0.0.0 netmask 0.0.0.0 dev tunl0

and I get:

# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
172.17.42.134   0.0.0.0         255.255.255.255 UH    0      0        0 eth0
172.17.42.0     0.0.0.0         255.255.255.0   U     0      0        0 tunl0
127.0.0.0       0.0.0.0         255.0.0.0       U     0      0        0 lo
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 tunl0

# ifconfig -a
eth0      Link encap:Ethernet  HWaddr 00:10:5A:0F:DB:A9
          inet addr:172.17.42.50  Bcast:172.17.42.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:5137 errors:0 dropped:0 overruns:0 frame:0
          TX packets:34 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:100
          Interrupt:11 Base address:0xe400

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:3924  Metric:1
          RX packets:18 errors:0 dropped:0 overruns:0 frame:0
          TX packets:18 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0

tunl0     Link encap:IPIP Tunnel  HWaddr
          inet addr:172.17.42.133  Mask:255.255.255.0
          UP RUNNING NOARP  MTU:1480  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 txqueuelen:0

I then attempt to ping an independent box on the network:

# ping -c 1 172.17.42.135
PING 172.17.42.135 (172.17.42.135): 56 data bytes

--- 172.17.42.135 ping statistics ---
1 packets transmitted, 0 packets received, 100% packet loss

# ifconfig tunl0
tunl0     Link encap:IPIP Tunnel  HWaddr
          inet addr:172.17.42.133  Mask:255.255.255.0
          UP RUNNING NOARP  MTU:1480  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:1 dropped:0 overruns:0 carrier:0
          collisions:1 txqueuelen:0

and the really interesting part is:

# traceroute 172.17.42.135
traceroute: Warning: Multiple interfaces found; using 172.17.42.50 @ eth0
traceroute to 172.17.42.135 (172.17.42.135), 30 hops max, 40 byte packets
 1  * * *

Why is it using eth0 at this point?



BOX B starts out with:

# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
172.17.42.0     0.0.0.0         255.255.255.0   U     0      0        0 eth0
172.17.42.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
0.0.0.0         172.17.42.1     0.0.0.0         UG    0      0        0 eth0

then I do:

# ifconfig tunl0 172.17.42.134 pointopoint 172.17.42.50
# ifconfig tunl0 netmask 255.255.255.0
# route add 172.17.42.133 dev tunl0
# arp -s 172.17.42.133 00:60:94:51:F5:AE pub
# route del -net 172.17.42.0 netmask 255.255.255.0 dev tunl0

and I get:

# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
172.17.42.133   0.0.0.0         255.255.255.255 UH    0      0        0 tunl0
172.17.42.0     0.0.0.0         255.255.255.0   U     0      0        0 eth0
172.17.42.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
0.0.0.0         172.17.42.1     0.0.0.0         UG    0      0        0 eth0

# ifconfig -a
lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:3924  Metric:1
          RX packets:18 errors:0 dropped:0 overruns:0 frame:0
          TX packets:18 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0

eth0      Link encap:Ethernet  HWaddr 00:60:94:51:F5:AE
          inet addr:172.17.42.134  Bcast:172.17.42.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:1416 errors:0 dropped:0 overruns:0 frame:0
          TX packets:41 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0
          Interrupt:5 Base address:0xe800

tunl0     Link encap:IPIP Tunnel  HWaddr
          inet addr:172.17.42.134  Mask:255.255.255.0
          UP RUNNING NOARP  MTU:1480  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:1 dropped:0 overruns:0 carrier:0
          collisions:1

# arp -vn Address  HWtype  HWaddress  Flags Mask  Iface 172.17.42.133  *  * 
MP  eth0 Entries: 1  Skipped: 0  Found: 1

# ping -c 1 172.17.42.133
PING 172.17.42.133 (172.17.42.133): 56 data bytes

--- 172.17.42.133 ping statistics ---
1 packets transmitted, 0 packets received, 100% packet loss


# ifconfig tunl0
tunl0     Link encap:IPIP Tunnel  HWaddr
          inet addr:172.17.42.134  Mask:255.255.255.0
          UP RUNNING NOARP  MTU:1480  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:3 dropped:0 overruns:0 carrier:0
          collisions:3

and again:

# traceroute 172.17.42.133
traceroute: Warning: Multiple interfaces found; using 172.17.42.134 @ eth0
traceroute to 172.17.42.133 (172.17.42.133), 30 hops max, 40 byte packets
 1  * * *

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

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

From: Tobias Hilbert <[EMAIL PROTECTED]>
Subject: hylafax and mserver
Date: Wed, 07 Apr 1999 18:56:07 +0200

I run mserver (modemserver) and hylafax at the same time.
when getting the faxqueue it locks the modem. therefore I can't use the
modem for dialout connections with mserver any more.

Does anyone know know a solution for this problem?

Thanx Sebastian


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

From: sn0brdr <[EMAIL PROTECTED]>
Subject: nedit, where to find??
Date: Wed, 07 Apr 1999 12:45:49 -0400

please e-mail me

thanks in advance


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

From: Johan Ankarloo <[EMAIL PROTECTED]>
Subject: Proxy client for linux.
Date: Wed, 07 Apr 1999 13:47:32 +0200

Hi

I have a linux machine connected behinde a MS Proxyserver. Is there
anyway to make the default gateway throw the MS Proxy? All i have found
is how to configure separete package like Netscape and so on. Is there
any solution like there is under windows?


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

From: [EMAIL PROTECTED] (webmaster)
Crossposted-To: 
comp.lang.basic.visual.misc,comp.lang.c,comp.lang.c++,comp.lang.java.programmer,comp.lang.javascript,comp.lang.perl.misc,comp.os.linux.advocacy,comp.os.linux.hardware,comp.os.linux.misc,comp.os.linux.setup,comp.os.os2.advocacy,comp.os.vms,comp.periphs.printers,comp.software.year-2000,comp.sys.amiga.misc,comp.sys.ibm.pc.games.action,comp.sys.ibm.pc.games.flight-sim,comp.sys.ibm.pc.games.rpg,comp.sys.ibm.pc.games.sports,comp.sys.ibm.pc.games.strategic,comp.sys.ibm.pc.hardware.chips
Subject: free computer2
Date: 7 Apr 1999 17:31:52 GMT

Free Computer at http://giveaways.arecool.net

DELL IS GIVING AWAY 500 FREE PENTIUM 500 Computers to celebrate their 5th 
anniversary.

Hurry and if you are one of the first 500 people you win a new computer!!!


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

From: Nicolas Boulard <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup
Subject: Mail server configuration over NIS
Date: Wed, 07 Apr 1999 11:29:39 +0000
Reply-To: [EMAIL PROTECTED]

Hi

I'm trying to configure a mail server on a brand new Debian 2.1 server.
The server is part of a bigger and older installation with 2 DEC Alpha
running OSF/2. One of those server is the master server of our NIS, and
all the others fetch the accounting information from it.

So far it worked well. But I can't figure how to set up the mail server
on the new Linux box. I tried just mounting /var/spool/mail, but there
are a couple of problems, mainly regarding security and with the mail of
the root account. 

I'd like to keep some users locally, so I want the server to manage
local mail, as well as NIS mail. 

If anyone has any information on that point, I'll be glad to know. I
have no preference upon the mail transport agent to use (sendmail or
smail or exim...  whichever...)

Regards,

Nicolas Boulard
Universit� de Poitiers, France.

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

From: [EMAIL PROTECTED] (webmaster)
Crossposted-To: 
comp.lang.basic.visual.misc,comp.lang.c,comp.lang.c++,comp.lang.java.programmer,comp.lang.javascript,comp.lang.perl.misc,comp.os.linux.advocacy,comp.os.linux.hardware,comp.os.linux.misc,comp.os.linux.setup,comp.os.os2.advocacy,comp.os.vms,comp.periphs.printers,comp.software.year-2000,comp.sys.amiga.misc,comp.sys.ibm.pc.games.action,comp.sys.ibm.pc.games.flight-sim,comp.sys.ibm.pc.games.rpg,comp.sys.ibm.pc.games.sports,comp.sys.ibm.pc.games.strategic,comp.sys.ibm.pc.hardware.chips
Subject: free computer5
Date: 7 Apr 1999 17:33:01 GMT

Free Computer at http://giveaways.arecool.net

DELL IS GIVING AWAY 500 FREE PENTIUM 500 Computers to celebrate their 5th 
anniversary.

Hurry and if you are one of the first 500 people you win a new computer!!!


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

From: [EMAIL PROTECTED] (webmaster)
Crossposted-To: 
comp.lang.basic.visual.misc,comp.lang.c,comp.lang.c++,comp.lang.java.programmer,comp.lang.javascript,comp.lang.perl.misc,comp.os.linux.advocacy,comp.os.linux.hardware,comp.os.linux.misc,comp.os.linux.setup,comp.os.os2.advocacy,comp.os.vms,comp.periphs.printers,comp.software.year-2000,comp.sys.amiga.misc,comp.sys.ibm.pc.games.action,comp.sys.ibm.pc.games.flight-sim,comp.sys.ibm.pc.games.rpg,comp.sys.ibm.pc.games.sports,comp.sys.ibm.pc.games.strategic,comp.sys.ibm.pc.hardware.chips
Subject: free computer10
Date: 7 Apr 1999 17:34:24 GMT

Free Computer at http://giveaways.arecool.net

DELL IS GIVING AWAY 500 FREE PENTIUM 500 Computers to celebrate their 5th 
anniversary.

Hurry and if you are one of the first 500 people you win a new computer!!!


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

From: [EMAIL PROTECTED] (webmaster)
Crossposted-To: 
comp.lang.basic.visual.misc,comp.lang.c,comp.lang.c++,comp.lang.java.programmer,comp.lang.javascript,comp.lang.perl.misc,comp.os.linux.advocacy,comp.os.linux.hardware,comp.os.linux.misc,comp.os.linux.setup,comp.os.os2.advocacy,comp.os.vms,comp.periphs.printers,comp.software.year-2000,comp.sys.amiga.misc,comp.sys.ibm.pc.games.action,comp.sys.ibm.pc.games.flight-sim,comp.sys.ibm.pc.games.rpg,comp.sys.ibm.pc.games.sports,comp.sys.ibm.pc.games.strategic,comp.sys.ibm.pc.hardware.chips
Subject: free computer11
Date: 7 Apr 1999 17:34:32 GMT

Free Computer at http://giveaways.arecool.net

DELL IS GIVING AWAY 500 FREE PENTIUM 500 Computers to celebrate their 5th 
anniversary.

Hurry and if you are one of the first 500 people you win a new computer!!!


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

From: [EMAIL PROTECTED] (webmaster)
Crossposted-To: 
comp.lang.basic.visual.misc,comp.lang.c,comp.lang.c++,comp.lang.java.programmer,comp.lang.javascript,comp.lang.perl.misc,comp.os.linux.advocacy,comp.os.linux.hardware,comp.os.linux.misc,comp.os.linux.setup,comp.os.os2.advocacy,comp.os.vms,comp.periphs.printers,comp.software.year-2000,comp.sys.amiga.misc,comp.sys.ibm.pc.games.action,comp.sys.ibm.pc.games.flight-sim,comp.sys.ibm.pc.games.rpg,comp.sys.ibm.pc.games.sports,comp.sys.ibm.pc.games.strategic,comp.sys.ibm.pc.hardware.chips
Subject: free computer13
Date: 7 Apr 1999 17:34:47 GMT

Free Computer at http://giveaways.arecool.net

DELL IS GIVING AWAY 500 FREE PENTIUM 500 Computers to celebrate their 5th 
anniversary.

Hurry and if you are one of the first 500 people you win a new computer!!!


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

From: "George Georgakis" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.misc,alt.os.linux
Subject: Re: Unresolved modules (symbols)
Date: 7 Apr 1999 12:46:42 GMT

Don't forget to move your old /lib/modules/2.x.x to another directory too
(like /lib/modules/2.x.x.old)

George-- 
===========================================================================
I never reply by email as a) I don't give out my real email address freely,
and b) it stops other NG users from reading the solutions to problems
I can be contacted thru hurro(a)hotmail.com
===========================================================================

Walter L. Williams <[EMAIL PROTECTED]> wrote in article
<[EMAIL PROTECTED]>...
> 
> 
> Yan Seiner wrote:
> 
> > Make mrproper basically hoses all changes you had made to the system.
> > You need to follow that up with a make config ; make modules ; make
> > modules_install ; make zImage.
> >
> > It sounds like you left out the make modules or make modules_install
> > steps.
> >
> > Yan
> >
> 
> Your right, I did'nt do that. Thanks for the info.
> 
> Walt in Utah
> 
> 

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

From: John F. McKee <[EMAIL PROTECTED]>
Subject: Re: Duplicating an xterm on a remote machine
Date: Wed, 7 Apr 1999 13:37:01 -0400

I think VNC will do this (and more) for you.

See:
http://uk.research.att.com

On Wed, 07 Apr 1999, Louis Boyd
wrote: >Does anyone know of a method or a utility to create a duplicate xterm
>window on a remote machine of a process running in an xterm on a local
>machine such that both the local and remote machine display the same
>information  and allow keyboard input to the running process from either
>the local or remote machine.  
>
>It would be most useful if the remote machine could be attached and
>detached without disturbing the process on the local machine.
>
>Lou Boyd
>Fairborn Observatory

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

Date: Wed, 07 Apr 1999 19:11:43 +0200
From: Holger Haeffelin <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Subject: Re: setting up apache

Are you sure, that your network card is set up properly ???

grettings, Holger

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

Date: Wed, 07 Apr 1999 19:13:57 +0200
From: Holger Haeffelin <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Subject: Re: Apache Virtual Hosting and cgi

Try 

ScriptAlias /cgi-bin/ /home/...../cgi/

in the VirtualHost entry in your httpd.conf . You can set up the path to
your cgis for each virtual host separately.

Greetings,
Holger

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

From: Daniel Cave <[EMAIL PROTECTED]>
Subject: Re: Compex ethernet adapter
Date: Wed, 07 Apr 1999 15:22:29 +0100

Kissandrakis

Try compiling in *all* the network card drivers in your linux kernel and
reboot after you've recompiled and see whether the card is detected
using anther driver (using a common chipset)


> Hello
> I try to detect an ethernet adapter under Redhat 5.2 with 2.0.36 and
> 2.2.3
> the card is Compex RL100-TX/PCI  (REV H5)
> I tryied ne2000 and ne2k-pci and to Other ISA cars Y but i still cant
> detect it
> the /proc/pci
>
> Bus 0, device 16, function 0
> ethernet controller: Compex Unknown device (rev 0).
> vendor id=11f6, device id = 9881
> Medium devsel . Fast back-to-back capabla, IRQ 9. Master capable,
> Latency=32
> I/O at 0x6500
> Non-prefetchable 32 bit memory at 0xe4000000
>
> in the /proc/interrupts there is nowhere IRQ 9
> in the /proc/ioports in not in.
>
> Also tryied /etc/conf.modules....
>
> the message in dmesg is
> Delaying eth0 initilaziation
>
> any suggestions?
> thnx in advance
>
> Kissandrakis George
> [EMAIL PROTECTED]

--

Regards,

Daniel

_______________________________________________________________________________

                        Daniel Cave
        Unix Systems Administrator & Netcool Omnibus Admin
                      Cable Internet,
                    Genesis Business Park
                       Albert Drive
                          Woking
                          Surrey
                        Great Britian
                        KT21  5RW
                  Tel: +44 1483 295 191
                  Fax: +44 1483 295 810




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

From: Brian McCauley <[EMAIL PROTECTED]>
Crossposted-To: comp.unix.questions
Subject: Re: TCP Port Reservation!!!
Date: 07 Apr 1999 18:50:32 +0100

[EMAIL PROTECTED] writes:

> is there some way/mechanism (without a kernel hack), to reserve
> a bunch of say 400 odd ports (TCP) on a machine (say any flavor
> of UNIX, incl. Linux), to be used as server ports (the non-well-
> known ports)... eg. if my server listens on say port 1000, can
> i have 10 threads waiting to serve with port numbers reserved
> as 5000-5010 (and the rest, with out an associated thread),
> reserved, say 5011-5200) ?

No, I don't think you can do this (except by having a lot of open
sockets).

Could you explain why you think you want to do this?  Maybe we can
explain how you can avoid the need.

Thread relocated to comp.unix.questions as this has nothing to do with
Linux if you want a portable solution.

-- 
     \\   ( )  No male bovine  | Email: [EMAIL PROTECTED]
  .  _\\__[oo   faeces from    | Phones: +44 121 471 3789 (home)
 .__/  \\ /\@  /~)  /~[   /\/[ |   +44 121 627 2173 (voice) 2175 (fax)
 .  l___\\    /~~) /~~[  /   [ | PGP-fp: D7 03 2A 4B D8 3A 05 37...
  # ll  l\\  ~~~~ ~   ~ ~    ~ | http://www.wcl.bham.ac.uk/~bam/
 ###LL  LL\\ (Brian McCauley)  |

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

From: [EMAIL PROTECTED] (MGruber)
Subject: DNS w/ Intra & Internet
Date: Wed, 07 Apr 1999 13:54:55 -0400

Hi!

Im going to connect our MAN Intranet-Domain (fubar.blah.de) with a 10.114.0.0 
Adressing to the Internet thru a ISP with an official reged Number....
Yeah I know Masquerading and so on, but thats not the point, I have a "simple"
DNS configproblem.


We have our own root-servers which service (de) at 10.25.9.6 such like the
Internetworld.

So my question is, how do I config our local DNS at 10.114.0.40 (for example)
that a user at his machine can also request Internetnames/numbers like 141.64.3.62

So that our DNS-Server know who he must ask for that number, either our 
Root-Server or our INTERNET-DNS. I think about a config like that:

IntranetROOTDNS----OUR DNS ----INTERNETDNS
                     |
                  USer

Useless 2 say that we use a Linux as DNS-Server.


And please reply by Email

Thanx in advance
   Matthias


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

From: [EMAIL PROTECTED] (webmaster)
Crossposted-To: 
comp.lang.basic.visual.misc,comp.lang.c,comp.lang.c++,comp.lang.java.programmer,comp.lang.javascript,comp.lang.perl.misc,comp.os.linux.advocacy,comp.os.linux.hardware,comp.os.linux.misc,comp.os.linux.setup,comp.os.os2.advocacy,comp.os.vms,comp.periphs.printers,comp.software.year-2000,comp.sys.amiga.misc,comp.sys.ibm.pc.games.action,comp.sys.ibm.pc.games.flight-sim,comp.sys.ibm.pc.games.rpg,comp.sys.ibm.pc.games.sports,comp.sys.ibm.pc.games.strategic,comp.sys.ibm.pc.hardware.chips
Subject: free computer15
Date: 7 Apr 1999 17:35:02 GMT

Free Computer at http://giveaways.arecool.net

DELL IS GIVING AWAY 500 FREE PENTIUM 500 Computers to celebrate their 5th 
anniversary.

Hurry and if you are one of the first 500 people you win a new computer!!!


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

From: [EMAIL PROTECTED] (Christopher R. Dorr)
Subject: Putting Linux on my existing NetWare LAN - questions
Date: Wed, 07 Apr 1999 18:12:45 GMT

Hello!

I'm going to be putting a Linux box on my corporate LAN over the next
month or so, and I had a few questions, if anyone could help me.

1. The LAN this is going on is a NetWare 4.11 network, currently
running IPX only. I'm planning on running IPX to the NW box, and IP to
Linux. Any problems with this, or anything I have to watch out for?
Neither server will have to see/use resources (other than the
infrastructure - cables, hubs, etc) on the other. Any problems with
passwords, etc.? Will Linux have any problems seeing the IPX packets,
or will it just ignore them.

2. I'm planning on running SAMBA to about 30-35 Win95/98 machines.
Basic file/print services. I'm also planning IP Masquerading, and
hooking my LAN up to the internet. LAN mail services, and perhaps some
light SQL serving. The machine I'm going to be running it on will be a
Compaq DeskPro Pentium 75 w/ 64MB RAM, and 4+ GB IDE Disk Space. It's
the best I could get right now. Workstation based backups.  Anyone see
any problems with this configuration and this machine?

3. Any particular distributions good for this kind of setup? I've got
SuSE at home, and on my laptop.

As you can tell from my questions, I'm not yet experienced in Linux
networking. I have got a fair handle on basic Linux operations, and I
am pretty experienced with NetWare networking. Any ideas, suggestions,
or comments would be appreciated. Thanks for any help.

Chris Dorr
[EMAIL PROTECTED]

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

From: [EMAIL PROTECTED] (John McKee)
Crossposted-To: comp.os.linux.setup
Subject: Dial-out from Networked machine thru Linux gateway
Reply-To: [EMAIL PROTECTED]
Date: Wed, 07 Apr 1999 18:40:19 GMT

OK, I've finally got IP-Masquerading working on my Linux box (RH 5.1).

Now, what I need to do is have the Linux box initiate a dial-out when one of the other 
network
machines (NT boxes) initiate an internet call.

How do I set that up?


TIA,


John McKee
[EMAIL PROTECTED]

Democracy is three wolves and a sheep voting what to have for lunch.

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

From: [EMAIL PROTECTED] (Tom Betz)
Subject: Re: Linux in NT Domain
Date: 7 Apr 1999 14:41:59 -0400
Reply-To: [EMAIL PROTECTED]

Quoth [EMAIL PROTECTED] in <[EMAIL PROTECTED]>:
|Greg Saunders wrote:
|
|> Does anyone who has travelled this road before have any tips they'd like to
|> share? I'd be especially interested in the following:
|>
|> 1. Can Linux validate users (even just for Samba) through the NT box?
|>
|> 2. Should I run my WINS server on NT or Linux (using RAS on NT for limited
|> dialup)?
|>
|> 3. Does this encrypted password thing really work in Samba?
|>
|> 4. Is there anything which in retrospect I'm likely to feel really stupid
|> about doing?
|
|the obvious config issues for SMB networking for a linux box can be found in
|the SMB-HOWTO

I found John D. Blair's "Samba -- Integrating UNIX and WIndows" to be 
invaluable in sorting out issues that the HOWTO and man pages didn't
address clearly.  

Highly recommended.


-- 
|We have tried ignorance       |            Tom Betz, Generalist               |
|for a very long time, and     | Want to send me email? FIRST, READ THIS PAGE: |
|it's time we tried education. | <http://www.panix.com/~tbetz/mailterms.shtml> |
|<http://www.pobox.com/~tbetz> | YO! MY EMAIL ADDRESS IS HEAVILY SPAM-ARMORED! |

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

From: mist <[EMAIL PROTECTED]>
Subject: Re: ipchains-firewall 1.6 problem
Date: Wed, 7 Apr 1999 14:40:46 +0100
Reply-To: mist <new$[EMAIL PROTECTED]>

Greg Boes <[EMAIL PROTECTED]> scribed to us that -
>Stephen Thomas wrote in message ...

[Firewall not working from ip-up]

Make sure that in ip-up all the commands have a full path - ie

/sbin/ipchains ...

and not just

 ipchains ...

Otherwise they wont work.

You can change the whole lot in vi at once -

vi /etc/ppp/ip-up
 [In vi, at the top of the screen]
[Esc].,$s?ipchains?/sbin/ipchains?
[Esc]:wq

(Assuming ipchains is located in /sbin/ on your system.)

HTH 8-)  (Sorry for following up the wrong post, the original has
expired here.. Catching up with news....)
-- 
Mist.
http://www.misthaven.demon.co.uk/prof/
Short FAQ on Demon and HTML.

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

From: "Bert Berg" <[EMAIL PROTECTED]>
Subject: Where can I find drivers to redhat 5.2 for my network card (Accton (EN1660 
PnP Lan Card?
Date: Wed, 7 Apr 1999 15:32:24 +0200

Where can I find drivers to redhat 5.2 for my network card (Accton (EN1660
PnP Lan Card?

Please send a mail to [EMAIL PROTECTED] if you know!
/Johan



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

From: "fred" <[EMAIL PROTECTED]>
Subject: Re: Can I shutdown linux remotely?
Date: Wed, 7 Apr 1999 23:56:10 +1000

Hi,  If you read the doc's that comes with 5.2, you will find that you can
now use your browser to connect to your Linux Box and shutdown using the
browser.  Very neat trick.


Alan Mead wrote in message <[EMAIL PROTECTED]>...
>[EMAIL PROTECTED] wrote:
>
>> really dont want to login again on the linux and issue a shutdown
command. If
>> I recalled it right, I couldnt do that. linux just doesnt shutdown.
>
>I would be surprised if Linux didn't shutdown.  The syntax can be a
>little tricky until you get used to it, but I assume you got it right.
>
>
>My distribution (rh5.2) has a funny mouse thing:  Linux just woudn't
>shutdown!  But what was happening was that gpm wouldn't end until I
>moved the mouse!  Fine if I'm at the console but a pain in the ass
>remotely.  But if you kill gpm manually and then shutdown it worked
>fine.
>
>-Alan



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

From: Daniel Cave <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup
Subject: Re: Mail server configuration over NIS
Date: Wed, 07 Apr 1999 15:13:55 +0100

Nicolas

>
> I'm trying to configure a mail server on a brand new Debian 2.1 server.
> The server is part of a bigger and older installation with 2 DEC Alpha
> running OSF/2. One of those server is the master server of our NIS, and
> all the others fetch the accounting information from it.
>
> So far it worked well. But I can't figure how to set up the mail server
> on the new Linux box. I tried just mounting /var/spool/mail, but there
> are a couple of problems, mainly regarding security and with the mail of
> the root account.
>

> I'd like to keep some users locally, so I want the server to manage
> local mail, as well as NIS mail.
>

Don't you mean NFS mail rather than NIS?? This is kind of difficult to do
when  you 're using NFS and NIS (which I assume that you are ) becuase
you've got each machine setup as a NIS  & NFS client. I'd configure one of
your machines as a non nis client so that it has its own local passwords
file and selectively mount some NFS mail files on your box..  You might
want to look into the automounter package for linux rather than using
static mounts.

> If anyone has any information on that point, I'll be glad to know. I
> have no preference upon the mail transport agent to use (sendmail or
> smail or exim...  whichever...)
>

have a look at www.qmail.org, this is a very good MTA. (better in *most*
instances than sendmail) Unless you want to use sendmail for address
re-writing.

>
> Regards,
>
> Nicolas Boulard
> Universit� de Poitiers, France.

--

Regards,

Daniel

_______________________________________________________________________________

                        Daniel Cave
        Unix Systems Administrator & Netcool Omnibus Admin
                      Cable Internet,
                    Genesis Business Park
                       Albert Drive
                          Woking
                          Surrey
                        Great Britian
                        KT21  5RW
                  Tel: +44 1483 295 191
                  Fax: +44 1483 295 810




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


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