* [Comm] telnet 127.0.0.1 Connection refused
@ 2003-06-01 14:11 Grigory Fateyev
2003-06-01 14:28 ` Roman Bogorodskiy
` (2 more replies)
0 siblings, 3 replies; 14+ messages in thread
From: Grigory Fateyev @ 2003-06-01 14:11 UTC (permalink / raw)
To: community
ЗДРАВСТВУЙТЕ!
Почему эта ситуация может иметь место
$ telnet 127.0.0.1
Trying 127.0.0.1...
telnet: connect to address 127.0.0.1: Connection refused
хотя в тоже время с пингованием все в порядке
--- 127.0.0.1 ping statistics ---
8 packets transmitted, 8 received, 0% packet loss, time 6994ms
rtt min/avg/max/mdev = 0.051/0.065/0.128/0.025 ms
Как мне заставить конектиться telnet к localhost?
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Comm] telnet 127.0.0.1 Connection refused
2003-06-01 14:11 [Comm] telnet 127.0.0.1 Connection refused Grigory Fateyev
@ 2003-06-01 14:28 ` Roman Bogorodskiy
2003-06-02 18:51 ` Konstantin Vinokurov
2003-06-01 14:46 ` Grigory Fateyev
2003-06-01 17:02 ` Dmitry Ivanov
2 siblings, 1 reply; 14+ messages in thread
From: Roman Bogorodskiy @ 2003-06-01 14:28 UTC (permalink / raw)
To: community
Grigory wrote:
> Как мне заставить конектиться telnet к localhost?
Поднять на localhost telnetd. А лучше sshd.
-Roman Bogorodskiy [Novel]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Comm] telnet 127.0.0.1 Connection refused
2003-06-01 14:11 [Comm] telnet 127.0.0.1 Connection refused Grigory Fateyev
2003-06-01 14:28 ` Roman Bogorodskiy
@ 2003-06-01 14:46 ` Grigory Fateyev
2003-06-01 14:54 ` Pavel S. Khmelinsky
2003-06-01 17:02 ` Dmitry Ivanov
2 siblings, 1 reply; 14+ messages in thread
From: Grigory Fateyev @ 2003-06-01 14:46 UTC (permalink / raw)
To: community
Sun, 1 Jun 2003 18:11:24 +0400 Grigory Fateyev написал(а):
Пару дополнений
1. Это моя машина и я соединяюсь сам с собой.
2. Таже картина и из под root
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Comm] telnet 127.0.0.1 Connection refused
2003-06-01 14:46 ` Grigory Fateyev
@ 2003-06-01 14:54 ` Pavel S. Khmelinsky
0 siblings, 0 replies; 14+ messages in thread
From: Pavel S. Khmelinsky @ 2003-06-01 14:54 UTC (permalink / raw)
To: community
Grigory Fateyev wrote:
> Sun, 1 Jun 2003 18:11:24 +0400 Grigory Fateyev написал(а):
>
> Пару дополнений
> 1. Это моя машина и я соединяюсь сам с собой.
> 2. Таже картина и из под root
1. То что 127.1 -- собственная машина, ежу понятно.
2. То что машина пингается еще не говорит о том что она должна
пускать к себе по telnet
3. От кого запущен telnet-клиент роли не играет, т.к. соединение
происходит по сети, хоти и по loopbaсk и-фейсу.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Comm] telnet 127.0.0.1 Connection refused
2003-06-01 14:11 [Comm] telnet 127.0.0.1 Connection refused Grigory Fateyev
2003-06-01 14:28 ` Roman Bogorodskiy
2003-06-01 14:46 ` Grigory Fateyev
@ 2003-06-01 17:02 ` Dmitry Ivanov
2003-06-02 6:08 ` Dmitry Alexeyev
2 siblings, 1 reply; 14+ messages in thread
From: Dmitry Ivanov @ 2003-06-01 17:02 UTC (permalink / raw)
To: community
В сообщении от Воскресенье 01 Июнь 2003 17:11 Grigory Fateyev
написал(a):
> ЗДРАВСТВУЙТЕ!
>
> Почему эта ситуация может иметь место
> $ telnet 127.0.0.1
> Trying 127.0.0.1...
> telnet: connect to address 127.0.0.1: Connection refused
Значит, порт 23 (telnet) закрыт, т.е. telnetd не работает. Но его
и не стоит включать, потому что telnet ныне является
небезопасным. Вместо него применяется ssh, который обеспечивает
шифрование и другие полезные вещи. Чтобы попасть на машину по
ssh, на ней должен работать sshd, обычно слушающий порт 22.
Запустить sshd в ALT Linux можно из-под root так:
/etc/init.d/sshd start
--
D.I.M.S.S.: Digital Intelligent Machine Skilled in Sabotage
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Comm] telnet 127.0.0.1 Connection refused
2003-06-01 17:02 ` Dmitry Ivanov
@ 2003-06-02 6:08 ` Dmitry Alexeyev
2003-06-02 10:17 ` Dmitry Ivanov
0 siblings, 1 reply; 14+ messages in thread
From: Dmitry Alexeyev @ 2003-06-02 6:08 UTC (permalink / raw)
To: community
> Запустить sshd в ALT Linux можно из-под root так:
>
> /etc/init.d/sshd start
serivce sshd start
?
WBR,
Dmitry
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Comm] telnet 127.0.0.1 Connection refused
2003-06-02 6:08 ` Dmitry Alexeyev
@ 2003-06-02 10:17 ` Dmitry Ivanov
2003-06-02 11:21 ` Dmitry Alexeyev
0 siblings, 1 reply; 14+ messages in thread
From: Dmitry Ivanov @ 2003-06-02 10:17 UTC (permalink / raw)
To: community
On Mon, Jun 02, 2003 at 10:08:42AM +0400, Dmitry Alexeyev wrote:
> > Запустить sshd в ALT Linux можно из-под root так:
> >
> > /etc/init.d/sshd start
>
> serivce sshd start
А почему так?
--
D.I.M.S.S.: Digital Intelligent Machine Skilled in Sabotage
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Comm] telnet 127.0.0.1 Connection refused
2003-06-02 10:17 ` Dmitry Ivanov
@ 2003-06-02 11:21 ` Dmitry Alexeyev
2003-06-02 12:11 ` Dmitry Ivanov
0 siblings, 1 reply; 14+ messages in thread
From: Dmitry Alexeyev @ 2003-06-02 11:21 UTC (permalink / raw)
To: community
В сообщении от Понедельник 02 Июнь 2003 14:17 Dmitry Ivanov написал(a):
> On Mon, Jun 02, 2003 at 10:08:42AM +0400, Dmitry Alexeyev wrote:
> > > Запустить sshd в ALT Linux можно из-под root так:
> > >
> > > /etc/init.d/sshd start
> >
> > serivce sshd start
>
> А почему так?
Упс. мои извинения.
service sshd start
WBR,
Dmitry
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Comm] telnet 127.0.0.1 Connection refused
2003-06-02 11:21 ` Dmitry Alexeyev
@ 2003-06-02 12:11 ` Dmitry Ivanov
2003-06-03 7:06 ` Dmitry Alexeyev
0 siblings, 1 reply; 14+ messages in thread
From: Dmitry Ivanov @ 2003-06-02 12:11 UTC (permalink / raw)
To: community
On Mon, Jun 02, 2003 at 03:21:07PM +0400, Dmitry Alexeyev wrote:
> >
> > А почему так?
>
> Упс. мои извинения.
>
> service sshd start
Да я и не заметил очепятки :)
А почему так, в самом деле? Неужто
старый способ отменили???
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Comm] telnet 127.0.0.1 Connection refused
2003-06-01 14:28 ` Roman Bogorodskiy
@ 2003-06-02 18:51 ` Konstantin Vinokurov
2003-06-02 20:12 ` Re[2]: " ASA
0 siblings, 1 reply; 14+ messages in thread
From: Konstantin Vinokurov @ 2003-06-02 18:51 UTC (permalink / raw)
To: community
В сообщении от 1 Июнь 2003 17:28 Roman Bogorodskiy написал(a):
> Grigory wrote:
> > Как мне заставить конектиться telnet к localhost?
>
> Поднять на localhost telnetd. А лучше sshd.
Простите что встреваю. Попытался запустить telnetd (для осознания
собственной крутизны :))
[root]# root: telnetd
telnetd: getpeername: Socket operation on non-socket
И что делать - не знаю...
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re[2]: [Comm] telnet 127.0.0.1 Connection refused
2003-06-02 18:51 ` Konstantin Vinokurov
@ 2003-06-02 20:12 ` ASA
0 siblings, 0 replies; 14+ messages in thread
From: ASA @ 2003-06-02 20:12 UTC (permalink / raw)
To: Konstantin Vinokurov
Hello Konstantin,
Monday, June 2, 2003, 11:51:52 PM, you wrote:
>> Поднять на localhost telnetd. А лучше sshd.
KV> Простите что встреваю. Попытался запустить telnetd (для осознания
KV> собственной крутизны :))
KV> [root]# root: telnetd
KV> telnetd: getpeername: Socket operation on non-socket
telnetd предназначен исключительно для запуска из inetd/xinetd
В данном случое оно выругалось на то, к стандартному входу
(консоли) невозможно применить сокетную операцию (т.е.
получить IP-адрес соединения).
--
Best regards,
ASA mailto:llb@udm.ru
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Comm] telnet 127.0.0.1 Connection refused
2003-06-02 12:11 ` Dmitry Ivanov
@ 2003-06-03 7:06 ` Dmitry Alexeyev
2003-06-03 7:29 ` Mike Lykov
0 siblings, 1 reply; 14+ messages in thread
From: Dmitry Alexeyev @ 2003-06-03 7:06 UTC (permalink / raw)
To: community
В сообщении от Понедельник 02 Июнь 2003 16:11 Dmitry Ivanov написал:
> On Mon, Jun 02, 2003 at 03:21:07PM +0400, Dmitry Alexeyev wrote:
> > > А почему так?
> >
> > Упс. мои извинения.
> >
> > service sshd start
>
> Да я и не заметил очепятки :)
> А почему так, в самом деле? Неужто
> старый способ отменили???
Сам увидел это только в ALT'е, а уже потом нашел в RedHat...
Удобный способ. Почему лучше использовать его - не знаю, врать не буду.
Но определенно лучше.
WBR,
Dmitry
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Comm] telnet 127.0.0.1 Connection refused
2003-06-03 7:06 ` Dmitry Alexeyev
@ 2003-06-03 7:29 ` Mike Lykov
2003-06-03 23:38 ` Oleg Sukhanov
0 siblings, 1 reply; 14+ messages in thread
From: Mike Lykov @ 2003-06-03 7:29 UTC (permalink / raw)
To: community
[-- Attachment #1: signed data --]
[-- Type: text/plain, Size: 375 bytes --]
В сообщении от Вторник 03 Июнь 2003 12:06 Dmitry Alexeyev написал:
> > > service sshd start
> Неужто
> > старый способ отменили???
> Сам увидел это только в ALT'е, а уже потом нашел в RedHat...
> Удобный способ.
Ничего не отменяли, успокойтесь.
просто service сразу запускает нужный скрипт с нужным параметром (для
уменьшения ручного набора кучи путей, например)
--
Mike
[-- Attachment #2: signature --]
[-- Type: application/pgp-signature, Size: 307 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Comm] telnet 127.0.0.1 Connection refused
2003-06-03 7:29 ` Mike Lykov
@ 2003-06-03 23:38 ` Oleg Sukhanov
0 siblings, 0 replies; 14+ messages in thread
From: Oleg Sukhanov @ 2003-06-03 23:38 UTC (permalink / raw)
To: community
Mike Lykov пишет:
> Ничего не отменяли, успокойтесь.
> просто service сразу запускает нужный скрипт с нужным параметром (для
> уменьшения ручного набора кучи путей, например)
/etc/.../ набирать через <tab> быстрее, хотя это вопрос привычки.
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2003-06-03 23:38 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-06-01 14:11 [Comm] telnet 127.0.0.1 Connection refused Grigory Fateyev
2003-06-01 14:28 ` Roman Bogorodskiy
2003-06-02 18:51 ` Konstantin Vinokurov
2003-06-02 20:12 ` Re[2]: " ASA
2003-06-01 14:46 ` Grigory Fateyev
2003-06-01 14:54 ` Pavel S. Khmelinsky
2003-06-01 17:02 ` Dmitry Ivanov
2003-06-02 6:08 ` Dmitry Alexeyev
2003-06-02 10:17 ` Dmitry Ivanov
2003-06-02 11:21 ` Dmitry Alexeyev
2003-06-02 12:11 ` Dmitry Ivanov
2003-06-03 7:06 ` Dmitry Alexeyev
2003-06-03 7:29 ` Mike Lykov
2003-06-03 23:38 ` Oleg Sukhanov
ALT Linux Community general discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
public-inbox-index community
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.community
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git