diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-12-30 05:27:39 -0600 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-12-30 05:28:27 -0600 |
commit | 82a736085bd4aecca061b4ca955f2b416bf4ffb9 (patch) | |
tree | a10d457abc42ad2a0aed1e3e5305d3193e0c46fc /package/openssh | |
parent | 3f85e97e187dc5abbb7695073512dee05c285136 (diff) |
enable ipv6, remove unused configure option
Diffstat (limited to 'package/openssh')
-rw-r--r-- | package/openssh/Makefile | 4 | ||||
-rw-r--r-- | package/openssh/files/sshd_config | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/package/openssh/Makefile b/package/openssh/Makefile index 6ec5b190c..183899002 100644 --- a/package/openssh/Makefile +++ b/package/openssh/Makefile @@ -5,7 +5,7 @@ include ${ADK_TOPDIR}/rules.mk PKG_NAME:= openssh PKG_VERSION:= 6.7p1 -PKG_RELEASE:= 3 +PKG_RELEASE:= 4 PKG_HASH:= b2f8394eae858dabbdef7dac10b99aec00c95462753e80342e530bbb6f725507 PKG_DESCR:= secure shell implementation PKG_SECTION:= net/security @@ -85,14 +85,12 @@ CONFIGURE_ARGS+= --disable-strip \ --without-bsd-auth \ --without-rpath \ --without-pam \ - --without-x \ --without-zlib-version-check \ --sysconfdir=/etc/ssh \ --with-privsep-user=sshd \ --with-privsep-path=/var/run/sshd \ --with-ssl-dir="${STAGING_TARGET_DIR}/usr" - openssh-install: ${INSTALL_DIR} ${IDIR_OPENSSH}/etc/ssh chmod 0700 ${IDIR_OPENSSH}/etc/ssh diff --git a/package/openssh/files/sshd_config b/package/openssh/files/sshd_config index b8a2c1a70..9eab62f73 100644 --- a/package/openssh/files/sshd_config +++ b/package/openssh/files/sshd_config @@ -12,7 +12,8 @@ #Port 22 #AddressFamily any -ListenAddress 0.0.0.0 +# uncomment next line to disable ipv6 +#ListenAddress 0.0.0.0 #ListenAddress :: # Disable legacy (protocol version 1) support in the server for new @@ -94,7 +95,7 @@ UsePrivilegeSeparation yes #Compression delayed #ClientAliveInterval 0 #ClientAliveCountMax 3 -#UseDNS yes +UseDNS no #PidFile /var/run/sshd.pid #MaxStartups 10 #PermitTunnel no |