05:08:40 jason123onirc: well, that depends. if you're using exclusive-ip zone mine looks something like this (I didn't set the mac, it did that on it's own): https://dpaste.org/65bo1 05:09:46 in your case, global-nic is going to be your physical nic 05:12:26 (the VM I pulled that from used an etherstub) 05:16:46 I'm afraid I don't know the other types though 13:25:18 oninoshiko: I used 10.0.1.1 because that is what I saw online but is it better to use 192.168.2.1 instead 13:50:49 you just need to use whatever your network is useing 13:51:36 both are nonroutable IPs, so they'll need to be NATed 14:38:49 When is the r54 freeze? 15:39:48 So if my network is 192.168.1.1 then I can use 192.168.2.1 for the zone? 15:48:38 depends on you netmask and if you want internet access (given that your IP router offerst to route 192.168.1.1 to 192.168.1.254 to the internet 15:49:44 /n/13 16:21:52 I want internet on the zone but want it to be on its own internal ip 16:24:03 jason123onirc: really depends on how the rest of your network is set up. what you'd do on a typical home network with ISP router might differ from what you'd do on a VPS or colo'ed machine in a datacenter. 16:24:26 yeah that makes sense 16:24:57 on a home network, it's perhaps easiest to create a vnic over your physical nic and let it get an address via dhcp from your router outside the box. 16:25:42 so I have to give it an ip that my router can control? 16:25:46 you could also put the zone's vnic on an etherstub and have the global zone act as NAT for the non-global zone(s) 16:26:58 what ip would I use if i want to do nat? 16:27:50 jason123onirc: again, depends on your home network config. if you can control the range of addresses given out by your router's DHCP server you can statically assign an address outside the router's pool. 16:29:22 jason123onirc: if you want to do double-nat (with nat on your router and again on your global zone) you could pick any rfc1918 subnet not used by your existing network. 16:31:03 (rfc1918 = 192.168.0.0/16, 172.16.0.0/12, 10.0.0.0/8 and smaller subnets of those networks) 16:45:17 I have it set as 16:45:20 "allowed-address" : "192.168.0.101/16", 16:45:20 "defrouter" : "192.168.0.0", 16:45:55 but its not giving the zone internet access 16:47:57 what physical nic is the zone's vnic on top of? 16:49:24 defrouter shouldn't be set in zonecfg for an exclusive stack zone; you have to set the zone and route from inside the zone 16:49:56 excuse me, you have to set the address and route from inside the zone (either ipadm static or dhcp) 16:51:07 192.168.0.0 doe not look like node address 16:51:17 that, too. 16:51:24 would it be 192.168.0.1? 16:51:29 yep 16:51:35 ok 16:51:37 or 192.168.1.254 16:51:43 first address is network, last is broadcast 16:51:44 or whatever your first-hop router's address is 16:51:52 and then i set it inside of the zone? 16:52:11 yes, zlogin to zone, and set with ipadm 16:52:22 my router is on 192.168.1.1 but i want to do nat on the zone 16:57:45 then you need to setup ipnat in the global zone, put the vnic on top of an etherstub, give the global zone an address on the etherstub, turn on ip forwarding, and point the zone's default route at the global zone's address on the etherstub 17:20:59 i try to create a static ip from inside the zone and it says 17:21:00 ipadm: Could not create address: Operation not permitted on from-gz interface 17:38:04 what ip-type is configured in zone? 18:02:43 it says from-gz 18:12:41 you need to check from global zone, either zonecfg -z zonename info or see from xml file:) 18:18:19 If I set a allowed address outside of my dhcp then it fails but I will try if it works to configure it inside the zone 18:19:03 I am just trying to get internet access working