* RE: keeping static ip address alive between restarts
@ 2004-02-20 22:54 Chadha, Devesh
2004-02-21 2:39 ` Graphical client for SSH2? Eve Atley
0 siblings, 1 reply; 5+ messages in thread
From: Chadha, Devesh @ 2004-02-20 22:54 UTC (permalink / raw)
To: 'Michael Anaya', Linux-Newbie
I believe linuxconf has been discontinued in RH Linux.
Regards,
Devesh
-----Original Message-----
From: linux-newbie-owner@vger.kernel.org
[mailto:linux-newbie-owner@vger.kernel.org] On Behalf Of Michael Anaya
Sent: Friday, February 20, 2004 5:40 PM
To: Linux-Newbie
Subject: RE: keeping static ip address alive between restarts
> You wrote:
> Running Red Hat 8.0 (2.4.18-14) on an old Acer I have keyed ifconfig
> eth0 192.168.0.1 to set my box's ip address for my small LAN. What
> additional command
> should I use to write that address permanently, so that I do not
> have
> to
> ifconfig each time I restart? I have read and reread O'Reilly's
> Running
> Linux and Learning Red Hat Linux; is there no process whereby
> the
> settings
> are written to the correct files for startup, or must I (using
> vi, for
> example) edit certain files myself?
>
> Bill Stanard
> ***********************************************
>
> I personally prefer editing a startup script but Redhat seems to do
> these things with GUI tools. Have a look here
> http://www.redhat.com/docs/manuals/linux/RHL-8.0-Manual/custom-guide/
> Especially the section III
>
> cheers
> James
try using "linuxconf" as root.
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
------------------------------------------------------------------------------
This message is intended only for the personal and confidential use of the
designated recipient(s) named above. If you are not the intended recipient of
this message you are hereby notified that any review, dissemination,
distribution or copying of this message is strictly prohibited. This
communication is for information purposes only and should not be regarded as
an offer to sell or as a solicitation of an offer to buy any financial
product, an official confirmation of any transaction, or as an official
statement of Lehman Brothers. Email transmission cannot be guaranteed to be
secure or error-free. Therefore, we do not represent that this information is
complete or accurate and it should not be relied upon as such. All
information is subject to change without notice.
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Graphical client for SSH2?
2004-02-21 2:39 ` Graphical client for SSH2? Eve Atley
@ 2004-02-21 0:29 ` Ray Olszewski
2004-02-21 15:08 ` Armen Kaleshian
1 sibling, 0 replies; 5+ messages in thread
From: Ray Olszewski @ 2004-02-21 0:29 UTC (permalink / raw)
To: Linux-Newbie
At 06:39 PM 2/20/2004 -0800, Eve Atley wrote:
>Hi,
>I currently have Cygwin running on my Windows laptop as a test enviroment to
>log in with SSH2. Now, sure you can run it from the command line in Cygwin,
>but these are users who aren't real savvy with technology, and probably
>won't have the patience to learn the CLI.
>
>Therefore, I tried installing WinSCP. While I am asked for my passphrase in
>Cygwin, the same doesn't occur in WinSCP - I can log in with my user
>password, even when I have loaded my public key.
>
>Anyone?
What's the question? Since this is a Linux list, not a Windows list, I'll
start with the ssh server on the far end, presumably on a Linux machine.
An ssh server can permit multiple login options. The common Linux sshd uses
a config file (probably /etc/ssh/sshd_config ... I don't know if this
location is standard or varies from distro to distro) to specify what login
options are available. Standard userid/password authentication is governed
by this line:
# To disable tunneled clear text passwords, change to no here!
PasswordAuthentication yes
I believe public-key authentication is governed by these lines (which one
matters depends on which type of key you are using):
RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys
In your case, I expect that what is happening behind the curtain is that
WinSCP tries to make a connection, does not find a private key to send, so
asks the remote sshd to permit userid/password login ... which it does.
I looked quickly at the Website for WInSCP
(http://winscp.sourceforge.net/eng/) and it says that WinSCP does support
both RSA and DSA keys. it doesn't include the details of how to set up keys
with this app ... only a general reference to using the keygen program from
PuTTY ... but I imagine the docs that come with the WinSCP download have
this information ... I would not assume WinSCP can find keyfiles generated
by Cygwin apps.
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 5+ messages in thread
* Graphical client for SSH2?
2004-02-20 22:54 keeping static ip address alive between restarts Chadha, Devesh
@ 2004-02-21 2:39 ` Eve Atley
2004-02-21 0:29 ` Ray Olszewski
2004-02-21 15:08 ` Armen Kaleshian
0 siblings, 2 replies; 5+ messages in thread
From: Eve Atley @ 2004-02-21 2:39 UTC (permalink / raw)
To: Linux-Newbie
Hi,
I currently have Cygwin running on my Windows laptop as a test enviroment to
log in with SSH2. Now, sure you can run it from the command line in Cygwin,
but these are users who aren't real savvy with technology, and probably
won't have the patience to learn the CLI.
Therefore, I tried installing WinSCP. While I am asked for my passphrase in
Cygwin, the same doesn't occur in WinSCP - I can log in with my user
password, even when I have loaded my public key.
Anyone?
Thanks,
Eve
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: Graphical client for SSH2?
2004-02-21 2:39 ` Graphical client for SSH2? Eve Atley
2004-02-21 0:29 ` Ray Olszewski
@ 2004-02-21 15:08 ` Armen Kaleshian
2004-02-21 15:19 ` Juan Facundo Suárez
1 sibling, 1 reply; 5+ messages in thread
From: Armen Kaleshian @ 2004-02-21 15:08 UTC (permalink / raw)
To: 'Eve Atley'; +Cc: 'Linux-Newbie'
Use Putty http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
It's the easiest Windows SSH client to use with zero installation overhead,
etc.
Good Luck! =D
--Armen
: -----Original Message-----
: From: linux-newbie-owner@vger.kernel.org
: [mailto:linux-newbie-owner@vger.kernel.org] On Behalf Of Eve Atley
: Sent: Friday, 20 February, 2004 21:39
: To: Linux-Newbie
: Subject: Graphical client for SSH2?
:
:
: Hi,
:
: I currently have Cygwin running on my Windows laptop as a
: test enviroment to log in with SSH2. Now, sure you can run it
: from the command line in Cygwin, but these are users who
: aren't real savvy with technology, and probably won't have
: the patience to learn the CLI.
:
: Therefore, I tried installing WinSCP. While I am asked for my
: passphrase in Cygwin, the same doesn't occur in WinSCP - I
: can log in with my user password, even when I have loaded my
: public key.
:
: Anyone?
:
: Thanks,
: Eve
:
:
: -
: To unsubscribe from this list: send the line "unsubscribe
: linux-newbie" in the body of a message to
: majordomo@vger.kernel.org More majordomo info at
: http://vger.kernel.org/majordomo-info.html
: Please read the FAQ at http://www.linux-learn.org/faqs
:
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Graphical client for SSH2?
2004-02-21 15:08 ` Armen Kaleshian
@ 2004-02-21 15:19 ` Juan Facundo Suárez
0 siblings, 0 replies; 5+ messages in thread
From: Juan Facundo Suárez @ 2004-02-21 15:19 UTC (permalink / raw)
To: 'Linux-Newbie'
Exactly, it is simply amazing !!
El Sáb 21 Feb 2004 12:08, Armen Kaleshian escribió:
> Use Putty http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
>
> It's the easiest Windows SSH client to use with zero installation overhead,
> etc.
>
> Good Luck! =D
>
> --Armen
>
> : -----Original Message-----
> : From: linux-newbie-owner@vger.kernel.org
> : [mailto:linux-newbie-owner@vger.kernel.org] On Behalf Of Eve Atley
> : Sent: Friday, 20 February, 2004 21:39
> : To: Linux-Newbie
> : Subject: Graphical client for SSH2?
--
Facundo Suárez
FDSoft SA
icq:121172697
jabber:faco@fdsoft.com.ar
msn:use_jabber@hotmail.com
Neuquén-Argentina
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2004-02-21 15:19 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-02-20 22:54 keeping static ip address alive between restarts Chadha, Devesh
2004-02-21 2:39 ` Graphical client for SSH2? Eve Atley
2004-02-21 0:29 ` Ray Olszewski
2004-02-21 15:08 ` Armen Kaleshian
2004-02-21 15:19 ` Juan Facundo Suárez
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox