Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nxssh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rx-etersoft
nxssh
Commits
a76a82cb
Commit
a76a82cb
authored
Oct 30, 2017
by
Pavel Vainerman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enabled gssapi support for authorization,
build with kerberos5 support
parent
67fb8e44
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
3 deletions
+18
-3
nxssh.spec
.gear/nxssh.spec
+11
-3
sshconnect2.c
sshconnect2.c
+7
-0
No files found.
.gear/nxssh.spec
View file @
a76a82cb
%def_enable kerberos5
Name: nxssh
Version: 7.5
Release: alt0.1
Release: alt0.2
Summary: Openssh portable (etersoft edition)
Packager: Pavel Vainerman <pv@altlinux.ru>
...
...
@@ -12,6 +13,10 @@ Url: https://github.com/openssh/openssh-portable
Source: %name-%version.tar
%if_enabled kerberos5
BuildRequires: libkrb5-devel
%endif
%description
....
...
...
@@ -20,7 +25,7 @@ Source: %name-%version.tar
%build
%autoreconf
%configure --without-zlib-version-check
%configure --without-zlib-version-check
%{subst_enable kerberos5}
%make_build || %make
%install
...
...
@@ -32,6 +37,9 @@ install -m755 nxssh nxsshd nxssh-keygen %buildroot%_bindir/
%changelog
* Mon Oct 30 2017 Pavel Vainerman <pv@altlinux.ru> 7.5-alt0.2
- build with kerberos5
* Wed Oct 18 2017 Pavel Vainerman <pv@altlinux.ru> 7.5-alt0.1
- initial commit
sshconnect2.c
View file @
a76a82cb
...
...
@@ -384,6 +384,13 @@ Authmethod authmethods[] = {
};
Authmethod
nxauthmethods_pubkey
[]
=
{
#ifdef GSSAPI
{
"gssapi-with-mic"
,
userauth_gssapi
,
NULL
,
&
options
.
gss_authentication
,
NULL
},
#endif
{
"publickey"
,
userauth_pubkey
,
&
options
.
pubkey_authentication
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment