« Atelier SysRes SE2a5 2023/2024 E11 » : différence entre les versions

De wiki-se.plil.fr
Aller à la navigation Aller à la recherche
(Page créée avec « === '''13/09: Création de la VM''' === Génération du fichier de configuration:<syntaxhighlight lang="shell"> xen-create-image --hostname=Tokyo --ip=172.26.145.105 --netmask=255.255.255.0 --gateway 172.26.145.254 --bridge=bridgeStudents --dir=/usr/local/xen --password=glopglop </syntaxhighlight> Lancement de la VM:<syntaxhighlight lang="shell"> xen console Tokyo.cfg xen console Tokyo </syntaxhighlight> Modication de l'interface eth0 dans /etc/network/interfa... »)
 
Ligne 3 : Ligne 3 :


Génération du fichier de configuration:<syntaxhighlight lang="shell">
Génération du fichier de configuration:<syntaxhighlight lang="shell">
xen-create-image --hostname=Tokyo --ip=172.26.145.105 --netmask=255.255.255.0 --gateway 172.26.145.254 --bridge=bridgeStudents --dir=/usr/local/xen --password=glopglop
xen-create-image --hostname=Rio --ip=172.26.145.113 --netmask=255.255.255.0 --gateway 172.26.145.254 --bridge=bridgeStudents --dir=/usr/local/xen --password=glopglop
</syntaxhighlight>
</syntaxhighlight>
Lancement de la VM:<syntaxhighlight lang="shell">
Lancement de la VM:<syntaxhighlight lang="shell">
xen console Tokyo.cfg
xen console Rio.cfg


xen console Tokyo
xen console Rio
</syntaxhighlight>
</syntaxhighlight>
Modication de l'interface eth0 dans /etc/network/interfaces: <syntaxhighlight lang="shell">
Modication de l'interface eth0 dans /etc/network/interfaces: <syntaxhighlight lang="shell">
auto eth0
auto eth0
iface eth0 inet static
iface eth0 inet static
address 172.26.145.105/24
address 172.26.145.113/24
gateway 172.26.145.254  
gateway 172.26.145.254  
</syntaxhighlight>
</syntaxhighlight>

Version du 2 octobre 2023 à 13:09

13/09: Création de la VM

Génération du fichier de configuration:

xen-create-image --hostname=Rio --ip=172.26.145.113 --netmask=255.255.255.0 --gateway 172.26.145.254 --bridge=bridgeStudents --dir=/usr/local/xen --password=glopglop

Lancement de la VM:

xen console Rio.cfg

xen console Rio

Modication de l'interface eth0 dans /etc/network/interfaces:

auto eth0
iface eth0 inet static
address 172.26.145.113/24
gateway 172.26.145.254

Configuration ssh, modifications dans /etc/ssh/sshd_config:

PermitRootLogin yes
service ssh restart