Displaying 3 results from an estimated 3 matches for "compb".
Did you mean:
cmpb
2012 Feb 15
2
LDAP encryption, not sure.
Hi all,
I'm setting up a local LDAP server with a pass-through authentication
to another LDAP.
I'm not clear about the encryption.
Say the case is like this. CompB is set to have LDAP authentication.
A ---> SSH ---> CompB ---> Local LDAP:389 ---> SASLAUTHD --> Global LDAP: 636
1. Password on the SSH session would be encrypted, isn't it?
2. How about when it goes to the local LDAP:389, would it be encrypted?
Thank you.
Fajar.
2005 Jul 17
1
routing based on user id
Hi all!
I''ve got 2 (soon 3) internet connection. 1 - via ADSL, 2(and3) via ppp
My network:
http://desima.objectis.net/network-diag
linux1:
user1.user2
eth0=192.168.1.1
ppp0=192.168.5.2( gw 192.168.5.1)
gw=192.168.1.2 ( thru ADSL)
compA=192.168.1.6
compB=192.168.1.15
gw2=192.168.1.217 via ppp to different ISP
All works for compA and CompB,
user1 should use default gw(192.168.1.2)
user2 should use ppp0
For user2 it will work only if I change his route thru gw2(not ppp0):
iptables -A OUTPUT -t mangle -m owner --uid-owner 1006 -j MARK --set-mark...
2001 Jul 25
0
Preserving groups
...trouble getting the presevation of groups
> to work when I do an rsync copy between two computers. I have tried the
> documentation, the list archives and FAQ and everything seems to indicate
> that it should just work.
>
> On compA I run the following as root
> rsync -av /apps/ compB::apps
>
> on compB I have an rsyncd.conf with the following and have run rsync
> --daemon.
>
> log file = /var/log/rsync.log
> [apps]
> path = /apps
> comment = apps
> read only = false
> hosts allow = 192.168.0.0/16
> uid = root
> gid = root
>
> All the...