From owner-freebsd-net@FreeBSD.ORG Wed Aug 14 10:08:57 2013 Return-Path: Delivered-To: net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2016E685 for ; Wed, 14 Aug 2013 10:08:57 +0000 (UTC) (envelope-from talayeh.asadi@gmail.com) Received: from mail-ie0-x22f.google.com (mail-ie0-x22f.google.com [IPv6:2607:f8b0:4001:c03::22f]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E88CA2D71 for ; Wed, 14 Aug 2013 10:08:56 +0000 (UTC) Received: by mail-ie0-f175.google.com with SMTP id s9so11782758iec.6 for ; Wed, 14 Aug 2013 03:08:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:sender:from:date:message-id:subject:to :content-type; bh=iSmlPNvrBsxFgDCLyaG0ad0xKO+pfoFmpn/D8clVbp4=; b=rvtpmMeEYML9Kv48YTahNbIfWhDG9ELIKASBC/OTqcYvZ1KxD6VqpWFWhxVsdvGat4 oBKW6Ud6+Vwgo3qYngwxk1yGQOj09u+Zl1sVf0Ca2DYGpSVy9S0nnXGynRoDT1Kh9IoN ospLvUa6OGaopDF3hPn2CpeznzeeqPxsFJwUc7NoV6EXSI35jRa0Q3ZrYvRGnu2Usu4p Zc28CDlhTc42mVnTaPxS/Yh1HXELRQ9TpqoXjW95Xq8JhmFuqg3Nfku9uX/3cQ2h5C0h OX6rRTzUwn2zuVDy6lUEh35CEScsJ618U1uXO9CoadWICfscsnxk2xtmHaCBFmawvZI3 pCCQ== X-Received: by 10.50.131.137 with SMTP id om9mr5441926igb.55.1376474936509; Wed, 14 Aug 2013 03:08:56 -0700 (PDT) MIME-Version: 1.0 Sender: talayeh.asadi@gmail.com Received: by 10.42.153.8 with HTTP; Wed, 14 Aug 2013 03:08:35 -0700 (PDT) From: takCoder Date: Wed, 14 Aug 2013 14:38:35 +0430 X-Google-Sender-Auth: 3OVVUcLb6DGrbWXf7a6OSQSuL3k Message-ID: Subject: telnet authentication using RADIUS To: Freebsd-net Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: tak.official@gmail.com List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Aug 2013 10:08:57 -0000 hi all, I need to apply radius authentication for my remote connections. For ssh, I have no problems, as I use pam.d/sshd file to add pam_radius.so entry.. but for telnet I've faced a problem.. as I have seen, for non-SRA telnet connections, telnet authentication will be done via pam.d/login rather than pam.d/telnetd.. and this depends on telnet client as well rather than just my server.. I need it to always apply pam.d/telnetd file for all telnet authentications, so i can separate my remote authentication policies from local ones.. am I right with the facts I said above about telnet? Do you know of any tip or trick on this?? any ideas are really appreciated.. Thank you :) Best Regards, t.a.k