TP sysres IMA2a5 2020/2021 G9 : Différence entre versions
De Wiki d'activités IMA
(→Modification du fichier de configuration) |
(→Modification du fichier de configuration) |
||
Ligne 22 : | Ligne 22 : | ||
Le fichier de configuration (vim /etc/xen/NightHawk.cfg) a été modifié pour utiliser une RAM 1024 et le bridge IMA2a5 | Le fichier de configuration (vim /etc/xen/NightHawk.cfg) a été modifié pour utiliser une RAM 1024 et le bridge IMA2a5 | ||
− | # | + | # |
− | # Configuration file for the Xen instance NightHawk, created | + | # Configuration file for the Xen instance NightHawk, created |
− | # by xen-tools 4.8 on Fri Sep 25 10:36:53 2020. | + | # by xen-tools 4.8 on Fri Sep 25 10:36:53 2020. |
− | # | + | # |
− | # | + | # |
− | # Kernel + memory size | + | # Kernel + memory size |
− | # | + | # |
− | kernel = '/boot/vmlinuz-4.19.0-9-amd64' | + | kernel = '/boot/vmlinuz-4.19.0-9-amd64' |
− | extra = 'elevator=noop' | + | extra = 'elevator=noop' |
− | ramdisk = '/boot/initrd.img-4.19.0-9-amd64' | + | ramdisk = '/boot/initrd.img-4.19.0-9-amd64' |
− | vcpus = '1' | + | vcpus = '1' |
− | memory = '1024' | + | memory = '1024' |
− | # | + | # |
− | # Disk device(s). | + | # Disk device(s). |
− | # | + | # |
− | root = '/dev/xvda2 ro' | + | root = '/dev/xvda2 ro' |
− | disk = [ | + | disk = [ |
'file:/usr/local/xen/domains/NightHawk/disk.img,xvda2,w', | 'file:/usr/local/xen/domains/NightHawk/disk.img,xvda2,w', | ||
'file:/usr/local/xen/domains/NightHawk/swap.img,xvda1,w', | 'file:/usr/local/xen/domains/NightHawk/swap.img,xvda1,w', | ||
Ligne 48 : | Ligne 48 : | ||
− | # | + | # |
− | # Physical volumes | + | # Physical volumes |
− | # | + | # |
− | # | + | # |
− | # Hostname | + | # Hostname |
− | # | + | # |
− | name = 'NightHawk' | + | name = 'NightHawk' |
− | # | + | # |
− | # Networking | + | # Networking |
− | # | + | # |
− | vif = [ 'mac=00:16:3E:CC:33:F4 ,bridge=IMA2a5' ] | + | vif = [ 'mac=00:16:3E:CC:33:F4 ,bridge=IMA2a5' ] |
− | # | + | # |
− | # Behaviour | + | # Behaviour |
− | # | + | # |
− | on_poweroff = 'destroy' | + | on_poweroff = 'destroy' |
− | on_reboot = 'restart' | + | on_reboot = 'restart' |
− | on_crash = 'restart' | + | on_crash = 'restart' |
===Lancement de la machine virtuelle=== | ===Lancement de la machine virtuelle=== | ||
xl console NightHawk | xl console NightHawk |
Version du 11 octobre 2020 à 22:07
By Crispin DJAMBA
Sommaire
Présentation du projet
Le projet de Systèmes et Réseaux a pour but de nous donner les rudiments nécessaires pour :
- Assurer la redondance matérielle au sein d'une infrastructure réseau
- Gérer des partitions virtuelles
- Créer une machine virtuelle
- Installer un serveur web sécurisé et y déployer un site
- Attaquer un réseau Wifi
Installation de la machine virtuelle avec xen sur Capbreton
Installation de la machine virtuelle
ssh root@capbreton.polytech-lille.info
Création et lancement de la machine virtuelle
xen-create-image --hostname=NightHawk --ip=193.48.57.170 --gateway=193.48.57.163 --netmask=255.255.255.240 --dir=/usr/local/xen --dist=beowulf --password=glopglop
Modification du fichier de configuration
Le fichier de configuration (vim /etc/xen/NightHawk.cfg) a été modifié pour utiliser une RAM 1024 et le bridge IMA2a5
# # Configuration file for the Xen instance NightHawk, created # by xen-tools 4.8 on Fri Sep 25 10:36:53 2020. #
# # Kernel + memory size # kernel = '/boot/vmlinuz-4.19.0-9-amd64' extra = 'elevator=noop' ramdisk = '/boot/initrd.img-4.19.0-9-amd64'
vcpus = '1' memory = '1024'
# # Disk device(s). # root = '/dev/xvda2 ro' disk = [ 'file:/usr/local/xen/domains/NightHawk/disk.img,xvda2,w', 'file:/usr/local/xen/domains/NightHawk/swap.img,xvda1,w', ]
# # Physical volumes #
# # Hostname # name = 'NightHawk'
# # Networking # vif = [ 'mac=00:16:3E:CC:33:F4 ,bridge=IMA2a5' ]
# # Behaviour # on_poweroff = 'destroy' on_reboot = 'restart' on_crash = 'restart'
Lancement de la machine virtuelle
xl console NightHawk