[+] ssh - po

Konfiguracja serwerów, usług, itp.
hokus
Posty: 18
Rejestracja: 30 listopada 2007, 22:37

[+] ssh - połączenie z lokalnej sieci

Post autor: hokus »

Witam.

Postawiłem serwer ssh, mogę połączyć się z komputerem, z zewnątrz ale gdy chcę się połączyć z komputera z tej samej sieci to dostaje komunikat:
port 22 . Connection refused
Będę wdzięczny za pomoc.
Tak wygląda sshd_config

Kod: Zaznacz cały

# Package generated configuration file
# See the sshd(8) manpage for details

# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 768

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 600
PermitRootLogin yes
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile	%h/.ssh/authorized_keys

# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no

# Change to no to disable tunnelled clear text passwords
PasswordAuthentication yes

# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

X11Forwarding no
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no

#MaxStartups 10:30:60
#Banner /etc/issue.net

# Allow client to pass locale environment variables
AcceptEnv LANG LC_*

Subsystem sftp /usr/lib/openssh/sftp-server

UsePAM yes
Pies
Beginner
Posty: 127
Rejestracja: 22 sierpnia 2008, 21:17

Post autor: Pies »

Korzystasz z jakiegoś firewalla?
beel
Beginner
Posty: 340
Rejestracja: 28 marca 2007, 07:06

Post autor: beel »

W firewall powinieneś dopisać (oczywiście jeśli go masz, a jeśli nie to warto poczytać o iptables i później plik firewall umieścić np. w /etc/init.d):

Kod: Zaznacz cały

iptables -A INPUT -p tcp --dport 22 -j ACCEPT
raph
Posty: 25
Rejestracja: 16 lutego 2008, 17:18
Lokalizacja: Zgorzelec

Post autor: raph »

Spróbuj łączyć się po IP wewnętrznym, zawsze tak musiałem kiedy łączyłem się ze swojej sieci.
hokus
Posty: 18
Rejestracja: 30 listopada 2007, 22:37

Post autor: hokus »

Dziękuje, pomogło to:
raph pisze:Spróbuj łączyć się po IP wewnętrznym, zawsze tak musiałem kiedy łączyłem się ze swojej sieci.
ODPOWIEDZ