Displaying 14 results from an estimated 14 matches for "dest_ip".
Did you mean:
dest_id
2013 Nov 13
1
Deleted messages reappearing
Hi all,
in the last days, probably since I upgraded to 2.2.7, I'm seeing lots of
deleted messages reappearing in my folders. This is after this error in
the log:
Nov 13 14:55:16 buzones2 dovecot: imap-login: Login: user=<username>,
method=PLAIN, rip=source_ip, lip=dest_ip, mpid=15510, TLS,
session=<2bmiUA/rZACe4wQZ>
Nov 13 14:55:16 buzones2 dovecot: imap(username): Error: mdbox
/users/username/mdbox/mailboxes/backups/dbox-Mails: map uidvalidity
mismatch (0 vs 1384350727)
Nov 13 14:55:16 buzones2 dovecot: imap(username): Disconnected: Internal
error occurred. R...
2020 May 18
1
ether-wake
...problem is that there is no THE WOL package as there are
different forms of WOL and their packages.
One way is using UDP port 9 as you said. I was using the script below to
do so (using socat) but I can tell you that this method doesn't work for
all devices.
#!/bin/bash
HWADDR="$1"
DEST_IP="255.255.255.255"
DEST_PORT="9"
# The magic packet is a broadcast frame containing anywhere within its
payload
# 6 bytes of all ones (FF FF FF FF FF FF in hexadecimal), followed by sixteen
# repetitions of the target computer's 48-bit MAC address.
MAGIC="\xFF\xFF\xFF\x...
2015 Jun 16
1
Strange problem with rsync and expect
...ere running at same time. Here is my script:#!/usr/bin/expect
log_user 0
set env(LANG) en_US.UTF-8
set user "[lindex $argv 0]"
set bwlimit "[lindex $argv 1]"
set timeout "[lindex $argv 2]"
set src_path "[lindex $argv 3]"
set dest_ip "[lindex $argv 4]"
set dest_path "[lindex $argv 5]"
set passwd "[lindex $argv 6]"
spawn rsync -artqz4 -e "ssh -p 22 -o StrictHostKeyChecking=no -l $user" \
--bwlimit=$bwlimit --timeout=$timeout "$src_path" "$dest_i...
2000 Jan 26
2
[2.0.6] doesn't run under Solaris 7/sparc, Internal Error
Is the following a known problem:
===============================================================
[2000/01/26 09:41:03, 0] lib/fault.c:fault_report(41)
INTERNAL ERROR: Signal 11 in pid 22273 (2.0.6)
Please read the file BUGS.txt in the distribution
[2000/01/26 09:41:03, 0] lib/fault.c:fault_report(43)
===============================================================
This is using the same
2003 Oct 26
0
Patches for samba 3.0.0 client/client.c
...7 01:38:37.000000000 +0800
@@ -49,6 +49,8 @@
static int process_tok(fstring tok);
static int cmd_help(void);
+static int connect_timeout = 20*1000;
+
/* 30 second timeout on most commands */
#define CLIENT_TIMEOUT (30*1000)
#define SHORT_TIMEOUT (5*1000)
@@ -2533,7 +2535,9 @@
if (have_ip) ip = dest_ip;
/* have to open a new connection */
- if (!(c=cli_initialise(NULL)) || (cli_set_port(c, port) != port) ||
+
+ if (!(c=cli_initialise(NULL)) || !(c->timeout = connect_timeout) ||
+ (cli_set_port(c, port) != port) ||
!cli_connect(c, server_n, &ip)) {
d_printf...
2019 Jan 19
3
[Bug 1317] New: ulogd missed flow.start.sec and flow.start.usec fields
...ow.start.sec" and
"flow.start.usec" fileds in their JASON file.
I send packet with scapy as follows:
send(IP(dst='myIP')/fuzz(UDP()),loop=1)
log with those fileds:
{ "ct.event" : 4, "ct.id" : 1864591088, "ct.mark" : 2147483767,
"dest_ip" : "192.168.2.100", "dvc" : "Netfilter", "flow.end.sec" :
1547900066, "flow.end.usec" : 425948, "flow.start.sec" : 1547900066,
"flow.start.usec" : 210972, "oob.family" : 2, "oob.protocol&q...
2020 May 18
3
ether-wake
On Sun, 2020-05-17 at 20:25 -0600, R C wrote:
> Ok, I get that, found it before; "typically sent as a UDP datagram to
> port 0, 7 or 9, or directly over Ethernet as EtherType 0x0842"
>
>
> The keyword being 'typically', but what is it that ether-wake actually
> uses/does? (I need to forward a WOL packet to a different
>
> vlan on some Cisco
1997 Sep 23
0
PATCH: Wins support in smbclient
...((bcast = open_socket_in(SOCK_DGRAM, 0, 3,
+ wins_addr.s_addr = interpret_addr (lp_wins_server ());
+
+ if (wins_addr.s_addr && (bcast = open_socket_out (SOCK_DGRAM,
+ &wins_addr,
+ 137, 3000)) != -1) {
+ if (name_query (bcast, host, 0x20, False, True, wins_addr, &dest_ip, 0)) {
+ failed = False;
+ }
+ close (bcast);
+ }
+
+ if (failed && (bcast = open_socket_in(SOCK_DGRAM, 0, 3,
interpret_addr(lp_socket_address()))) != -1) {
set_socket_options(bcast, "SO_BROADCAST");
2000 Jul 17
0
[PATCH] `smbclient -M' ignores `-p port'
...a maintainers please apply. 2.0, HEAD and TNG all have this bug.
>
> Peter
>
> --- samba-2.0.x/source/client/client.c~ Mon Jul 3 01:15:21 2000
> +++ samba-2.0.x/source/client/client.c Sun Jul 16 15:33:34 2000
> @@ -2164,7 +2164,8 @@
> ip = ipzero;
> if (have_ip) ip = dest_ip;
>
> - if (!(cli=cli_initialise(NULL)) || !cli_connect(cli, desthost, &ip)) {
> + if (!(cli=cli_initialise(NULL)) || !cli_set_port(cli, port) ||
> + !cli_connect(cli, desthost, &ip)) {
> DEBUG(0,("Connection to %s failed\n", desthost));
> return 1;
&g...
2000 Jul 16
1
"smbclient -p <port>" appears to be broken in Samba 2.x
I posted this problem as a question to this list a while ago and got no
reply. I submitted it as a bug, but found that "samba-bugs@samba.org",
no longer accepts bug reports, even though the web page says to send them
to that address.
Wondering if the option had been intentionally discontinuted without
updating the man page, I made a quick check of the source and found that
the "-p
2006 Jul 26
15
Rails without a primary key
I''ve been trying to use Rails on a database where the biggest
datawarehouse-style table doesn''t have a primary key. It really
doesn''t make sense and just adds extra unnecessary space. I do have,
however, a column that I normally use to search on (IP) that returns
many rows. The table also references several other tables through
rails-friendly foreign keys.
Simple AR
2007 Feb 26
5
Multiple uplinks, ssh connections hang
Folks,
Ive got two ISP connections that I am using with:
---
ip route add 192.168.200.0/24 dev eth2 src 192.168.200.11 table connection1
ip route add default via 192.168.200.1 table connection1
ip route add x.175.244.0/24 dev eth1 src x.175.244.2 table connection2
ip route add default via x.175.244.1 table connection2
ip rule add from 192.168.200.11 table connection1
ip rule add from x.175.244.2
2013 Mar 28
1
Makefile race condition with parallel make
When attempting to build syslinux in parallel (make -j5), I encountered
the following error at the end:
rm -f liblpxelinux.a
ar cq liblpxelinux.a rawcon.o ./fs/pxe/dhcp_option.o ./fs/pxe/pxe.o ./fs/pxe/tftp.o ./fs/pxe/urlparse.o ./lwip/src/netif/ethernetif.o ./lwip/src/netif/etharp.o ./lwip/src/netif/slipif.o ./lwip/src/netif/ppp/md5.o ./lwip/src/netif/ppp/randm.o ./lwip/src/netif/ppp/chpms.o
2003 Dec 01
0
No subject
...me, array[256] of char domain
, array[256] of char server_type, array[256] of char server_os, array[256] of ch
ar server_domain, array[256] of char share, array[256] of char dev, struct nmb_n
ame {..} called, struct nmb_name {..} calling, array[256] of char full_dest_host
_name, struct in_addr {..} dest_ip, struct pwd_info {..} pwd, array[8] of unsign
ed char cryptkey, unsigned int sesskey, int serverzone, unsigned int servertime,
int readbraw_supported, int writebraw_supported, int timeout, int max_xmit, int
max_mux, pointer to char outbuf, pointer to char inbuf, int bufsize, int initia
lised, int...