Linux-Networking Digest #915, Volume #11 Fri, 16 Jul 99 14:13:41 EDT
Contents:
Re: RH6.0-client forget nis-password, when gnome-screen locks (Andreas Metzler)
Re: Odd output from ipchains -L (Peter Benie)
LINUX 2.2.7 with tokenring and etherent card does not work (Dietmar Kopp)
Re: ipfwadm won't forward masqueraded packets thru I/O rules (Scott Thomason)
VNCserver configuration (Albert Want)
PLEASE HELP, IM NEW TO LINUX (mike schilling)
Is samba needed for Linux to ping Win95 computer? (Wlmet)
Re: Novell and Red Hat (Gustin Kiffney)
Smbmount & SuSE 6.1 (Kiv)
Re: Odd output from ipchains -L (John Winters)
Win98(Server) -> Linux(Client), Suggestions??? ("Lars Johnson")
Re: Linux Internet Email gateway and MS Exchange.... ("Andrey Smirnov")
Re: Mgetty and AutoPPP (Gustin Kiffney)
Re: VNCserver configuration ([EMAIL PROTECTED])
cable modem w/ nonstatic IP ("Stew Smith")
Re: VNCserver configuration ("Joe Gerstung")
Re: Is samba needed for Linux to ping Win95 computer? ([EMAIL PROTECTED])
domainname? (Jinghua Tang)
Re: Win95->Linux via Parallel Cable ("Lew")
----------------------------------------------------------------------------
From: Andreas Metzler <[EMAIL PROTECTED]>
Subject: Re: RH6.0-client forget nis-password, when gnome-screen locks
Date: 15 Jul 1999 16:55:36 GMT
Reply-To: [EMAIL PROTECTED]
Jan-Michael Peters <[EMAIL PROTECTED]> wrote:
> hello,
> there's a password problem with gnome and nis.
> On the nis-client, I use the graphical login. Gnome appears, my
> homedir's are mounted and everything is fine....
> as soon as my screen locks (screensaver) my nis-password is rejected.
> the screensaver just return the message: "Sorry!" and the only way to
> get further is to kill the X-Server
> with CTRL-ALT-BACKSPACE and start a new login with the same
> nis-password.
> strange........
> can somebody tell me how to repair this bug?
> thanks
> meikel
hello!
have you tried using the pam_unix* modules instead of pam_pwdb?
perhaps setting xsreensaver SUID-root helps.
cu andreas
--
Andreas Metzler, Wien |
[EMAIL PROTECTED] |
PGP-Key at http://unet.univie.ac.at/~a9203835 |
------------------------------
From: [EMAIL PROTECTED] (Peter Benie)
Crossposted-To: uk.comp.os.linux
Subject: Re: Odd output from ipchains -L
Date: 16 Jul 1999 15:38:31 GMT
In article <7mnh0c$sp6$[EMAIL PROTECTED]>,
John Winters <[EMAIL PROTECTED]> wrote:
>[root@xl5 /root]# cat bin/configfirewall
>/sbin/chains -A input -i sppp -p tcp -y -j DENY
>/sbin/chains -A input -p tcp -y -j DENY
>
>Now, shouldn't those two rules show up differently in ipchains -L?
Use ipchains -vL
Peter
------------------------------
From: Dietmar Kopp <[EMAIL PROTECTED]>
Subject: LINUX 2.2.7 with tokenring and etherent card does not work
Date: Fri, 16 Jul 1999 17:51:17 +0200
Hi,
i have set up a Router with two network cards
one is a MADGE SMART PCI RN MK3 (token - ring)
and the other is a SMC 3C590 PCI (ethernet)
Both modules where loaded without errors.
I can reach the router from both networks via ping,
But the router isn�t routing i couln�t reach the other net.
For a test i have replace the TR-card with a ethernet card and
the routing works!! So i belive very strong that my setup is correct.
Knows someone a Problem with the 2.2.7 kernel and tr ??
Or is it a problem from the madge-driver (12.05.99)
Dietmar
[EMAIL PROTECTED]
------------------------------
From: [EMAIL PROTECTED] (Scott Thomason)
Crossposted-To: comp.security.firewalls
Subject: Re: ipfwadm won't forward masqueraded packets thru I/O rules
Date: Fri, 16 Jul 1999 13:52:17 GMT
OK, guys, thanks for your help. I've come up with this, which seems to
work for me, but if you wouldn't mind adding your comments...
Also, I know that proxying offers better security than just packet
filtering, but this will have to do for now.
---scott
#!/usr/bin/perl
use strict;
do_log("Starting firewalling...");
my $xip = $ARGV[0] if $ARGV[0];
my $fwcmd = '/sbin/ipfwadm ';
my $any = 'any/0';
my $xif = 'ppp0';
my $lif = 'eth0';
$xip = $ENV{'IPLOCAL'} unless $xip;
my $lip = '192.168.2.1';
my $lnet = '192.168.0.0/16';
my $masqnet = '192.168.0.0/16';
my $smtp = 'any/0';
my $pop3 = 'a.b.c.d';
my $nntp = 'a.b.c.d';
my $telnet = 'a.b.c.d';
my $dns = 'a.b.c.d';
my $loopif = 'lo';
my $loopnet = '127.0.0.0/8';
my $classa = '10.0.0.0/8';
my $classb = '172.16.0.0/12';
my $classc = '192.168.0.0/16';
my $mcast = '240.0.0.0/3';
my $bcast1 = '0.0.0.0';
my $bcast2 = '255.255.255.255';
my $privp = '0:1023';
my $unprivp = '1024:65535';
my $restport= '1080 2049 2000 6000:6001';
my @timeservers = ('ntp1.cs.wisc.edu',
'ntp-0.cso.uiuc.edu',
'wuarchive.wustl.edu',
'clock.psu.edu',
'clock.tricity.wsu.edu'
);
my $ts;
my @nameservers = ('a.b.c.d', 'e.f.g.h');
my $ns;
#---
do_log("Local IP address of external interface is $xip");
IOF_suffix('p deny');
IOF_suffix('f');
#---
do_log("Deny spoofing and reject bad outbound addresses");
do_cmd("$fwcmd -Ia deny -o -W $xif -S $xip");
do_cmd("$fwcmd -Oa reject -o -W $xif -D $xip");
do_cmd("$fwcmd -Ia deny -o -W $xif -D $bcast1");
do_cmd("$fwcmd -Ia deny -o -W $xif -S $bcast2");
do_cmd("$fwcmd -Ia deny -o -W $xif -S $mcast");
deny_spoof($classa);
deny_spoof($classb);
deny_spoof($classc);
deny_spoof($loopnet);
#---
# ICMP
# To prevent denial of service attacks based on ICMP bombs,
filter
# incoming Redirect (5) and outgoing Destination Unreachable
(3).
# Note, however, disabling Destination Unreachable (3) is not
# advisable, as it is used to negotiate packet fragment size.
# For bi-directional ping.
# Message Types: Echo_Reply (0), Echo_Request (8)
# To prevent attacks, limit the src addresses to your ISP
range.
#
# For outgoing traceroute.
# Message Types: INCOMING Dest_Unreachable (3), Time_Exceeded
(11)
# default UDP base: 33434 to base+nhops-1
#
# For incoming traceroute.
# Message Types: OUTGOING Dest_Unreachable (3), Time_Exceeded
(11)
# To block this, deny OUTGOING 3 and 11
# 0: Echo_Reply
# 3: Dest_Unreachable, Network_Unavailable, Service_Unavailable,
etc.
# 4: Source_Quench
# 5: Redirect
# 8: Echo_Request
# 11: Time_Exceeded
# 12: Parameter_Problem
do_log('ICMP filtering');
do_cmd("$fwcmd -Ia acc -P icmp -W $xif -S $any 0 3 4 11 12 -D $xip");
do_cmd("$fwcmd -Ia acc -P icmp -W $xif -S $telnet 8 -D $xip");
do_cmd("$fwcmd -Oa acc -P icmp -W $xif -S $xip 0 -D
$telnet");
do_cmd("$fwcmd -Oa acc -P icmp -W $xif -S $xip 3 4 8 12 -D $any");
do_cmd("$fwcmd -Oa acc -P icmp -W $xif -S $xip 11 -D
$telnet");
#---
do_log('Reject initiation on common problem ports');
do_cmd("$fwcmd -Oa rej -o -P tcp -y -W $xif -S $xip -D $any
$restport");
do_cmd("$fwcmd -Ia deny -o -P tcp -y -W $xif -D $xip $restport")
do_cmd("$fwcmd -Ia deny -o -P udp -W $xif -D $xip $restport")
do_log('Restrict traceroute hosts');
do_cmd("$fwcmd -Ia acc -P udp -W $xif -S $telnet 32769:65535
-D $xip 33434:33523");
do_cmd("$fwcmd -Oa acc -P udp -W $xif -S $xip 32769:65535
-D $any 33434:33523");
do_cmd("$fwcmd -Ia deny -o -P udp -W $xif -S $any 32769:65535
-D $xip 33434:33523");
do_log('Reject inbound AUTH request');
do_cmd("$fwcmd -Ia rej -o -P tcp -W $xif -S $any -D $xip auth");
#---
do_log('Common TCP clients');
tcp_client_pair(qw/ftp smtp whois domain telnet finger/);
tcp_client_pair(qw/http https pop auth nntp ntp auth/);
tcp_client_pair($unprivp); # unpriv<->unpriv for ftp passive mode
do_log('UDP access to specific name- & time-servers');
udp_client_pair('domain', @nameservers);
udp_client_pair('ntp', @timeservers);
#---
do_log('Masquerade, and log the rest');
do_cmd("$fwcmd -Fa masq -S $lnet -D $any");
do_cmd("$fwcmd -Ia acc -W $loopif");
do_cmd("$fwcmd -Oa acc -W $loopif");
do_cmd("$fwcmd -Ia acc -W $lif");
do_cmd("$fwcmd -Oa acc -W $lif");
IOF_suffix('a deny -o');
do_log('Firewalling done.');
exit 1;
#---
sub tcp_client_pair {
my $p;
foreach $p (@_) {
do_cmd("$fwcmd -Ia acc -P tcp -k -S $any $p -D $xip $unprivp");
do_cmd("$fwcmd -Oa acc -P tcp -S $xip $unprivp -D $any $p");
}
}
sub udp_client_pair {
my $p = shift;
my $h;
foreach $h (@_) {
do_cmd("$fwcmd -Ia acc -P udp -S $h $p -D $xip $unprivp");
do_cmd("$fwcmd -Oa acc -P udp -S $xip $unprivp -D $h $p");
}
}
sub deny_spoof {
my $n = shift;
do_cmd("$fwcmd -Ia deny -o -W $xif -S $n");
do_cmd("$fwcmd -Ia deny -o -W $xif -D $n");
do_cmd("$fwcmd -Oa reject -o -W $xif -S $n");
do_cmd("$fwcmd -Oa reject -o -W $xif -D $n");
}
sub IOF_suffix {
my $s = shift;
my $cmd; my $dir;
foreach $dir ('I', 'O', 'F') {
$cmd = "$fwcmd -$dir$s";
do_cmd($cmd);
}
}
sub do_cmd {
do_log($_[0]);
system(split(/\s+/, $_[0]));
}
sub do_log {
print "$_[0]\n";
system('logger', '-i', $_[0]);
}
------------------------------
From: Albert Want <[EMAIL PROTECTED]>
Subject: VNCserver configuration
Date: Fri, 16 Jul 1999 16:18:25 GMT
I've installed vnc 3.3.2r3 and, following the "getting started"
documentation, I've tryed to launch vncserver (on a Linux machine).
It's possible from the client to connect to the server but the only
thing I get is a grey screen (tipical one of X) and the X cursor but I
can't do anything !
How to start a window manager (I'm using RH 6.0) ? How to start a
simple xterm ? I follower the FAQ istructions but they are not
working...
Thanks in advance...
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: mike schilling <[EMAIL PROTECTED]>
Subject: PLEASE HELP, IM NEW TO LINUX
Date: Fri, 16 Jul 1999 11:48:19 -0500
I'm trying to get my linux server to see my NT network. How do I
configure the ip address of the linux box. I tried ifconfig, but I dont
know any parameters, I need to set the IP, and the subnet mask. Also,
how do I know if linux can see my network card.
------------------------------
From: [EMAIL PROTECTED] (Wlmet)
Subject: Is samba needed for Linux to ping Win95 computer?
Date: 16 Jul 1999 15:48:11 GMT
I am trying to get my linux computer to ping my Win95 box and vice versa. I
know that this is not a hardware issue as the Win95 box is dual boot and it
pings using Linux. Does one need to set up Samba to do this?
------------------------------
From: Gustin Kiffney <[EMAIL PROTECTED]>
Subject: Re: Novell and Red Hat
Date: Fri, 16 Jul 1999 16:51:15 GMT
[posted and mailed]
your /proc/net/ipx_interface should say something like
Network Node_Address Primary Device Frame_Type
00000BA5 00AA003B356F Yes eth0 EtherII
Be very sure the frame type is right. HP Jetdirect Printers
and Win95 machines can put other frame types on the network
that your server does NOT use and ipx_interface can get confused. If
this is the case you will have to use the program ipx_interface
to force the correct frame type, and perhaps use the program ipx_route
to add the network number and node address of your server.
What does /proc/net/ipx_route say?
If it is blank then you have not got the right network number
or frame type or both and you won't be able to connect to your server.
Your server in /proc/net/ipx_interface will look like
Network Router_Net Router_Node
00000EE3 00000BA5 00AA0034551A
00000EE2 00000BA5 00AA0034551A
8001020B 00000BA5 00AA0034551A
00000BA7 00000BA5 00AA0034551A
00000BA1 00000BA5 00AA0034551A
00000BA5 00000BA5 Directly Connected
The Router_Node in all the above listings is the router node of your
server or other IPX router.
You aren't by chance also running mars-netware-emulator on the same
machine? That can cause problems.
"Bryan Panella" <[EMAIL PROTECTED]> wrote:
> I need help... Bad. I have Red Hat 6 installed and connect mount my
volumne
> on my Novell 3.12 server.
>
> I followed the instuctions in the HOW-TO IPX primer but no joy. When
I
> 'slist' I get an error about no servers found in ncp_mount.
>
> I know my net card is working, however since I have TCP/IP
connecitivity
> fine to my other servers (and the internet).
>
> First I 'ipx_configure --auto_primary=on --auto_interface=on'
> then I 'cat /proc/net/ipx_interface'
>
> which gives me a printout showing the correct IPX Network ID, frame
type and
> verifies my primary connection (eth0).
>
> I really don't get it. Even trying to force a 'ncpmount' with my
server
> name, login id and password feeds back an error that the server
cannot be
> found.
>
> I even re-compiled the kernel and made sure IPX support, NFS support
and my
> net card were built in and not modules. I don't know what I am
missing.
>
> I was tempted to try to install Caldera's Linux for Netware but
everyone
> keeps telling me that Red Hat 6 has built-in NFS support so... HELP!
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: Kiv <[EMAIL PROTECTED]>
Subject: Smbmount & SuSE 6.1
Date: Fri, 16 Jul 1999 09:52:08 -0500
I've been running several Linux boxes with SuSE 6.0 & kernel 2.0.36 for
quite some time as workstations in an NT domain environment. I've been
using a script file with the following format to connect to shares on
various NT servers:
smbmount //servername/sharename /mnt/mountpoint -D <domainname> -U
<domain userid> -P <domain password>
This has worked well for authentication by our domain account server and
mounting shares quickly & easily. However, I recently loaded the new
SuSE 6.1 with the 2.2 kernel and discovered, as have lots of other
folks, that the smbmount command no longer works the same way (or at
all, for that matter!). I have looked through all the old messages,
searched the web, read the FAQs, and am now at a point where I'm utterly
and completely confused!
I don't want to set up my boxes as servers; all I want to do is use them
as workstations to access shares on our NT network. Is there an easy way
to accomplish this without downloading this, compiling that, muttering
incantations, etc., etc.? Or should I just go back the the 2.0.36 kernel
that worked so well for me?
My apologies in advance if this has been solved before; I just can't
seem to find an answer that fits this problem.
------------------------------
From: [EMAIL PROTECTED] (John Winters)
Crossposted-To: uk.comp.os.linux
Subject: Re: Odd output from ipchains -L
Date: 16 Jul 1999 17:16:37 +0100
In article <7mnjln$m7h$[EMAIL PROTECTED]>,
Peter Benie <[EMAIL PROTECTED]> wrote:
>In article <7mnh0c$sp6$[EMAIL PROTECTED]>,
>John Winters <[EMAIL PROTECTED]> wrote:
>>[root@xl5 /root]# cat bin/configfirewall
>>/sbin/chains -A input -i sppp -p tcp -y -j DENY
>>/sbin/chains -A input -p tcp -y -j DENY
>>
>>Now, shouldn't those two rules show up differently in ipchains -L?
>
>Use ipchains -vL
Ah! Thank you. I missed that tucked away in the additional options.
John
--
John Winters. Wallingford, Oxon, England.
The Linux Emporium - a source for Linux CDs in the UK
See <http://www.polo.demon.co.uk/emporium.html>
------------------------------
From: "Lars Johnson" <[EMAIL PROTECTED]>
Subject: Win98(Server) -> Linux(Client), Suggestions???
Date: Fri, 16 Jul 1999 12:40:18 -0700
Hi, I have a Win98 PC with an Internet connection and I want to be able to
access its Internet connection through from my Linux machine. I have SuSE
Linux 6.1, no server software for Win98 and an Ethernet connection between
them. Could anybody give me some suggestions to some free(GNU perhaps)
Win98 servers that are easy to set up, and mabey direct me to some info on
how I should go about setting this up.
Thanks,
[EMAIL PROTECTED]
------------------------------
From: "Andrey Smirnov" <[EMAIL PROTECTED]>
Subject: Re: Linux Internet Email gateway and MS Exchange....
Date: Fri, 16 Jul 1999 10:09:48 -0700
Edit /etc/mailertable and add the following entry:
domain.com smtp:[exchange_machine]
Good luck!
Chris wrote in message <01becf90$2affccc0$9b64a8c0@pf12>...
>Hmmm, the main issue at the moment seems to be that mail in the queue on
>the linux machine dosn't get forwarded to the exchange machine. I thought
>it would just be a case of adding an entry in the hosts file on the linux
>point the email domain to the exchanges IP address (it seems ot wokr this
>way in AIX). Is there something else I need to do?
>
>Andrey Smirnov <[EMAIL PROTECTED]> wrote in article
><7mlu29$66h$[EMAIL PROTECTED]>...
>> Hello,
>>
>> Exchange server needs to have the "Internet Connector" installed and
>> configured to send all outgoing mail to Linux box (in the properties of
>> connector go to 'Connections' tab and choose 'Forward all messages to the
>> host' option, then enter Linux box's IP address there).
>>
>> As far as accepting e-mail, I think your Linux box needs to be setup as a
>> primary e-mail exchanger (in DNS database), so all e-mail addressed to
>your
>> domain will be routed to that host. Then you need to work on creating
>domain
>> mail routing rule (search in sendmail documentaion for
>> /etc/mail/domaintable, also /etc/mail/mailertable) so all incoming e-mail
>> will be forwarded to the Exchange machine.
>>
>>
>> Good luck!
>>
>> Chris Hubbard wrote in message <[EMAIL PROTECTED]>...
>> >Hi all,
>> >Here is what I'm trying to do.....
>> >
>> >Pick up mail on a linux box, then toss it over to one of our Exchange
>> servers
>> >for distribution in the network.
>> >
>> >So its something like this:
>> >
>> >Incoming:
>> > Internet ---- POP3 ----> Linux Box ---- SMTP ----> MS Exchange
>> >Outgoing:
>> > MS Exchange ---- SMTP ----> Linux Box ---- SMTP ----> Internet
>> >
>> >It seems like something thats do able but I'm having a 'little' getting
>the
>> >Linux to talk to exchange.
>> >At the moment the Linux is fine, it'll send and receive mail and dial up
>> quite
>> >happily. I have the networking done so it can see the Exchange server.
>I'm
>> just
>> >a little stumped as to how to get them talking.
>> >I assume I'll have to get all the mail into one account on the box
>then
>> pass
>> >that to exchange and it can sort out all the peoples mail.
>> >
>> >Does anyone have any clues? has anyone done anything similar?
>> >
>> >Cheers,
>> >Chris.
>> >
>> >
>> >--
>> >If you must choose between two evils,
>> >pick the one you've never tried before.
>> >---------------------------------------
>> > [EMAIL PROTECTED]
>>
>>
>>
>>
------------------------------
From: Gustin Kiffney <[EMAIL PROTECTED]>
Subject: Re: Mgetty and AutoPPP
Date: Fri, 16 Jul 1999 17:28:38 GMT
Your mgetty appears fine, it's your pppd that is not set up
properly. If your win95 machine has a login name and password set in
dial-up networking, your /etc/ppp/pap-secrets file should also have
that login name and password in it as in
remote * secret-password
where remote is the Win95 login name and secret-password is remote's
password.
And your /etc/ppp/options.ttyS1 file should have
proxyarp
ms-dns xxx.xxx.xxx.xxx #where xxx.xxx.xxx.xxx is a DNS server number
auth
192.68.1.1:192.68.1.2 #or some other appropriate set of numbers so
#that the remote machine gets an IP address that works on your network
and then things should work. Man pppd for details.
Your mgetty is starting pppd but pppd (which for some reason is not
doing any logging, check man pppd to get some logging output from pppd
- 'debug' should work, but you may also have to futz with
/etc/syslog.conf to get it to go.
Steve Bradshaw <[EMAIL PROTECTED]> wrote:
> Hi,
> I'm attempting to set up a Redhat 6.0 box as a dial-in server and have
> followed the HOWTOs and got mgetty answering the phone. However, when
I
> use Win95 to dial in the line is dropped with the message 'You have
been
> disconnected, please double-click the connection to try again'
>
> So, I created a user called ppp1 and med their shell pppd and tried
that
> - it still dropped the line.
>
> I tried dialing in with hyperterm and got a standard shell login for
my
> normal accout and an error regarding .ppprc for the pppd account.
>
> I've attached the mgetty log for the standard account to the end of
this
> post .
>
> I thought that AutoPPP was supposed to kick in and do pap and ppp on
the
> normal account. Is it?
>
> I havn't re-compiled mgetty, I'm using the one taht came with Redhat
6,
> is that OK or should I re-compile.
>
> I've created a .ppprc file in the home directory of the pppd user and
> put
> -detach
> in it. Is that OK?
>
> Also what IP address will be given to the incoming connection? Does it
> just use the DHCP server to get it?
>
> Any help would be greatly appreciated. Please email replies to me as
> well as posting them as my access to newsgroups is limited.
>
> My address is steve_AT_mirkwood_DOT_clara_DOT_net
>
> Here's that log:-
>
> 07/14 01:07:30 yS1 select returned 1
> 07/14 01:07:30 yS1 checking lockfiles, locking the line
> 07/14 01:07:30 yS1 makelock(ttyS1) called
> 07/14 01:07:30 yS1 do_makelock: lock='/var/lock/LCK..ttyS1'
> 07/14 01:07:30 yS1 lock made
> 07/14 01:07:30 yS1 waiting for ``RING''
> 07/14 01:07:30 yS1 got: [0d]
> 07/14 01:07:30 yS1 CND: OK[0a]RING ** found **
> 07/14 01:07:30 yS1 CND: check no: 'none'
> 07/14 01:07:30 yS1 send: ATA[0d]
> 07/14 01:07:30 yS1 waiting for ``CONNECT''
> 07/14 01:07:30 yS1 got: [0d]
> 07/14 01:07:30 yS1 CND: RING[0a]ATA[0d]
> 07/14 01:07:30 yS1 CND: ATA[0d][0a]CONNECT ** found **
> 07/14 01:07:41 yS1 send:
> 07/14 01:07:41 yS1 waiting for ``_''
> 07/14 01:07:41 yS1 got: 33600/ARQ/V34/LAPM/V42BIS[0d]
> 07/14 01:07:41 yS1 CND: CONNECT 33600/ARQ/V34/LAPM/V42BIS
> 07/14 01:07:41 yS1 CND: found: 33600/ARQ/V34/LAPM/V42BIS[0a] **
found
> **
> 07/14 01:07:41 yS1 waiting for line to clear (VTIME), read:
> 07/14 01:07:41 yS1 looking for utmp entry... (my PID: 837)
> 07/14 01:07:41 yS1 utmp + wtmp entry made
> 07/14 01:07:42 yS1 tio_set_flow_control( HARD )
> 07/14 01:07:42 yS1 print welcome banner (/etc/issue)
> 07/14 01:07:42 yS1 getlogname (AUTO_PPP), read:~[ff]}#[c0]!
> 07/14 01:07:42 yS1 input finished with '\r', setting ICRNL ONLCR
> 07/14 01:07:42 yS1 tio_get_rs232_lines: status: RTS CTS DSR DTR DCD
> 07/14 01:07:42 yS1 login: use login config file
> /etc/mgetty+sendfax/login.config
> 07/14 01:07:42 yS1 match: user='/AutoPPP/', key=''
> 07/14 01:07:42 yS1 match: user='/AutoPPP/', key=''
> 07/14 01:07:42 yS1 match: user='/AutoPPP/', key='/AutoPPP/'*** hit!
> 07/14 01:07:42 yS1 calling login: cmd='/usr/sbin/pppd', argv[]='pppd
> file /etc/ppp/options.server'
> 07/14 01:07:42 ##### data dev=ttyS1, pid=837, caller='none',
> conn='33600/ARQ/V34/LAPM/V42BIS', name='', cmd='/usr/sbin/pppd',
> user='/AutoPPP/'
>
> 07/14 01:07:42 yS1 setenv: 'CALLER_ID=none'
> 07/14 01:07:42 yS1 setenv: 'CONNECT=33600/ARQ/V34/LAPM/V42BIS'
> --
> 07/14 01:07:45 yS1 mgetty: experimental test release 1.1.14-Apr02
> 07/14 01:07:45 yS1 check for lockfiles
> 07/14 01:07:45 yS1 checklock: stat failed, no file
> 07/14 01:07:45 yS1 locking the line
> 07/14 01:07:45 yS1 makelock(ttyS1) called
> 07/14 01:07:45 yS1 do_makelock: lock='/var/lock/LCK..ttyS1'
> 07/14 01:07:45 yS1 lock made
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: [EMAIL PROTECTED]
Subject: Re: VNCserver configuration
Date: Fri, 16 Jul 1999 17:11:27 GMT
In article <7mnm03$jln$[EMAIL PROTECTED]>,
Albert Want <[EMAIL PROTECTED]> wrote:
> I've installed vnc 3.3.2r3 and, following the "getting started"
> documentation, I've tryed to launch vncserver (on a Linux machine).
>
> It's possible from the client to connect to the server but the only
> thing I get is a grey screen (tipical one of X) and the X cursor but I
> can't do anything !
>
> How to start a window manager (I'm using RH 6.0) ? How to start a
> simple xterm ? I follower the FAQ istructions but they are not
> working...
>
> Thanks in advance...
from what i read here, it seems there is a misunderstanding,
or something goes wrong i have not seen before.
normally with vncviewer, you connect to the server and see the
screenoutput - so if your viewer shows a grey X-screen this would
normally be seen on the vnc-serving machine as well.
so you first start the window-manager on the serving-machine, and then,
using vnc-server, you simply export this window to the viewing machine,
is that understandable?
i still have to see it other than that
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: "Stew Smith" <[EMAIL PROTECTED]>
Subject: cable modem w/ nonstatic IP
Date: Fri, 16 Jul 1999 12:11:29 -0500
Thanks for your interest. Is there a way to share an internet connection
(cable modem) using IP masq & Samba; even though my "level of service" does
not provide a staticIP? That is my cable provider uses DHCP to assign me a
new IP every session. I would be willing to leave my RedHat 6.0 box turned
on all the time. I have purchased two 3c905's and an 8 port hub but have
not yet setup my home LAN. What is the best solution? This is such a basic
question it is scary!! If you have general software and/or hardware
solutions a quick description would be appreciated. Thank you very much in
advance.
Stew
------------------------------
From: "Joe Gerstung" <[EMAIL PROTECTED]>
Subject: Re: VNCserver configuration
Date: Fri, 16 Jul 1999 19:31:05 +0200
Hi Albert,
I was yesterday in the same situation as you today. My solution was to edit
the xstartup file in the {$home}/.vnc-Directory in the following way:
1. comment out ALL commands in the script
2. insert a new line witch starts the KDE (or something like this).
My script /root/.vnc/xstartup now looks like:
#!/bin/sh
kde
# xrdb $HOME/.Xresources
# xsetroot -solid grey
# xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
# twm &
Thats all.
Good luck
Joe
Albert Want <[EMAIL PROTECTED]> schrieb in im Newsbeitrag:
7mnm03$jln$[EMAIL PROTECTED]
> I've installed vnc 3.3.2r3 and, following the "getting started"
> documentation, I've tryed to launch vncserver (on a Linux machine).
>
> It's possible from the client to connect to the server but the only
> thing I get is a grey screen (tipical one of X) and the X cursor but I
> can't do anything !
>
> How to start a window manager (I'm using RH 6.0) ? How to start a
> simple xterm ? I follower the FAQ istructions but they are not
> working...
>
> Thanks in advance...
>
>
>
> Sent via Deja.com http://www.deja.com/
> Share what you know. Learn what you don't.
------------------------------
From: [EMAIL PROTECTED]
Subject: Re: Is samba needed for Linux to ping Win95 computer?
Date: Fri, 16 Jul 1999 17:03:06 GMT
In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (Wlmet) wrote:
> I am trying to get my linux computer to ping my Win95 box and vice
versa. I
> know that this is not a hardware issue as the Win95 box is dual boot
and it
> pings using Linux. Does one need to set up Samba to do this?
>
short answer :NO
long answer :
how do you ping ( adress, name)?
can you ping both ways (linux1<>linux2) and both modes (names,adresses?)
when win95box is actually linuxbox2?
my first idea would be you have to add name of win95box to hosts.
my second idea, did you set up tcpip under win95,
try to ping 'localhost' from win95, and ping 'nameofyourwin95box' from
win95box.
last: incase evrything else seems ok, there is a tool tcpdump to listen
to tcp-packets.
try it
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
From: Jinghua Tang <[EMAIL PROTECTED]>
Subject: domainname?
Date: Fri, 16 Jul 1999 13:10:02 -0400
I am trying to setup domainname on redhat 5.2
linux by issueing "domainname NAME", cat > /etc/defaultdomain with the
same NAME and set the domainame NAME in /etc/sysconfig/network, but
after rebooting it still doesn't know the domainname.
Thank you!
------------------------------
Reply-To: "Lew" <[EMAIL PROTECTED]>
From: "Lew" <[EMAIL PROTECTED]>
Subject: Re: Win95->Linux via Parallel Cable
Date: Fri, 16 Jul 1999 12:24:53 -0500
This seems like a lot of pain for little gain. Buy an NE2000 clone network
card for each machine and a cross over cable. Configure the Microsoft
client and the Linux machine. Total cost $25.00 plus tax. Fast, easy,
reliable, cheap.
*Lew*
MuDJuNkY <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> I'm a newbie linux user wanting to learn more...but I cannot run linux
until
> I've found a way to setup the same kind of network as I have currently
with
> my two windows machines.
>
> I'd like to setup linux as a network server and internet gateway.
> I'd like to be able to access my linux box with my win95 box via Direct
> Cable Connection (parallel cable). And I'd like to be able to still use
the
> win95 box for http/ftp/telnet/socks/and DNS access through the linux box
to
> the internet.
> If I could please get some intstructions on how to do this, it would be
> greatly appreciated. My roommate gets upset with me everytime I run linux
> and he can't access the internet. AND I'm sick of WINDOWS!
> So far I can at least access the internet from linux, so all I need is the
> network setup.
> Thanks
>
>
------------------------------
** 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
******************************