08:20:35 I have a sparse zone I created. It's working pretty well, but i wanted to add a second vnic on a different etherstub. I set it up on zonecfg, but after restarting the zone nothing happens. I don't seem to be able to set it in the zone either. Is there something I'm missing for this or do I just need to reinstall the zone? 08:21:29 To clarify, I see it in dladm, but not ipadm 08:28:55 for what I understand, you've successfully attached the additional vnic to the zone, and now you have to configure IP addressing inside it 08:32:41 that's what I thought at first to, but when I try I get this message: "ipadm: Could not create address: Operation not permitted on from-gz interface" 08:34:23 I'll admit I spend a lot more time in bhyve then in zones, so I'm probably just not understanding something. 08:37:49 Ok, so I think you should set the IP address with zonecfg by setting allowed-address and defrouter properties, as in this example: https://omnios.org/setup/zones#example-1 08:39:50 obviously I'm assuming that you are working in an exclusive-IP zone 08:43:09 it's exclusive-ip, and I did set allowed-address. This is on an etherstub, so it doesn't have access to an outside network... I'm not sure what I would set the defrouter on it to (my assumption is that wouldn't apply to this device). 08:43:53 defrouter is set on the other net stanza 10:53:17 it looks like the file /etc/ipadm/ipadm.conf in the zone is populated only when you issue the command "zoneadm -z install" in GZ. To add an IP address to the 2nd vnic you can unset the "allowed-address" property in zonecfg and you should be able to set it with ipadm inside the zone 14:15:41 @warden okay, thanks for your help! 14:24:25 oninoshiko - There is a persistent flag that means the zone won't do the IP address discovery more than once. It's a bit of a problem for usability. 14:24:45 If you remove the flag and reboot the zone, it should appear and be fine after that (with alllowed-address etc. in the zone config) 14:25:18 Within the zone do: `svccfg -s network/ip-interface-management:default delprop ipmgmtd/first_boot_done` 14:25:26 Or you can do it from the GZ with `svccfg -z -s ...` 14:59:34 oh! Fantastic! Thank you!