September 2007 Archives

Sep 29, 2007

Halo 3 – Pas si impressionnant

Posted by Martin Perron in Video Games Reviews No comments

Pas si impressionnant que ça. Je m’attendais à mieux! Vive le buchage dans le tas sans stratégie.
Le menu n’est pas super explicatif.
Les graphique sont décevant!
Mais ont devient quand même addict à force de jouer.


Sep 28, 2007

ssh tunneling

Posted by Martin Perron in HowTo - Linux No comments

Dans une console tu tappes
ssh -L 8888:192.168.1.14:80 user@host -p 22
pour plusieurs tu répete le -L
ssh -L 8888:192.168.1.14:80 -L 1234:192.168.1.14:5222 user@host -p 22

explication:
8888 port local
80 port distant du serveur
http://localhost:8888 pointe sur http://192.168.1.14:80


Sep 28, 2007

rsync (manuelle)

Posted by Martin Perron in HowTo - Linux 1 comment

exemple:
rsync -avH –numeric-ids -e ssh root@192.168.1.5:/home/cblah /data/server_backup/bk


Sep 28, 2007

Création d’un fichier ssh avec tunnel (automatisation)

Posted by Martin Perron in HowTo - Linux No comments

## Updated .ssh/config ##
Host work
HostName 66.35.250.203
User sporkey
Port 22
LocalForward 20000 192.168.0.66:80
LocalForward 22000 192.168.0.66:22
LocalForward 22139 192.168.0.8:139
LocalForward 22110 192.168.0.5:110


Sep 28, 2007

nmap

Posted by Martin Perron in HowTo - Linux No comments

Scanner les ports d’une machine:
nmap -P0 192.168.1.14
ping les hosts
nmap -sP 192.168.1.1-254