Browse Source
Merge pull request #11044 from thingsboard/fix/snmp-authentication-protocol
Fix MD5 SNMP authentication protocol
pull/11056/head
Viacheslav Klimov
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
ui-ngx/src/app/shared/models/device.models.ts
|
|
|
@ -655,7 +655,7 @@ export enum SnmpAuthenticationProtocol { |
|
|
|
SHA_256 = 'SHA_256', |
|
|
|
SHA_384 = 'SHA_384', |
|
|
|
SHA_512 = 'SHA_512', |
|
|
|
MD5 = 'MD%' |
|
|
|
MD5 = 'MD5' |
|
|
|
} |
|
|
|
|
|
|
|
export const SnmpAuthenticationProtocolTranslationMap = new Map<SnmpAuthenticationProtocol, string>([ |
|
|
|
|