Displaying 20 results from an estimated 25 matches for "ouser".
Did you mean:
user
2006 Apr 20
1
Permission denied using mount.cifs
I'm having a strange problem mounting a share from a Windows 2003 server
using cifs:
mount.cifs //osirus.ficticious.org/inetpub /inetpub
-ouser=transfer,pass=dkfhjdjskd
It comes back immediately with:
mount error 13 = Permission denied
Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)
However, the command below works. (abeit with about a 15 second wait
before it comes back):
mount.smbfs //osirus.ficticious.org/inetpub /ine...
2003 Jan 07
1
passing additional options to SSH on the rsync command line?
I have an account on evilserver.
evilserver requires a *login* of the form "user@domain.com". something
to do with cheap hosting, I suppose.
ssh gets ill on that. ssh user@domain.com@domain.com is no good.
So I do this:
ssh -oUSER=user@domain.com domain.com
which works just fine: ssh uses the entire mess as a log in string, and
is quite happy.
So, how can I get rsync to play ball with this ugly scheme of things?
Is there a way?
Thanks!
PS: please cc: this address on replies, as I am not subscribed to the
list. thank...
2004 Nov 04
1
Allow access to a share to all members of a container?
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I have 104,000 users, some of which are in the OU:
ad.network.local\AD\People\IFAS\Hort
Is there an easy way to find all the users in this OU and grant them
access to a share?
Or do I have to list each user individually?
And if so, can I use net user to list the users in an OU?
- -Tom
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.6
2007 Jun 04
2
Re: Ajax.Request question with JSON return
...asynchronous:true,
> parameters: pars,
> onSuccess:function(){
> $(''txtRefNotes'').value = ''hello''; //this worked
> // $(''txtRefFirstName'').value = oUser.FName; //was
> hoping I could do this, but it didn''t work
> Element.setOpacity(resultDomElem, 0.0); Effect.Appear(resultDomElem,
> { duration: 0.5 });
> new Effect.Highlight(resultDomElem,
> {startcolor:CEB195, endcolor:F8F8D2});
>...
2018 Mar 23
2
How Can I ...
...ikely
> you will need to install samba in order to see the shares.
>
> If you can provide more details on how the router is sharing the files for
> windows we can provide more detailed guidance.
something similar to this might work for you
$ sudo mount.cifs //192.168.1.254/share /mnt -ouser=route_account,vers=2.0
vers=2.0 might not be necessary for you if your router supports more modern
versions of smb or if you are not running a newish kernel that defaults to 3.0
man mount.cifs
The default since v4.13.5 is for the client and server to negotiate the highest
possible version grea...
2000 Feb 04
0
Patch that allows equal sign in options
...filename, linenum);
@@ -364,7 +365,7 @@
goto parse_int;
case oIdentityFile:
- cp = strtok(NULL, WHITESPACE);
+ cp = strtok(NULL, WHITESPACE_EQ);
if (!cp)
fatal("%.200s line %d: Missing argument.", filename, linenum);
if (*activep) {
@@ -378,7 +379,7 @@
case oUser:
charptr = &options->user;
parse_string:
- cp = strtok(NULL, WHITESPACE);
+ cp = strtok(NULL, WHITESPACE_EQ);
if (!cp)
fatal("%.200s line %d: Missing argument.", filename, linenum);
if (*activep && *charptr == NULL)
@@ -400,7 +401,7 @@
case oProxyCommand:...
2004 Aug 26
2
OpenSSH PATCH: OpenCommand and CloseCommand
...h-3.8p1.orig/readconf.c (.../.transvn:beginning) (revision 25)
+++ openssh-3.8p1/readconf.c (revision 25)
@@ -93,7 +93,8 @@
oPasswordAuthentication, oRSAAuthentication,
oChallengeResponseAuthentication, oXAuthLocation,
oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
- oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
+ oUser, oHost, oEscapeChar, oRhostsRSAAuthentication,
+ oOpenCommand, oCloseCommand, oProxyCommand,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
o...
2015 Mar 19
0
[Bug 1604] SCTP support for openssh
...---
--- a/readconf.c
+++ b/readconf.c
@@ -130,6 +130,9 @@ typedef enum {
oPasswordAuthentication, oRSAAuthentication,
oChallengeResponseAuthentication, oXAuthLocation,
oIdentityFile, oHostName, oPort, oCipher, oRemoteForward,
oLocalForward,
+#ifdef SCTP
+ oTransport,
+#endif
oUser, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
@@ -198,6 +201,9 @@ static struct {
{ "hostname", oHostName },
{ "hostkeyalias&q...
2018 Mar 24
0
How Can I ...
...install samba in order to see the shares.
>>
>> If you can provide more details on how the router is sharing the files for
>> windows we can provide more detailed guidance.
> something similar to this might work for you
>
> $ sudo mount.cifs //192.168.1.254/share /mnt -ouser=route_account,vers=2.0
>
>
> vers=2.0 might not be necessary for you if your router supports more modern
> versions of smb or if you are not running a newish kernel that defaults to 3.0
>
> man mount.cifs
>
> The default since v4.13.5 is for the client and server to neg...
2006 Jul 13
2
Q: mount -t smbfs: "cli_negprot: SMB signing is mandatory and we have disabled it."
Hi,
I was trying smbmount (SuSE's samba-client-3.0.20b-3.4). The mount command
replied:
cli_negprot: SMB signing is mandatory and we have disabled it.
9451: protocol negotiation failed
SMB connection failed
No I'd suggest to change the message at least: It's unclear who "we" is: The Samba
Team, the client, or the server
The server is a "Windows 2003 server",
2000 Nov 14
1
[PATCH] Added option 'RetryDelay'
...s)
diff -u --recursive openssh-2.3.0p1/readconf.c openssh-2.3.0p1-new/readconf.c
--- openssh-2.3.0p1/readconf.c Sat Oct 14 01:23:12 2000
+++ openssh-2.3.0p1-new/readconf.c Mon Nov 13 11:06:57 2000
@@ -98,7 +98,7 @@
#endif
oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
- oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
+ oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts, oRetryDelay,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
oCompressionLevel, oKe...
2018 Mar 23
2
How Can I ...
I've got a WD My Passport Ultra 1TB (USB) plugged into my router and I
have 4 Windows machines, all running Windows 7, and all 4 machines can
see the device as drive 'Y'. I use this device several ways, i.e. all my
Windows machines use the same Firefox bookmarks and cookies
I've got 5 machines running CentOS 6 x86_64 and I'd like to know what do
I have to do for them to
2001 Oct 11
0
[patch] option to prevent connection timeout
...end_ignore(1);
+ packet_send();
+ }
+ } else {
+ n = select((*maxfdp)+1, *readsetp, *writesetp, NULL, NULL);
+ }
+ if (n < 0) {
char buf[100];
/*
--- openssh-2.9.9p2/readconf.c.orig Thu Sep 20 02:57:56 2001
+++ openssh-2.9.9p2/readconf.c Thu Oct 11 22:03:09 2001
@@ -109,7 +109,7 @@
oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
- oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts,
+ oCompressionLevel, oKeepAlives, oIdle, oNu...
2002 Feb 14
2
[Bug 117] OpenSSH second-guesses PAM
http://bugzilla.mindrot.org/show_bug.cgi?id=117
------- Additional Comments From djm at mindrot.org 2002-02-15 10:10 -------
> OpenSSH traditionally would not even start PAM, and
> now starts it specifying 'NOUSER' as the login name.
We have always used NOUSER, the recent patch just makes it consistent between
protocols 1 and 2.
> The second is to prevent username guessing attacks - by
> always calling PAM the system should always suffer the
> same timeouts/delays no matter the existance of...
2008 Nov 19
1
Assistance needed on using mount.smbfs (cifs) to authenticate to samba server with encrypt passwords = No.
...king fine on non upgraded systems. Only on the
newly upgraded systems is the mounting not working.
The kernel on the clients do have CONFIG_CIFS_WEAK_PW_HASH=y
Below is some dmesg info after running the mount.cifs with various /
proc/fs/cifs/SecurityFlags:
mount.smbfs //172.16.0.8/tech ./mymount -ouser=tech
==
[528097.091765] fs/cifs/cifs_debug.c: sec flags 0x7
[528097.091772] fs/cifs/cifs_debug.c: packet signing now required
[528109.522275] fs/cifs/cifsfs.c: Devname: //172.16.0.8/tech flags:
64
[528109.522284] fs/cifs/connect.c: CIFS VFS: in cifs_mount as Xid: 30
with uid: 0
[528109.522292]...
2001 Aug 24
2
[PATCH] SO_KEEPALIVE for port forwards
...+ {
+ error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
}
newch = channel_new(rtype,
nextstate, newsock, newsock, -1,
--- openssh-2.9p2/readconf.c.keepalivetunnel Tue Apr 17 11:11:37 2001
+++ openssh-2.9p2/readconf.c Thu Aug 23 15:42:37 2001
@@ -106,7 +106,7 @@
oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
- oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts,
+ oCompressionLevel, oKeepAlives, oKeepAlive...
2000 Jun 06
0
connection timeout
...t --------------
diff -Naur openssh-2.1.0p3/readconf.c openssh-2.1.0p3-new/readconf.c
--- openssh-2.1.0p3/readconf.c Mon May 29 20:44:53 2000
+++ openssh-2.1.0p3-new/readconf.c Mon Jun 5 19:06:58 2000
@@ -102,9 +102,10 @@
oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
- oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
- oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts, oTISAuthentication,
- oUsePrivilegedPort, oL...
2002 Jul 17
2
[Patch] SSH through HTTP proxy using CONNECT
...part --------------
diff -ur -x CVS /usr/src/crypto/openssh/readconf.c src/readconf.c
--- /usr/src/crypto/openssh/readconf.c Thu Sep 27 18:33:34 2001
+++ src/readconf.c Wed Jul 17 16:14:44 2002
@@ -108,6 +108,7 @@
#endif
oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
+ oProxyServer, oProxyPort,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts,
@@ -158,6 +159,8...
2000 Mar 03
7
[PATCH] Add a Maximum Idle Time (1.2.2)
...conf.c Sun Dec 5 16:47:29 1999
+++ openssh-1.2.2-trans_inter/readconf.c Fri Mar 3 11:21:12 2000
@@ -78,6 +78,7 @@
UseRsh no
StrictHostKeyChecking yes
KeepAlives no
+ TransmitInterlude 0
IdentityFile ~/.ssh/identity
Port 22
EscapeChar ~
@@ -101,8 +102,8 @@
oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
- oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts, oTISAuthentication,
- oUsePrivilegedPort, oL...
2002 Jan 11
1
X11 forwarding, -f, error handling
I'd like a feature whereby ssh puts itself in the background after the
first successful X11 (or other port) forwarding.
The reason for this is simple: error handling.
If the application fails to open the X display and exits, then the
client can still exit with the application's exit code. But if the
application opens the X display successfully, then it can just display
any errors by