Sendmail :
echo '3,0 peter@imap.local' | sendmail -d21.12 -d8.20 -d60.5 -bt
- -d21.12 – tracking R lines processing in sendmail.cf
- -d8.20 – tracking DNS queries
- -d60.5 – tracking map lookups
Solaris/OpenIndiana/Nexenta : SSH mais un temps fou à répondre
Et comme c’est un Solaris, l’option « UseDNS = no » ne fonctionne pas.
L’astuce en 3 lignes :
echo "GSSAPIAuthentication no" >> /etc/ssh/sshd_config
echo "LookupClientHostnames no" >> /etc/ssh/sshd_config
svcadm restart ssh
VMWare : install vmware-tool sous debian squeeze
apt-get install build-essential make linux-headers-`uname -r` -y
mount /media/cdrom0
cd /usr/local/src/
tar xfz /media/cdrom/VMwareTools-8.6.5-621624.tar.gz
sync
umount /media/cdrom0
cd vmware-tools-distrib/
./vmware-install.pl
Windows 2008 R2 : Autoriser les réponses au PING
Avec du PowerShell, parce que quand même faudrait voire à pas déconner de trop quand même…
netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow
Et quand ça passe pas (version antèrieur) :
netsh firewall set icmpsetting 8
Network Manager : Démarrer un VPN en cli
Identification du VPN
nmcli connection
Lancement du VPN
nmcli --ask connection up id <VPN_ID>