Mikrotik-Router: Unterschied zwischen den Versionen

Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „Der Mikrotik Router kann a) per Webinterface auf http://192.168.4.1/ b) per SSH auf admin@192.168.4.1 erreicht werden. '''Known Bugs''' <nowiki> bbu@ca…“)
 
K
 
Zeile 2: Zeile 2:
  
 
a) per Webinterface auf http://192.168.4.1/  
 
a) per Webinterface auf http://192.168.4.1/  
 +
 
b) per SSH auf admin@192.168.4.1  
 
b) per SSH auf admin@192.168.4.1  
  
Zeile 8: Zeile 9:
 
'''Known Bugs'''
 
'''Known Bugs'''
  
<nowiki>
+
 
 
bbu@calvin:~# ssh 192.168.4.1  -l admin
 
bbu@calvin:~# ssh 192.168.4.1  -l admin
 +
 
Unable to negotiate with 192.168.4.1 port 22: no matching host key type found. Their offer: ssh-dss
 
Unable to negotiate with 192.168.4.1 port 22: no matching host key type found. Their offer: ssh-dss
 +
 
bbu@calvin:~# ssh -oHostKeyAlgorithms=+ssh-dss 192.168.4.1  -l admin
 
bbu@calvin:~# ssh -oHostKeyAlgorithms=+ssh-dss 192.168.4.1  -l admin
 +
 
ssh_dispatch_run_fatal: Connection to 192.168.4.1 port 22: DH GEX group out of range
 
ssh_dispatch_run_fatal: Connection to 192.168.4.1 port 22: DH GEX group out of range
</nowiki>
+
 
  
 
Lösung:  
 
Lösung:  
 
ssh -oHostKeyAlgorithms=+ssh-dss -oKexAlgorithms=diffie-hellman-group1-sha1  192.168.4.1  -l admin
 
ssh -oHostKeyAlgorithms=+ssh-dss -oKexAlgorithms=diffie-hellman-group1-sha1  192.168.4.1  -l admin

Aktuelle Version vom 24. März 2017, 20:11 Uhr

Der Mikrotik Router kann

a) per Webinterface auf http://192.168.4.1/

b) per SSH auf admin@192.168.4.1

erreicht werden.

Known Bugs


bbu@calvin:~# ssh 192.168.4.1 -l admin

Unable to negotiate with 192.168.4.1 port 22: no matching host key type found. Their offer: ssh-dss

bbu@calvin:~# ssh -oHostKeyAlgorithms=+ssh-dss 192.168.4.1 -l admin

ssh_dispatch_run_fatal: Connection to 192.168.4.1 port 22: DH GEX group out of range


Lösung: ssh -oHostKeyAlgorithms=+ssh-dss -oKexAlgorithms=diffie-hellman-group1-sha1 192.168.4.1 -l admin