Sep 27, 2013

"Scheunenfund" Kapsch troubadour tr7020 - Radio von 1978

Ein wahrlicher Scheunenfund ergab sich bei Freunden von mir als sie auf ihren Anliegen Umbauten und eine alte Hütte abrissen. Als Fan von in den Jahren gekommener Radios stand ich sofort bereit um mich diesem Patienten anzunehmen und ihm wieder ein wenig neues Leben einzuhauchen.
Die Funktion war eigentlich wie am ersten Tag, jedoch war er sehr verstaubt und die Zierleiste an der Front hing ein wenig schief.
Nach 1h intensivem polieren sowie neu verkleben der Leiste erstrahlt er wieder wie neu :-)







Sep 23, 2013

Mikrotik - automatischer WPA Key Wechsel


Jeder der schon mal automatisch seinen Wlan Schlüssel wechseln lassen wollte, kann dies mit dem angefügten Script lösen.

Ich starte es jeden Tag um Mitternacht und stelle somit für mein Gäste Wlan den Schlüssel auf den jeweiligen Tag ein. Dies erlaubt mir eine geringfügig bessere Sicherheit als ein statischer Schlüssel, welcher täglich gleich bleibt...

:global wlankey [:pick [/system clock get]]
/interface wireless security-profiles set wpa-pre-shared-key=$wlankey wpa2-pre-shared-key=$wlankey  numbers=wlan-profile
Der output wäre hier für Heute sep/23/2013

Ab Mitternacht ist das Passwort sep/24/2013

Jun 18, 2013

Nexus 7k delivery

Having big balls..

ssh-key exchange with remote server for password less authentification

long time ago with no update, ok - i guess its a good day to do some.. :p

most it-admins are confronted with doing some ssh-sessions to their remote servers.
time costs money, so if u like to get more comfortable with connecting to them, here is a little tutorial from me that will treat ssh authentification with public keys.

on the ssh-client: ( im currently logged in with my root acc )

#cd .ssh/
#ssh-keygen      # will generate your public key
#cat *.pub | ssh root@IP-of-RemoteServer 'umask 077; cat >>.ssh/authorized_keys2

after all your public key will be copied to the remote host.

on the remote-host:

edit your /etc/ssh/sshd_config

be sure that the following options are enabled.

PubkeyAuthentication yes
AuthorizedKeysFile  ~/.ssh/authorized_keys2   # the key path should be the same like on the client


to test your setup, just do a ssh username@RemoteServer

from now you shouldnt be asked for a user / pass.