Displaying 14 results from an estimated 14 matches for "dest_host".
2009 Dec 23
3
Question on SSH_ASKPASS
...uld
not be too complicated, but somehow I am not able to figure this out myself.
I have configured the variables SSH_ASKPASS=<password_script> and
DISPLAY=nodisplay. My password_script just contains echo "password", nothing
else.
Now if I execute this ssh command:
ssh -T jan@<dest_host> "/<script_dir>/<script>"
It still asks me for a password. This command though
setsid ssh -T jan@<dest_host> "/<script_dir>/<script>"
does work as expected, it launches the remote script.
I know ssh should support this out of the box, so I wa...
2002 Nov 01
2
Help on rsync delete option
Hello,
Any help on the following issue will be appreciated.
How do I delete files or directories in my first level of directory that is
specified as host. Here is an example :
rsync -avz --delete ${SOURCE_HOST}:/mlinkfam/extract/sccs/pa/*
/mlinkfam/extract/sccs/pa
Giving above command I find redundant files or directory not getting deleted
from the first level of target directory
2013 Jul 05
0
access remote libvirtd fail
I want to manage remote libvirt , have run libvirtd in the dest host :
[root@dest_host ~]# ps aux | grep libvirtd
root 3293 0.0 0.1 923796 5856 ? Sl 12:59 0:00 libvirtd
--daemon
then I use the command in source host :
1. [root@source_host ~]# ssh -l root 211.87.***.97 ## login
the dest host
2. [root@dest_host ~]# virsh -c qemu+ssh://127.0.0.1/sy...
2009 Feb 26
1
0.12.4 dies with call SetTlsParms before
...believe is the relevant snippet of my code, which calls
start_tls() in the connection_completed() callback:
connection = EventMachine::Protocols::HttpClient2.connect(args)
class << connection
def connection_completed
logger.debug4 {
"Connected to " + dest_host
}
start_tls if @args[:ssl]
super
end
....etc
Did I miss something about a change in the tls-releated portion of the api?
I see that start_tls now takes an optional argument, but that seems unlikely
to be causing the error... Looks like Connection#start_tls call...
2004 Apr 27
1
Rsync 2.6.1 released (includes security note)
Rsync version 2.6.1 has been released. It is primarily a performance
release that requires less memory to run, makes fewer write calls to
the socket (lowering the system CPU time), does less string copying
(lowering the user CPU time), and also reduces the amount of data
that is transmitted over the wire. There have also been quite a few
bug fixes. See the release NEWS for the full details:
2004 Apr 27
1
Rsync 2.6.1 released (includes security note)
Rsync version 2.6.1 has been released. It is primarily a performance
release that requires less memory to run, makes fewer write calls to
the socket (lowering the system CPU time), does less string copying
(lowering the user CPU time), and also reduces the amount of data
that is transmitted over the wire. There have also been quite a few
bug fixes. See the release NEWS for the full details:
2008 Nov 13
2
rsync returns unexplained error (code 129)
...ing parameters:
rsync --archive \
--hard-links \
--delete \
--rsh="ssh -i $key_file" \
--copy-dest=/var/lib/backuppc \
--compress-level=9 \
--stats \
--human-readable \
--partial-dir=.rsync-partial \
--bwlimit=$bwlimit \
/var/lib/backuppc \
$dest_host:$dir_name
Althoug when I try to synchronize using the same command over the internet (port mapping is enabled for SSH) the synchronization process starts, but terminates after about one or half an hour and returns the following error message:
"rsync error: unexplained error (code 129) at rs...
2019 Dec 04
2
v2.3.9 released
...d "local_port".
?? * Removed duplicate "client_ip", "ip" and "port".
?? * Mail storage events: Removed "service" field.
???? Use "service:<name>" category instead.
?? * HTTP client connection events: Renamed "host" to "dest_host" and
???? "port" to "dest_port"
* auth: Drop Postfix socketmap support. It hasn't been working
? with recent Postfix versions for a while now.
* push-notification-lua: The "subject" field is now decoded to UTF8
? instead of kept as MIME-encoded.
+ push-notific...
2019 Dec 04
2
v2.3.9 released
...d "local_port".
?? * Removed duplicate "client_ip", "ip" and "port".
?? * Mail storage events: Removed "service" field.
???? Use "service:<name>" category instead.
?? * HTTP client connection events: Renamed "host" to "dest_host" and
???? "port" to "dest_port"
* auth: Drop Postfix socketmap support. It hasn't been working
? with recent Postfix versions for a while now.
* push-notification-lua: The "subject" field is now decoded to UTF8
? instead of kept as MIME-encoded.
+ push-notific...
2020 Oct 18
1
Lookup sid with libsmbclient (invoked from c# on mono)
...n void set_cmdline_auth_info_username(IntPtr
auth_info, string password);
[DllImport("libsmbclient.so.0", CharSet = CharSet.Ansi)]
internal static extern int cli_full_connection(out
SambaConnectionHandle output_cli,
string my_name,
string dest_host,
IntPtr dest_ss, int port,
string service, string service_type,
string user, string domain,
string password, int flags,
int signing_state);
[DllImport("libsmbclient.so.0", CharSet = CharSet.Ansi)]...
2005 May 25
5
Patch to fix dynamic add/delete to zone functinality
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I''m running systems with openswan and modified _updown script supporting
shorewall dynamic hosts. Because on problems with cvs head version of
openswan I found a error from shorewall dynamic hosts support. When host
is already in zone shorewall aborts adding process with error. This is
not good thing(tm).
I found out that deleting host from
2002 Aug 23
3
Filenames with blanks
Command like this:
rsync -rxlupogtSvve ssh
$src_host:"/home/wss_disk/calendar.data/'Conference Calls'" $targ_dir
works fine with blanks embeded in the file name.
When I try to script it like this:
COM='`find '$src_dir' -mtime -'$days' -type f `'
rsync -rxlupogtSvve ssh $src_host:"$COM" $targ_dir
works fine on regular filenames,
2020 Oct 12
2
Lookup sid with libsmbclient (invoked from c# on mono)
Typical example:
Here is some search & export for libsmbclient:
adiant at ubuntu:/usr/lib/x86_64-linux-gnu$ nm -D libsmbclient.so.0 |grep
cli_rpc_pipe_open_noauth_transport
<nothing>
adiant at ubuntu:/usr/lib/x86_64-linux-gnu$ nm -D libsmbclient.so.0 |grep
cli_rpc_pipe_open
U cli_rpc_pipe_open_noauth
adiant at ubuntu:/usr/lib/x86_64-linux-gnu$ nm -D libsmbclient.so.0
2005 Feb 01
4
Shorewall problem
I am getting the following message when Shorewall stops can anybody shed
any light on this message and where I should be looking? Thanks
root@bobshost:~# shorewall stop
Loading /usr/share/shorewall/functions...
Processing /etc/shorewall/params ...
Processing /etc/shorewall/shorewall.conf...
Loading Modules...
Stopping Shorewall...Processing /etc/shorewall/stop ...
IP Forwarding Enabled