search for: secadmin

Displaying 8 results from an estimated 8 matches for "secadmin".

2008 Dec 02
1
Failed to join domain using net join ads
I have RHEL 5.2 running Samba 3.2.4.?? I am trying to join the Samba server to Active Directory (Windows 2003 R2) using net join ads command.??? I get the following errors: As root, I run kinit secadmin which completes successfully and I get a Kerberos ticket.?? Secadmin has full domain admin privileges in Active Directory.?? Then I run: #> net join ads -S phxwn01 -U secadmin%password Failed to join domain: Invalid configuration and configuration modification was not requested. Or if I run: #&...
2017 Jul 08
4
force port redirection for list of users
...4 instead of port 22. root, ftp, guest So ssh root at ip // should be sent to sshd running at port 22 ssh otheruser at ip // should be sent to sshd running at port 2024 I know that we can do something like this: ssh -o ProxyCommand='ssh -W localhost:2024 cliuser at ip' otheruser@ <secadmin at 10.220.167.184>ip will take to otheruser login to port 2024 after sshd_config settings Match user cliuser MaxSessions 0 PermitOpen localhost:2024 This requires long command at the client side . Can this be made simple like ssh otheruser at ip automatically goes to port 2024 after...
2017 Jul 18
2
force port redirection for list of users
...be sent to sshd running at port 22 > > ssh otheruser at ip // should be sent to sshd running at port 2024 > > > > > > I know that we can do something like this: > > > > ssh -o ProxyCommand='ssh -W localhost:2024 cliuser at ip' otheruser@ > > <secadmin at 10.220.167.184>ip > > > > will take to otheruser login to port 2024 after sshd_config settings > > > > Match user cliuser > > > > MaxSessions 0 > > > > PermitOpen localhost:2024 > > > > > > > > This requires long comma...
2000 Feb 21
0
SAMBA 2.0.6 vs HP's ASU/9000 LanMan (battle rages on)
...California State University, Northridge College of Engineering and Computer Science 18111 Nordhoff St, Post Stop 8295 Northridge, CA 91330 ulairi@jps.net <mailto:ulairi@jps.net> ulairi@ecs.csun.edu <mailto:ulairi@ecs.csun.edu> ntadmin@ecs.csun.edu <mailto:ntadmin@ecs.csun.edu> secadmin@ecs.csun.edu <mailto:secadmin@ecs.csun.edu> To achieve victory when it is within the ken of the common herd is not the acme of excellence. Nor is it the true acme of excellence when you win and the whole empire says, "Well done!". True excellence is to plan secretly, to move surr...
1999 Oct 01
3
Compiling SAMBA 2.0.5a on HP-UX 11
...-------------------------------------------- ---| | California State University, Northridge | ulairi@jps.net | | College of Engineering and Computer Science| ulairi@ecs.csun.edu | | 18111 Nordhoff St, Post Stop 8295 | ntadmin@ecs.csun.edu | | Northridge, CA 91330 | secadmin@ecs.csun.edu | - ---------------------------------------------------------------------- -----| "If you know the enemy and know yourself, you need not fear the result of a hundred battles. If you know yourself but not the enemy, for every victory gained you will also suffer a defeat. If you k...
2017 Jan 31
2
sshd custom shell script for specifc user
Thanks Darren, the intention to do this : allow users to access my own shell/CLI(including authentication) on port 22. their firewall settings doesnt allow anything other than port 22, so I would internally redirect to port 1023 when customuser is provided. I will try enabling logs, thanks. On Tue, Jan 31, 2017 at 5:10 AM, Darren Tucker <dtucker at zip.com.au> wrote: > On Tue, Jan 31,
2017 Jan 31
2
sshd custom shell script for specifc user
...on 0 req env debug1: server_input_channel_req: channel 0 request shell reply 1 debug1: session_by_channel: session 0 channel 0 debug1: session_input_channel_req: session 0 req shell Starting session: forced-command (config) '. /etc/myscript' on pts/3 for cliuser from 10.220.82.17 port 54086 secadmin at 127.0.0.1's password: On Tue, Jan 31, 2017 at 10:53 AM, Darren Tucker <dtucker at zip.com.au> wrote: > On Tue, Jan 31, 2017 at 3:55 PM, Sudarshan Soma <sudarshan12s at gmail.com> > wrote: > > Thanks Darren, the intention to do this : > > allow users to acc...
2017 Feb 20
2
second ssh connection for the first ssh request
Hi I changed sshd_config to run script, .profile for user cliuser like this: Match user cliuser ForceCommand . /home/cliuser/.profile cat /home/cliuser/.profile #!/bin/sh if [[ "$1" == "-c" ]]; then exit 5 fi trap 'exit' 1 2 3 4 15 ssh -tt secadmin at 127.0.0.1 -p 2024 exit Now, with this, i wanted connections to sshd coming on 2025 to go to 2024 for user cliuser. it works but password is requested on sshd server terminal instead of client window where ssh is done(ssh -vvv cliuser at 172.18.137.11 -p 2025 ). please suggest, i am sharing com...