Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. delete uuid because it is generated and registered in the zone configuration file when it starts (/etc/zones/name_zone.xml).
  2. delete mac address because it is generated and registered in the zone configuration file when it starts (/etc/zones/name_zone.xml).
  3. change name global vnic
  4. change ip address
  5. change zonepath
Code Block
languagebash
create -b
set zonepath=/zones/copy_t4
set brand=dpkg
set autoboot=false
set ip-type=exclusive
add fs
set dir="/export/home/admin"
set special="/export/home/admin"
set type="lofs"
end
add fs
set dir="/export/builds"
set special="/export/builds"
set type="lofs"
end
add net
set physical="vnic2"
set global-nic="stub0"
add property (name=ip,value="192.168.0.2")
add property (name=netmask,value="255.255.255.0")
add property (name=gateway,value="192.168.0.254")
add property (name=primary,value="true")
end
add attr
set name="resolvers"
set type="string"
set value="192.168.0.254"
end

...