Hallo allerseits,
ich bekomme über meinen SSH-Tunnel mit RSA-Zertifikat keine Verbindung zum lokalen LAN der DS.
Die WAN-Verbindung zur DS funktioniert und auf der Konsole lässt sich auch alles ausführen.
Es klappt aber keine Verbindung zu den DS-Anwendungen oder dem lokalen Netz der DS.
Und sorry ich finde leider keine Lösung in den bestehenden Beiträgen.
Meine DS ist Modell 212 mit DSM 4.3-3810 Update 4
Meine „sshd_config“ sieht ohne die auskommentierten Zeilen so aus:
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile /ssh/authorized_keys
ChallengeResponseAuthentication no
UsePAM yes
AllowAgentForwarding yes
AllowTcpForwarding yes
GatewayPorts yes
TCPKeepAlive yes
UseDNS yes
PermitTunnel yes
Pfad ist:
/etc/ssh/sshd_config
Die „S95sshd.sh“ sieht unter beiden Pfaden gleich aus.
Pfade:
/usr/syno/etc/rc.d/
/usr/syno/etc.defaults/rc.d/
#!/bin/sh
# Copyright (c) 2000-2012 Synology Inc. All rights reserved.
RunSSH=`/bin/get_key_value /etc/synoinfo.conf runssh`
. /etc.defaults/rc.subr
. /usr/syno/etc.defaults/rc.ssh.subr
case "$1" in
stop)
echo "Stop SSH..."
${SSHDUtils} --unregister_kill ${ReferKeyShell}
;;
start)
if [ "yes" = ${RunSSH} ]; then
# gen-key and start sshd in background mode
IsPidRunning ${SSHPidFile}
if [ $? = 1 ]; then
echo "Another SSH is starting. Skip..."
${SSHDUtils} --register ${ReferKeyShell} ${ReferProcShell}
exit 0
fi
if [ "yes" = "$SupportSSH" ]; then
/bin/sh /usr/syno/etc.defaults/rc.ssh > /dev/null 2>&1 &
echo "Start SSH..."
fi
fi
;;
restart)
$0 stop
sleep 1
$0 start
;;
status)
if [ "yes" = ${RunSSH} ]; then
IsSSHDAlive
return $?
else
return $LSB_STAT_NOT_RUNNING
fi
;;
*)
echo "usage: $0 { start | stop | restart | status}" >&2
exit 1
;;
esac
Wer kann mir helfen?
ich bekomme über meinen SSH-Tunnel mit RSA-Zertifikat keine Verbindung zum lokalen LAN der DS.
Die WAN-Verbindung zur DS funktioniert und auf der Konsole lässt sich auch alles ausführen.
Es klappt aber keine Verbindung zu den DS-Anwendungen oder dem lokalen Netz der DS.
Und sorry ich finde leider keine Lösung in den bestehenden Beiträgen.
Meine DS ist Modell 212 mit DSM 4.3-3810 Update 4
Meine „sshd_config“ sieht ohne die auskommentierten Zeilen so aus:
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile /ssh/authorized_keys
ChallengeResponseAuthentication no
UsePAM yes
AllowAgentForwarding yes
AllowTcpForwarding yes
GatewayPorts yes
TCPKeepAlive yes
UseDNS yes
PermitTunnel yes
Pfad ist:
/etc/ssh/sshd_config
Die „S95sshd.sh“ sieht unter beiden Pfaden gleich aus.
Pfade:
/usr/syno/etc/rc.d/
/usr/syno/etc.defaults/rc.d/
#!/bin/sh
# Copyright (c) 2000-2012 Synology Inc. All rights reserved.
RunSSH=`/bin/get_key_value /etc/synoinfo.conf runssh`
. /etc.defaults/rc.subr
. /usr/syno/etc.defaults/rc.ssh.subr
case "$1" in
stop)
echo "Stop SSH..."
${SSHDUtils} --unregister_kill ${ReferKeyShell}
;;
start)
if [ "yes" = ${RunSSH} ]; then
# gen-key and start sshd in background mode
IsPidRunning ${SSHPidFile}
if [ $? = 1 ]; then
echo "Another SSH is starting. Skip..."
${SSHDUtils} --register ${ReferKeyShell} ${ReferProcShell}
exit 0
fi
if [ "yes" = "$SupportSSH" ]; then
/bin/sh /usr/syno/etc.defaults/rc.ssh > /dev/null 2>&1 &
echo "Start SSH..."
fi
fi
;;
restart)
$0 stop
sleep 1
$0 start
;;
status)
if [ "yes" = ${RunSSH} ]; then
IsSSHDAlive
return $?
else
return $LSB_STAT_NOT_RUNNING
fi
;;
*)
echo "usage: $0 { start | stop | restart | status}" >&2
exit 1
;;
esac
Wer kann mir helfen?