- Device.Routing.Router.{i}.IPv4Forwarding.{i}.: fix a crash in add method
- Device.Routing.Router.{i}.IPv{4,6}Forwarding.{i}.: implement the delete method for all instances instead of returning 9005 error
- Device.Routing.Router.{i}.IPv6Forwarding.{i}.ForwardingPolicy: change its default permission according to the standard
- Device.Routing.Router.{i}.IPv6Forwarding.{i}.Alias: fix get/set method
- Update the default value of DMRouting struct in order to fix the setting of parameters via obuspa
*/ add support for route6_disabled section when disabling static route6
*/ Fix set method of Device.Routing.Router.{i}.IPv4Forwarding.{i}.Enable
*/ Fix get/set method of Device.Routing.Router.{i}.IPv6Forwarding.{i}.Enable
*/ below the list of fixed parameters:
- Device.Routing.Router.{i}.IPv4Forwarding.{i}.DestIPAddress should be empty
- Device.Routing.Router.{i}.IPv4Forwarding.{i}.DestSubnetMask should be empty
- Device.Routing.Router.{i}.IPv4Forwarding.{i}.Enable should be false
- Device.Routing.Router.{i}.IPv4Forwarding.{i}.Status should be Disabled
- Device.Routing.Router.{i}.IPv4Forwarding.{i}.GatewayIPAddress should be Empty
- Device.Routing.Router.{i}.IPv4Forwarding.{i}.ForwardingMetric should be -1
- Device.Routing.Router.{i}.IPv6Forwarding.{i}.DestIPPrefix should be empty
- Device.Routing.Router.{i}.IPv6Forwarding.{i}.NextHop should be empty
- Device.Routing.Router.{i}.IPv6Forwarding.{i}.Interface should be empty
- Device.Routing.Router.{i}.IPv6Forwarding.{i}.Enable should be false
- Device.Routing.Router.{i}.IPv6Forwarding.{i}.Status should be Disabled
- Device.Routing.Router.{i}.IPv6Forwarding.{i}.ForwardingMetric should be -1
Here is the list of fixed parameters:
- Device.QoS.Queue.{i}.TrafficClasses should be empty
- Device.QoS.Queue.{i}.Precedence should be 1
- Device.QoS.Queue.{i}.ShapingRate should be -1
- Device.QoS.Queue.{i}.SchedulerAlgorithm should be SP
This caused the libbbfdm.so not beining linked against -ldl direclty.
It might not have caused any issues because the linker adds it as
depenency of other libraries like libcurl when resolving symbols.
Signed-off-by: Daniel Danzberger <daniel@dd-wrt.com>
- Added support for Device.QoS.QueueStats object from TR181.
- The values are fetched from the below ubus call:
ubus call qos queue_stats '{"ifname":"eth0","qid":"0"}'
- Tested add/delete for QueueStats object via usp.
- Tested set/get for the QueueStats params via usp.