search for: remoteserver

Displaying 20 results from an estimated 56 matches for "remoteserver".

2008 Sep 05
1
Weird TCP problem
...resent on the server accepting the connections. Both of those appear to indicate that the server in the colo facility is receiving the SYN packets. What possible reasons are there that it would not reply with SYN+ACK? -------------- next part -------------- 19:08:43.751579 IP officefw.57948 > remoteserver.ssh: S 3347102294:3347102294(0) win 5840 <mss1460,sackOK,timestamp 2705398041 0,nop,wscale 7> 19:08:46.751136 IP officefw.57948 > remoteserver.ssh: S 3347102294:3347102294(0) win 5840 <mss1460,sackOK,timestamp 2705401041 0,nop,wscale 7> 19:08:52.749305 IP officefw.57948 > remotese...
2010 Apr 16
2
rsync over ssh - possible attack vectors
Hello everybody! First my setup: I connect from Debian Lenny to Ubuntu Karmic with a command like: user1 at localserver:$ rsync -rtcve ssh user1 at remoteserver:/.../ /local/.../ (using default versions of ssh and rsync in the vendor repos, ssh with password authentication) As far as I understand if localserver got compromised an attacker could read the password and then get full access to remoteserver as user1. SSH protects against attacks from a 3rd sys...
2010 Apr 09
5
SSH Through R Script
Hi, I am trying to SSH to a remote server through R script. In other words, I would like to know how I can get a SSH connection to the remote server and then execute commands on that server with the R script. So in bash, I would normally type ssh -lusername remoteserver.com; press enter and then wait for the password prompt to key in my password. I have tried system("ssh remoteserver.com") but that doesn't work because, from what I know, SSH requires user interactivity - I am required to key in my password. I tried looking up about putting password...
2005 Sep 22
1
Noob help with backup command syntax
...have downloaded and read sevral how-to snippits, and the man pages. I got a little confused though trying to figure out how to do what I need. Can someone show me the syntax for doing the following:? Given: localserver = server that has data I want backed up, and I'm logged in as root on it remoteserver = server where the data is to go, into it's /home/testuser/backup directory. I understood the examples and basics of getting one file, can someone tell me how to backup a list of files, and a list of directories, some directories with specific files. as in /etc/named/* /etc/some.conf /home/b...
2015 Sep 12
3
Differentiating between ssh connection failures and ssh command failures
On Sat, Sep 12, 2015 at 11:14:07AM +1000, Damien Miller wrote: > ssh server.example.com /usr/bin/do/something > r=$? > if [ $r -eq 0 ] ; then > echo success > elif [ $r -eq 255 ] ; then > echo ssh failed > else > echo command failed > fi ssh remoteserver exit 255 Hmm :-) exit(-1) aka exit(255) is a pretty standard "generic failure code" for many programs. The problem, really, is that "exit code" is the wrong thing to test for. x=`ssh remoteserver "echo CONNECTED && somecommand"` And then see if CONNECTED...
2008 Apr 11
1
rsync to copy files remoteserver
Hello every one, for the first i am trying to use rsync to copy files from remote server to local machine. i am using the rsync version 3.0.1 protocol version 30 on local machine. remote server is using rsync version 2.6.3 protocol version 28. i read on web that to copy files from remote server we need to update username&password in the file secrets file = /etc/rsyncd.scrt ,but this
2020 Oct 18
1
Lookup sid with libsmbclient (invoked from c# on mono)
...t;, CharSet = CharSet.Ansi)] internal static extern void lp_set_cmdline(string i, string j); public static string LogLevel { get; set; } IntPtr memoryContext; static object lockobject = new object(); //in NetworkCredential credential; string remoteserver; // lsa connections state SambaConnectionHandle connectionHandle; IntPtr rpcHandle; policy_handle policy = new policy_handle(); public SambaSidResolver(NetworkCredential credential, string remoteserver) { if (credential == null)...
2016 Aug 16
1
"HA" ie. two linked tincds on the same ethernet segment
...ing to get a remote server connected to both the two OVH servers for fail-over reasons, but having access via both to the shared vRack segment as a switch mode. Thereby Essentially I’m creating a ethernet loop… ----------------------vRack | | Server1 Server2 | | RemoteServer tinc create tun/tap on server1 & Server2. this then connects to OpenVSwitch bridge/switch that have on both servers the eth1 interfaces as ports to that bridge/switch. Questions: 1) Does tinc support some STP to pick up this type of loops and block one interface/link? I guess not, especial...
2020 May 18
2
dsync multiple mailboxes per connection?
Hello, Is it possible to batch syncs of multiple mailboxes in a single dsync session? We?re transferring users between servers and want to use dsync to transfer the mail; ideally we?d like to avoid creating a separate TCP connection per user. Thank you! cheers, -Felipe Gasper
2003 May 06
2
Recursive ssh
Hi all, I want to copy files from a remote server to a local directory with ssh. I've some difficulties with that because on the Remoteserver I have a directory "/www/ftp" with a lot of subdirectories with each of them 4 other subdirectories. I want to sync only */data/* to the local machine without */images/* or */doc/* or */movies/* Any solution would be appreciated. regardsMac --------------------------------- Do you Yaho...
2006 Apr 25
1
CHANUNAVAIL, busy and congestion
Greetings to all, I ma having a problem with channel variables on a couple of our Asterisk boxes. Here is the setup. Asterisk on customer's site (1.2.5), using IAX to our external GW (1.2.5), IAX to PSTN GW (1.0.10), E1/PRI to PSTN. On the External GW, we also have an IAX trunk to a VOIP provider if for some reason the E1 is down. If the DIALSTATUS is CHANUNAVAIL, which should be
2008 Jan 18
5
You can't get there from here
Having been accomodating about it in the past, the technical geniuses at Comcast have permanently blocked port 25, separating me (at my home office) from my employer's e-mail server. What can be done on the server side to keep Postfix listening on 25 _and_ accept my connections on some other port? Is there a Postfix solution? iptables maybe? Miark
2006 Sep 29
1
DO NOT REPLY [Bug 4130] New: Does not delete partial files upon completion of transfer
...with a somewhat large file in the source dir so you have a chance to interrupt it, use one of the partial options Here's my example with a partial and temp directory set in the user (xfer) that is running the rsync job: rsync -av --partial-dir=~xfer/partial --temp-dir=~xfer/tmp /xfer/outbox/* remoteserver:/xfer/inbox/ I'm putting a 200MB+ file in /xfer/outbox 3. Interrupt rsync with a Ctrl-C 4. Verify partial file is created on the remoteserver (in my example, look in ~xfer/partial directory on the remote server) 5. Run the same rsync command to let it continue/resume 6. Upon completion of...
2006 Sep 29
1
DO NOT REPLY [Bug 4131] New: Does not delete partial files upon completion of transfer
...with a somewhat large file in the source dir so you have a chance to interrupt it, use one of the partial options Here's my example with a partial and temp directory set in the user (xfer) that is running the rsync job: rsync -av --partial-dir=~xfer/partial --temp-dir=~xfer/tmp /xfer/outbox/* remoteserver:/xfer/inbox/ I'm putting a 200MB+ file in /xfer/outbox 3. Interrupt rsync with a Ctrl-C 4. Verify partial file is created on the remoteserver (in my example, look in ~xfer/partial directory on the remote server) 5. Run the same rsync command to let it continue/resume 6. Upon completion of...
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
2003 Dec 23
4
Permissions Problems
Here's my command copied from a shell script:\ rsync --verbose --progress --stats --compress --rsh=/usr/bin/ssh --recursive --times --perms --links \ /home/* trt@xxxxxx.xxxxxxx.xxx:/remotebackups/ Here's some (a small part) of the output: jk/.recently-used 253 100% 0.00kB/s 0:00:00 rsync: recv_generator: mkdir "jk/.secpanel/.runfiles": Permission denied (2) stat
2006 Sep 29
3
DO NOT REPLY [Bug 4132] New: Does not delete partial files upon completion of transfer
...with a somewhat large file in the source dir so you have a chance to interrupt it, use one of the partial options Here's my example with a partial and temp directory set in the user (xfer) that is running the rsync job: rsync -av --partial-dir=~xfer/partial --temp-dir=~xfer/tmp /xfer/outbox/* remoteserver:/xfer/inbox/ I'm putting a 200MB+ file in /xfer/outbox 3. Interrupt rsync with a Ctrl-C 4. Verify partial file is created on the remoteserver (in my example, look in ~xfer/partial directory on the remote server) 5. Run the same rsync command to let it continue/resume 6. Upon completion of...
2015 Apr 01
1
Remote protocol abstracted
...always want this behavior. The reason is, again, event based messaging might decide to start attending other clients on the same thread without blocking, thus an infinite while for these type of servers is not desired. 4. Abstract RemoteProtocol class added -------------------------------------- RemoteServer extends from abstract RemoteProtocol, and only implements a few members needed by the protocol. This effectively separates the protocol from the connection and the server. RemoteProtocol with virtual abstract methods for: * get_message - Receives a new message (waiting when needed). * send_messag...
2006 Jul 20
7
Can this be done?
What I want: I get a normal http request containing a URL from a remote server. Instead of redirecting to that URL, I want to load it into an iframe on an existing page. I''ve tried a number of approaches with no success. Can anybody suggest a good way to do this? Alternatively, if you can say "this is bloody impossible, because....", that would be helpful, too. --Al Evans
2015 Sep 11
2
Differentiating between ssh connection failures and ssh command failures
I'm sure this should be an easy question, but from the ssh client manpage: EXIT STATUS ssh exits with the exit status of the remote command or with 255 if an error occurred. Let's say I'm using ssh server.example.com /usr/bin/do/something in (e.g.) a bash script. How can one differentiate between a failure of ssh to connect to the host and the command in question returning