What do the logs on the CPE have in them?

On Tue, Oct 10, 2017 at 1:23 AM, Margerita <[email protected]>
wrote:

> Thanks Dan,
>
> I got your idea here, but I can't get it to work this way. I got 9005
> error even with smallest configuration like this:
>
> declare 
> ("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.*",
> null, {path: 1});
> declare ("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.
> WANIPConnection.*.[Name:Routed]", {path:1}, {path: 1});
>
> any ideas?
>
> --
> Michal
>
> W dniu 2017-10-05 o 18:54, Dan Morphis pisze:
>
> Try this :)
>
> declare 
> ("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.*",
> null, {path: 2}); //Tell genie we want two interfaces
> declare ("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WA
> NIPConnection.*.[ConnectionType:IP_Routed,Name:Routed,Enable:true]",
> {path: 1}, {path: 1});
> declare ("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WA
> NIPConnection.*.[ConnectionType:IP_Bridged,Name:Bridged,Enable:true]",
> {path: 1}, {path: 1});
>
> That will create two interfaces. If there are more interfaces than that,
> they will be deleted. If there are less than 2, then interfaces will be
> added until the count is 2. Then it will set the parameters to whats in the
> brackets.
>
> -dan
>
> On Thu, Oct 5, 2017 at 4:33 AM, Margerita <[email protected]>
> wrote:
>
>> Hi,
>>
>> I would like to create two interfaces using Provision:
>>
>> declare 
>> ("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.*",
>> null, {path: 1});
>> declare ("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WA
>> NIPConnection.*.ConnectionType", null, {value: "IP_Routed"});
>> declare 
>> ("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.*",
>> null, {path: 1});
>> declare ("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WA
>> NIPConnection.*.ConnectionType", null, {value: "IP_Bridged"});
>>
>> and want to achieve the following effect:
>>
>> InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1
>> InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.ConnectionType
>> IP_Routed
>> InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.2
>> InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.2.ConnectionType
>> IP_Bridged
>>
>> but whatever I put in path values, I always finish with only one
>> interface or with two interfaces but both 'IP_Bridged'.
>> What is the correct method for achieving my goal?
>>
>> --
>> Michal
>> _______________________________________________
>> Users mailing list
>> [email protected]
>> http://lists.genieacs.com/mailman/listinfo/users
>>
>
>
>
> _______________________________________________
> Users mailing 
> [email protected]http://lists.genieacs.com/mailman/listinfo/users
>
>
>
> _______________________________________________
> Users mailing list
> [email protected]
> http://lists.genieacs.com/mailman/listinfo/users
>
>
_______________________________________________
Users mailing list
[email protected]
http://lists.genieacs.com/mailman/listinfo/users

Reply via email to