Administration

Configuration pour point d’accès sécurisé

Configuration pour point d’accès sécurisé. Ouvrir : /etc/hostapd/hostapd.conf Remplacer tout par : interface=wlan0 ssid=stationpa channel=10 driver=rtl871xdrv ieee80211n=1 hw_mode=g device_name=RTL8192CU manufacturer=Realtek wpa=2 wpa_passphrase=mot2passe wpa_key_mgmt=WPA-PSK wpa_pairwise=TKIP rsn_pairwise=CCMP beacon_int=100 ignore_broadcast_ssid=0 auth_algs=1 Action : sudo service hostapd restart Lancement pour détecter les erreurs : pi@framboise /etc/init.d $ hostapd /etc/hostapd/hostapd.conf Configuration file: /etc/hostapd/hostapd.conf Line 9: invalid line ‘ ‘ Line […]

Point d’accés sans-fil

Point d’accés sans-fil. – Distribution : Raspbian : 2013-09-10-wheezy-raspbian – Hostname : stationpa – Matériel : Netgear WNA1000M-100FRS Micro Adaptateur USB Wifi-N 150 Nano Simple band 802.11n jusqu’a 150Mbps : Diagramme : ^ Internet | +——–+——-+ |Livebox | |—————-| |192.168.1.1 | +—+DHCP | | +—————-+ +—————–+ | |Ordinateur | | |—————–| |Filaire +——–>|192.168.2.10 | | […]

Installation d’un serveur Linux-Apache-Mysql-Php

Installation d’un serveur Linux-Apache-Mysql-Php. 1) Installation des paquetages de LAMP : pi@geidiprime ~ $ sudo apt-get install mysql-server mysql-client apache2 php5 libapache2-mod-php5 phpmyadmin 2) Création du répertoire de site : pi@geidiprime ~ $ mkdir public_html 3) Fichier de test : Ouvrir : ~/public_html/index.php Ajouter : 4) Configuration pour la prise en compte de php5 : […]

Informations sur le Raspberry Pi après la connexion

Informations sur le Raspberry Pi après la connexion. Ouvrir : informations.sh Ajouter : #!/bin/bash let upSeconds= »$(/usr/bin/cut -d. -f1 /proc/uptime) » let secs=$((${upSeconds}%60)) let mins=$((${upSeconds}/60%60)) let hours=$((${upSeconds}/3600%24)) let days=$((${upSeconds}/86400)) UPTIME=`printf « %d jours, %02dh%02dm%02ds » « $days » « $hours » « $mins » « $secs »` # get the load averages read one five fifteen rest < /proc/loadavg echo "$(tput setaf 2) .~~. .~~. `date +"%A, […]

TrueCrypt : Script d’évaluation

TrueCrypt : Script d’évaluation. Ouvrir : evaluationTrueCrypt_v2.sh Ajouter : #!/bin/bash #mkdir volumeChiffre dd if=/dev/random of=aleatoire bs=512 count=1 #for HASH in RIPEMD-160 SHA-512 Whirlpool for HASH in Whirlpool do #for ENCALG in AES Serpent Twofish AES-Twofish AES-Twofish-Serpent Serpent-AES Serpent-Twofish-AES Twofish-Serpent for ENCALG in AES-Twofish-Serpent do echo « Algorithms: $HASH $ENCALG » >> statChiffrement truecrypt –create /home/pi/volumeChiffre.vol –filesystem=fat –size=536870912 […]

Benchmark de chiffrement avec TrueCrypt

Benchmark de chiffrement avec TrueCrypt. Ouvrir : evaluationTrueCrypt.sh Ajouter : #!/bin/bash #mkdir volumeChiffre dd if=/dev/random of=aleatoire bs=512 count=1 #for HASH in RIPEMD-160 SHA-512 Whirlpool for HASH in RIPEMD-160 do #for ENCALG in AES Serpent Twofish AES-Twofish AES-Twofish-Serpent Serpent-AES Serpent-Twofish-AES Twofish-Serpent for ENCALG in AES do echo « Algorithms: $HASH $ENCALG » >> statChiffrement truecrypt –create /home/pi/volumeChiffre.vol –filesystem=fat […]

Truecrypt : Création de volume chiffré sans interaction

Truecrypt : Création de volume chiffré sans interaction. Truecrypt : Création de volume chiffré sans interaction. Calcul de la taille en ko d’un fichier de 4 go : taille en ko = 4 * (2^30) 1 go = 1073741824 ko 4 go = 4294967296 ko 1) Création d’un volume chiffré : pi@raspberrypi ~ $ time […]

Truecrypt : Création de volume chiffré

Truecrypt : Création de volume chiffré. * Distribution : 2013-07-26-wheezy-raspbian * Carte mémoire : Marque : PNY Capacité : 8 go Classe : 10 1) Information : pi@raspberrypi ~ $ df Sys. fich.     1K-blocks    Util. Disponible Uti% Monté sur rootfs           7599584  1545268    5727236  22% / … 2) Chiffrer un fichier comme un volume virtuel : […]

Connexion réseau sans-fil sécurisé

Connexion réseau sans-fil sécurisé. Connexion du Raspberry Pi (en tant que client) sur la Livebox. 1) Clé usb sans-fil : – Adaptateur USB sans-fil : D-Link Wireless N Nano USB Adapter DWA-131: http://www.amazon.fr/gp/product/B002PD61Y4/ref=oh_details_o00_s00_i00 2) LiveBox d’Orange utilisé comme modem Internet et routeur : @ip : 192.168.1.1 Paramètres WIFI : – Nom du réseau (SSID) : […]

Chiffrement de clé usb avec TrueCrypt

Chiffrement de clé usb avec TrueCrypt. 1) Insérer la clé usb. Ne pas monter le périphérie de stockage externe. 2) Vérification : pi@raspberrypi ~ $ sudo fdisk -l … Disk /dev/sdb: 16.0 GB, 16039018496 bytes 255 heads, 63 sectors/track, 1949 cylinders, total 31326208 sectors Units = sectors of 1 * 512 = 512 bytes Sector […]