2015年7月15日水曜日

libvirt で internal なネットワークを作って仮想マシンを接続

internal なネットワークを作成してそこに仮想マシンを接続したかった。net-create でネットワークを作って attach-interface 仮想マシンに接続。以下コマンド記録。
$ cat /var/tmp/mynet.xml
<network>
  <name>internal1</name>
  <bridge name='brint1' stp='on' delay='0' />
</network>
# virsh
Welcome to virsh, the virtualization interactive terminal.
Type:  'help' for help with commands
       'quit' to quit
virsh # net-create /var/tmp/mynet.xml
virsh # net-list
 Name                 State      Autostart     Persistent
----------------------------------------------------------
 default              active     yes           yes
 internal1            active     no            no
virsh # list
 Id    Name                           State
----------------------------------------------------
 2     vcent1                         running
virsh # attach-interface vcent1 network internal1
Interface attached successfully










0 件のコメント:

コメントを投稿