-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
32 lines (23 loc) · 898 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
This is a quick hack to do NNRP authentication against a Kerberos password.
It is probably deprecated now (it's over twenty years old), but maybe it has some value.
This DOES NOT include Kerberos authentication via ticket passing -- it
only compares a username/password pair against the corresponding
Kerberos V principal/password.
You'll need to copy the resulting binary into ~news/bin/auth/passwd and
add the appropriate lines to your readers.conf file. For example:
auth "authenticated2" {
auth: "nnrpkrb5auth --instance=foo"
}
auth "authenticated" {
auth: "nnrpkrb5auth --instance=example.com"
}
access "authenticated2" {
users: "foo"
newsgroups: "hort.*,example.foo.*"
}
access "authenticated" {
users: "*/example.com"
newsgroups: "hort.*"
}
Hopefully this will be of some use to people out there.
Christopher P. Lindsey