Wenn ich mich in meinem Unternehmen bei einigen Servern anmelde, werden mein letzter Login und ein riesiger Banner angezeigt:
me@my-laptop$ ssh the-server
Last login: Mon Feb 8 18:54:36 2016 from my-laptop.company.com
************************************************************************
* *
* C O M P A N Y I N F O R M A T I O N S Y S T E M S *
* *
* !WARNING! Your connection has been logged !WARNING! *
* *
* This system is for the use of authorized personnel only. *
* Individuals using this *computer system without authorization, *
* or in excess of their authority as determined by the Company *
* Code of Ethics and Acceptable Use Policy, are subject to having all *
* of their activities on this system monitored, recorded and/or *
* terminated by system personnel. *
* If such monitoring reveals possible evidence of criminal activity, *
* Company may provide said evidence to law enforcement officials, *
* in compliance with its confidentiality obligations and all *
* applicable national laws/regulations with regards to data privacy. *
* *
* This device is maintained by Company Department *
* admin@company.com *
************************************************************************
me@the-server$
Natürlich möchte ich nicht, dass dieses riesige Banner jedes Mal angezeigt wird, wenn ich mich anmelde, aber ich möchte, dass die letzte Anmeldezeit und der letzte Host angezeigt werden .
Wenn ich benutze touch ~/.hushlogin
, wird das Banner nicht angezeigt, aber ich verliere auch die
letzten Anmeldeinformationen . Tatsächlich wird überhaupt nichts angezeigt:
ssh the-server
me@the-server$
Wie entferne ich das Banner, behalte aber die letzte Anmeldezeit und den letzten Host wie folgt:
ssh the-server
Last login: Mon Feb 8 18:54:36 2016 from my-laptop.company.com
me@the-server$
last -w | grep "$USER" | head -n1 | perl -lane 'END{print "Last login: @F[3..6] $F[8] from $F[2]"}'
weil ichlastlog
meinen Hostnamen abgeschnitten habe.last -w "$USER" | ...
esWenn Sie
.bash_profile
angerufen werden, habenlastlog -u "$USER"
Sie etwas ganz Nahes. Die Ausgabe sieht folgendermaßen aus:wo natürlich habe ich die ip adresse redigiert.
last -w -n 1
erhält einen ähnlichen Datensatz, aber aus einer anderen Datenbank.quelle