similar to: Seperating Client and Internal Users

Displaying 20 results from an estimated 2000 matches similar to: "Seperating Client and Internal Users"

2012 Apr 04
2
using content in file as input variables to a class/def?
Here is the setup Clients are all under /usr/home/ftp/$client Internal Production is /usr/home/$internaluser I need to make slinks for every client folder under every Internal Production ie: ln -s /usr/home/ftp/$client /usr/home/$internaluser/$client Is there a way to do this from a list with in two files ( one for client name and the other for internal user names)? where the list format would
2005 Jul 11
1
beginners question concerning security
Hi List, as I''m a real beginner I would be pleased if someone can answer a maybe simple question. I''m looking for a virtaul server system to be used by diffrent entities. As I heard from other solutions there are often (at least small) security problems. Now I would like to know if it''s (at least theoretical possible) that one user from domU_a can access domU_b or
2011 Sep 09
1
Problem with Windows on Xen
I am currently running three different machines with Xen and have running DomU''s on server 1 and server 2. I trying to run a new instance of Windows 2000 on Server 2 (I''ll include the specs below), but every time the install gets to "registering components" portion, the installation restarts. I try the install on my workstation and it does the same thing.
2002 Jan 15
1
Stable Rsync System Call!
Next week are going to start using rsync "live" to mirror our primary and secondary web servers. I am still trying to iron out a couple of bugs, any help would be much apprecitated. Here is my rsync.conf file on my primary web server ############################ use chroot = no max connections = 5 syslog facility = local3 [www] path = /www comment = Web Directory hosts
2002 Dec 05
1
tapply
I'm having trouble with tapply, it seems to give me NA for the mean of a set like {2, 3, 4, NA}, can I get it to ignore the NA's and give me a mean like say, three? Am I just doing something stupid? Any help would be apprecitated, Also are there PDF versions of any of the R stats books around that I might be able to get my hands on? Bryn
2004 Sep 22
1
Sample without replacement
Hello, I have a simple problem (checked the archives and the appropriate help pages, to no avail). I want to creat a vector that is length(2000). The vector is to consist of two strings( "std" and "dev") with 1760 "std"s and 240 "dev"s. Furthermore, for each element of the vector, i want the selection of one of the strings to be approx. random. The
2003 Feb 28
1
Hostbased Authentication Question
Hi, I am still working on getting hostbased authentication working in OpenSSH 3.5p1. I emailed the user list, and got no response. It seems so simple, yet I have continued to have problems getting it working properly. I've read posts about it on this list, and the openssh-unix-dev list, and nothing I have tried seems to work. My question is this, does it matter which key, either
2004 Jul 24
3
Samba PDC = Expire passwords
Hi all, I have a Samba PDC setup and i was wondering if anyone knows how i can force the users to change passwords ever x days. My network consists of windows type machines as was as linux based machines. Any help would greatly be apprecitated.
2002 Jan 31
5
[Bug 88] scp for OpenSSH v3.0.2p1 fails to commercial SSH v3.1.0 server (new -t option to SSH's scp)
http://bugzilla.mindrot.org/show_bug.cgi?id=88 ------- Additional Comments From markus at openbsd.org 2002-01-31 23:01 ------- this is an installation error on the target host, see: scp: warning: Executing scp1 compatibility. scp: FATAL: Executing ssh1 in compatibility mode failed (Check that scp1 is in your PATH). ------- You are receiving this mail because: ------- You are the assignee
2012 Sep 14
0
[LLVMdev] Seperating registers in target description string replacement without adding whitespace?
Here's an example piece of code to show you what I'm trying to do (on llvm 3.1): class ArithLogicR<bits<6> op, bits<6> func, string instr_asm, SDNode OpNode, InstrItinClass itin, RegisterClass RC, bit isComm = 0>: FR<op, func, (outs RC:$rd), (ins RC:$rs, RC:$rt), !strconcat("+$rd=$rs ",!strconcat(instr_asm, " $rt")),
2002 Jul 18
1
[Bug 342] RhostsRSAAuthentication does not work with 3.4p1
http://bugzilla.mindrot.org/show_bug.cgi?id=342 stevesk at pobox.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From stevesk at pobox.com 2002-07-18
2008 Mar 05
3
regex sulotion for seperating number and string
I have strings contain postcode and letters, some seperated with blank, some with comma, and some hasn't seperated. eg, "2324gz" "2567 HK" "3741,BF" I want to seperate the number and letters into two new variables. I know this should be quite basic question, but searched on regex syntax and that seems a bit scarey to me, any one can shot me a quick solution
2011 May 04
0
Guest access broken for Win7 between 3.3.8 and 3.5.4?
I've been running samba on RHEL5 for the past couple of years with XP clients. Late last year, in order to support new Win7 clients, I upgraded from samba-3.0.33 packages to samba3x-3.3.8 (from the Red Hat-managed configuration tree) and after some struggles got everything working. But now after upgrading to samba3x-3.5.4 I am only able to connect as a known user and not as a guest. Relevant
2006 Jul 30
2
valid-users still not work in 3.0.23a
Hello, i was using the debian version of samba 3.0.14a. Everything works fine. Then I upgraded to 3.0.23 because of Windows Visa support. After that upgrade shares with "valid users" could not be accessed. So I waited for 3.0.23a and upgraded to this version. The problem still exists. The following message is in the log: User andi not in 'valid users'. Settings: security =
2002 Sep 01
2
Seperating Forground from Background
One thing I have noticed when encoding VCDs is that often videos with complex backgrounds don't compress nearly as well as those with simple ones. Part of the problem is that TV cameras seam to have the focus so that the entire image is clear rather than focusing on the foreground (and blurring the backgrounds). The result is that a good number of bits are wasted trying to perfectly
2006 May 05
1
converting code into a function - seperating a data frame with n columns into n individual vectors
I have many very large dataframes with 20 columns each. In order to conserve memory, I wish to separate the data frame into 20 vectors, each named the name of the dataframe followed by .1,.2,.3 .20. (For example purposes, one data frame is named ?testa?.) e.g. testa.1, testa.2, testa.3 I have written the code to do this (see below). I am trying to convert this into a function that I can reuse.
2008 Jan 09
1
[LLVMdev] Seperating LLVM representation for processing with different backends
Hi, I am writing a pass which identifies the parts(basic blocks/functions) of the input algorithm with more of data flow or control flow. These parts are to be separated executed by different backends. My idea is to insert replacement basic blocks with intrinsic instructions within the basic block. These instructions should satisfy the data dependencies within the LLVM data structure and should
2002 Aug 07
0
[Bug 382] New: Privilege Separation breaks HostbasedAuthentication
http://cvs-mirror.mozilla.org/webtools/bugzilla/show_bug.cgi?id=382 Summary: Privilege Separation breaks HostbasedAuthentication Product: Portable OpenSSH Version: -current Platform: Sparc OS/Version: Solaris Status: NEW Severity: major Priority: P2 Component: sshd AssignedTo: openssh-unix-dev at
2002 Jun 25
0
getnameinfo(), PrivSep, FreeBSD 4.1.1
Hi, I spent the last couple of hours scratching my head about a problem on FreeBSD 4.1.1 with OpenSSH 3.3p1. Without privsep: debug1: Trying rhosts with RSA host authentication for client user gert debug3: Trying to reverse map address 195.30.1.100. debug1: Rhosts RSA authentication: canonical host moebius2.space.net debug2: auth_rhosts2: clientuser gert hostname moebius2.space.net ipaddr
1998 Jun 10
2
run scripts on samba server
Hi all, I have a network with Win95 clients and a samba-server 1.9.18p3 on Linux 2.033. Linux is only used as serversystem, clientusers are nonfamiliar with Linux. Sometimes it would be usefull, to start a program or script on the server from the client. This can be done via telnet, but I'd like to know if there is some sort of call implemented in samba to start a script on the server