<div dir="ltr"><div>So I got the simulator fired up, and its very repeatable. The datamodel is at <a href="http://pastebin.com/1m0LBfVr">http://pastebin.com/1m0LBfVr</a>  I had to trim it down to fit the pastebin limitations so LANDevice and some extraneous things aren't present. There has to be something simple (I hope) that I'm doing wrong.</div><div><br></div><div>Console log <a href="http://pastebin.com/wjp10vjd">http://pastebin.com/wjp10vjd</a></div><div><br></div><div>Provisioning script:</div><div><div><font face="monospace, monospace">const now = Date.now();</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">//Ensure we have a WANPPPConnection instance</font></div><div><font face="monospace, monospace">log('Disabling WANPPPConnection');</font></div><div><span style="font-family:monospace,monospace">declare("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANPPPConnection.*.Enable", {value: now}, {value: false});</span><br></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">//Remove the WANIPConnection instance from the ATM interface</font></div><div><font face="monospace, monospace">log('Creating WANIPConnection instance (if necessary)');</font></div><div><font face="monospace, monospace">declare("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.*", {value: now}, {path: 1});</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">declare("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.*.Name", {value: now}, {value: "Bridged"});</font></div><div><font face="monospace, monospace">declare("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.*.ConnectionType", {value: now}, {value: "IP_Bridged"});</font></div><div><font face="monospace, monospace">declare("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.*.Enable", {value: now}, {value: true});</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">log('Setting tags');</font></div><div><font face="monospace, monospace">declare("Tags.Provisioned",null, {value: true});</font></div></div></div>