Provide proper link bridge for extra interfaces
[mirror/dsa-wiki.git] / input / howto / install-ganeti.creole
index 65647ba..85f1476 100644 (file)
@@ -243,6 +243,7 @@ Note the following:
 * the primary and secondary nodes have been explicitly set
 * the operating system type is 'debootstrap+dsa'
 * the network interfarce 0 (eth1 on the system) is set to the instance's interface on the public network
+* If qux.d.o does not yet exist in DNS/LDAP, you may need --no-ip-check --no-name-check.  Be careful that the hostname and IP address are not taken already!
 
 ----
 
@@ -288,16 +289,19 @@ When creating the instance, indicate both netwokrs:
       --os-size 4GiB \
       --os-type debootstrap+dsa \
       --hypervisor-parameters kvm:initrd_path=,kernel_path= \
-      --net 0:ip=A.B.C.4,1:ip=E.F.G.4 \
+      --net 0:ip=A.B.C.4 \
+      --net 1:link=br1,ip=E.F.G.4 \
       qux.debian.org
 }}}
 
+* If qux.d.o does not yet exist in DNS/LDAP, you may need --no-ip-check --no-name-check.  Be careful that the hostname and IP address are not taken already!
+
 When updating an existing instance, add the interface:
 
 {{{
     gnt-instance shutdown qux.debian.org
     gnt-instance modify \
-      --net add:ip=E.F.G.4 \
+      --net add:link=br1,ip=E.F.G.4 \
       qux.debian.org
     gnt-instance startup qux.debian.org
 }}}