Skip to content

Commit 1f402a9

Browse files
committed
Merge branch 'master' into feature/authentication-enhancements
2 parents cffd79c + a708e55 commit 1f402a9

File tree

6 files changed

+64
-2
lines changed

6 files changed

+64
-2
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: ["bug", "needs-triage"]
5+
body:
6+
- type: checkboxes
7+
id: terms
8+
attributes:
9+
label: Please try to fill out as much of the information below as you can. Thank you!
10+
options:
11+
- label: Yes, I've searched similar issues on GitHub and didn't find any.
12+
required: true
13+
- type: input
14+
id: app_version
15+
attributes:
16+
label: Which version contains the bug?
17+
placeholder: 1.0.0
18+
- type: textarea
19+
id: description
20+
attributes:
21+
label: Describe the bug
22+
description: Please provide a concise description of the bug, add any relevant output or error messages. You can use markdown.
23+
- type: textarea
24+
id: recreate
25+
attributes:
26+
label: How to recreate the bug?
27+
description: Please provide the steps to recreate the issue.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Documentation
2+
description: Suggest documentation improvements
3+
title: "[Documentation]: "
4+
labels: ["documentation"]
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Describe the improvements you'd like.
10+
description: Please provide as much context as possible. You can use markdown.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Feature Request
2+
description: Request a feature or enhancement
3+
title: "[Feature]: "
4+
labels: ["feature", "needs-triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Please try to fill out as much of the information below as you can. Thank you!
10+
**Note:** If you want to sponsor new features, contact us at [email protected]
11+
- type: textarea
12+
id: description
13+
attributes:
14+
label: Describe the feature request
15+
description: Please provide a concise description of the feature. You can use markdown.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Question
2+
description: Ask a question
3+
title: "[Question]: "
4+
labels: ["question"]
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Ask a question
10+
description: Please provide as much context as possible. You can use markdown.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ make install
5959
-s|--speed override speed detection with this value (bits per sec)
6060
-x|--trim cut this number of characters from the start of interface descriptions
6161
Useful for nortel switches
62-
-j|--auth-proto SNMPv3 Auth Protocol (SHA|MD5)
62+
-j|--auth-proto SNMPv3 Auth Protocol (SHA|SHA-224|SHA-256|SHA-384|SHA-512|MD5)
6363
-J|--auth-phrase SNMPv3 Auth Phrase
6464
-k|--priv-proto SNMPv3 Privacy Protocol (AES|DES) (optional)
6565
-K|--priv-phrase SNMPv3 Privacy Phrase

check_interfaces.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1477,7 +1477,7 @@ int usage(char *progname) {
14771477
printf("%s%s", i ? "," : "", modes[i]);
14781478
}
14791479
printf(")\n");
1480-
printf(" -j|--auth-proto\tSNMPv3 Auth Protocol (SHA|MD5)\n");
1480+
printf(" -j|--auth-proto\tSNMPv3 Auth Protocol (SHA|SHA-224|SHA-256|SHA-384|SHA-512|MD5)\n");
14811481
printf(" -J|--auth-phrase\tSNMPv3 Auth Phrase\n");
14821482
#ifdef usmDESPrivProtocol
14831483
printf(

0 commit comments

Comments
 (0)