diff --git a/steelscript/netprofiler/core/netprofiler.py b/steelscript/netprofiler/core/netprofiler.py index 725bc94..4b72950 100644 --- a/steelscript/netprofiler/core/netprofiler.py +++ b/steelscript/netprofiler/core/netprofiler.py @@ -65,7 +65,11 @@ def __init__(self, host, port=None, auth=None): """ super(NetProfiler, self).__init__("profiler", host, port, auth=auth, - versions=[APIVersion("1.0")],override_services_api='/api/common/1.0/services') + versions=[APIVersion("1.0")], + enable_auth_detection = False, + supports_auth_basic=True, + supports_auth_oauth=True, + override_services_api='/api/common/1.0/services') self.api = _api1.Handler(self)