Displaying 20 results from an estimated 315 matches for "5001".
Did you mean:
500
2014 May 28
1
sftp session disconnects right after passwd enter
...RSAAuthentication yes
PubkeyAuthentication yes
AcceptEnv LANG LC_*
now when I try to connect I from outside the net to test it I see this
in the client:
Code:
dagg at NCC-5001-D ~/.ssh/sftp_keys $ sftp -oPort=11113
-oIdentityFile=id_rsa [1]sftp_user at 111.111.111.111
Authenticated with partial success.
Password:
Connection closed
I'm sure the passwd is correct becau...
2008 Apr 09
1
postfix virtual maildir
..., status=sen
Apr 9 13:12:19 localhost postfix/qmgr[11316]: BD567490191: removed
Apr 9 13:18:51 localhost dovecot: IMAP(root at vlocalhost): Connection closed
So no erros at all but dovecot just ignores my incoming mail
root at localhost:~# ls -al /var/mail/vlocalhost/root/
total 20
drwx------ 5 5001 5001 4096 2008-04-09 12:19 .
drwx------ 3 5001 5001 4096 2008-04-09 12:19 ..
drwx------ 2 5001 5001 4096 2008-04-09 12:19 cur
drwx------ 2 5001 5001 4096 2008-04-09 13:22 new
drwx------ 2 5001 5001 4096 2008-04-09 13:22 tmp
root at localhost:~# ls -al /var/mail/vlocalhost/root/new
total 84
drwx---...
2009 Sep 08
0
hang up problem while calling
...ke can make call but after establish it is
waiting on line...
Did anyone face with this problem or do you have any suggestion ?
Thanks in advance
####################################################################
2009-09-08 12:06:22 DEBUG[7354] chan_sip.c: Checking SIP call limits for
device 5001
2009-09-08 12:06:22 DEBUG[7354] chan_sip.c: build_route: Contact hop:
<sip:5001 at 10.10.1.109:51406>
2009-09-08 12:06:22 DEBUG[19427] pbx.c: Function result is '5001'
2009-09-08 12:06:22 DEBUG[19427] db.c: Unable to find key '5001' in
family 'cidname'
2009-09-08 12:06...
2011 Jan 11
1
Bonding performance question
...I running into other limits (e.g.
was reading about tcp retransmit limits for mode 0).
The iperf test was run with iperf -s on the server, and iperf -c server
on four clients connected to the same switch.
------------------------------------------------------------
Server listening on TCP port 5001
TCP window size: 85.3 KByte (default)
------------------------------------------------------------
[ 4] local 10.10.15.193 port 5001 connected with 10.10.15.184 port 48588
[ 5] local 10.10.15.193 port 5001 connected with 10.10.15.187 port 49231
[ 6] local 10.10.15.193 port 5001 connected with 10...
2019 Nov 25
2
Health check curl example
:) I really starting to feel a bit like an idiot, but all these 3
configs[0] give error 'Client not compatible with this binary'
[0]
service health-check {
executable = script /bin/health-check.sh
inet_listener health-check {
port = 5001
}
}
service health-check {
executable = script -e "HOME PATH" /bin/health-check.sh
inet_listener health-check {
port = 5001
}
}
service health-check {
executable = script -e HOME PATH /bin/health-check.sh
inet_listener health-check {
port = 5001
}
}
Nov 25 11:44...
2019 Nov 24
2
Health check curl example
How do I check the standard script then on this port 5001 from the
command line?
This one of alpine linux also does not have it yet
bash-5.0# dovecot --version
2.3.7.2 (3c910f64b)
-----Original Message-----
Subject: RE: Health check curl example
Yes. The passthrough option is rather new.
Aki
On 24/11/2019 15:28 Marc Roos via dovecot < dov...
2019 Nov 25
2
Health check curl example
...bin/ health-check.sh
Panic: BUG: No IOs or timeouts set. Not waiting for infinity.
Aborted (core dumped)
-----Original Message-----
Subject: Re: Health check curl example
Hi,
you can use telnet or netcat to send input to that port and receive the
answer.
echo "PING" | nc localhost 5001
Best regards
Markus
On 11/24/19 2:43 PM, Marc Roos via dovecot wrote:
>
> How do I check the standard script then on this port 5001 from the
> command line?
>
>
> This one of alpine linux also does not have it yet bash-5.0# dovecot
> --version
> 2.3.7.2 (3c910f64b)...
2010 Sep 20
0
No subject
...3 ms
with 32 byte pings over a LAN.
I used iperf to measure throughput in various configurations to compare.
The iperf server is a different device on the LAN.
donald at ubuntu:/opt/vmware/ovftool$ iperf -s
------------------------------------------------------------
Server listening on TCP port 5001
TCP window size: 85.3 KByte (default)
------------------------------------------------------------
** 3 tests directly on the lan, no VPN installed, as a baseline**
[ 4] local 192.168.2.31 port 5001 connected with 192.168.2.243 port 2826
[ ID] Interval Transfer Bandwidth
[ 4] 0.0-10.0...
2019 Nov 24
2
Health check curl example
I am not understanding how this health check[1] script should work. From
the commandline it works fine when I type a PING I get a PONG. But how
do I do a curl to this 5001 port?
Tried something like this:
bash-5.0# curl http://localhost:5001/
curl: (56) Recv failure: Connection reset by peer
bash-5.0# curl http://localhost:5001/PING
curl: (56) Recv failure: Connection reset by peer
[1]
https://doc.dovecot.org/admin_manual/health_check/
2019 Nov 24
2
Health check curl example
I think I already have that, I am having this configured
service health-check {
# this is the default configuration using the simple PING->PONG
# example health-check.
executable = script -p /bin/health-check.sh
inet_listener health-check {
port = 5001
}
}
bash-5.0# /bin/health-check.sh
HTTP/1.1 200 OK
Connection: keep-alive
OK
-----Original Message-----
Subject: Re: Health check curl example
Your health check script should implement HTTP protocol. Then you can
use passthrough mode and use cURL.
The provided script does not speak HT...
2019 Nov 25
1
Health check curl example
...>
> :) I really starting to feel a bit like an idiot, but all these 3
> configs[0] give error 'Client not compatible with this binary'
>
> [0]
> service health-check {
> executable = script /bin/health-check.sh
> inet_listener health-check {
> port = 5001
> }
> }
>
> service health-check {
> executable = script -e "HOME PATH" /bin/health-check.sh
> inet_listener health-check {
> port = 5001
> }
> }
>
> service health-check {
> executable = script -e HOME PATH /bin/health-check.sh
> i...
2004 Jan 30
2
Music on Hold Warnings
...:
Jan 30 10:24:55 WARNING[1133718080]: chan_sip.c:486 retrans_pkt: Maximum
retries exceeded on call F21B6FD6-F427-4B27-8282-BFD280D9FB84@10.5.0.121
for seqno 909 (Response)
Jan 30 10:24:55 WARNING[1217602880]: file.c:521 ast_readaudio_callback:
Failed to write frame
== Spawn extension (sip, 5001, 2) exited non-zero on 'SIP/5002-0922'
-- SIP/5001-6a4d answered SIP/5002-d365
-- Attempting native bridge of SIP/5002-d365 and SIP/5001-6a4d
-- Started music on hold, class 'default', on SIP/5001-6a4d
Warning, flexibel rate not heavily tested!
Jan 30 10:25:14 NOTIC...
2007 Nov 02
1
Jitterbuffer issues
2020 Aug 14
2
User doesn't exist
.../dovecot-lmtp] said: 550 5.1.1
<bruno at 2c2axxx.online-server.cloud> User doesn't exist:
bruno at 2c2axxx.online-server.cloud (in reply to RCPT TO command))
[root at localhost bruno]# cat /etc/dovecot/users
#user:password:uid:gid:(gecos):home:(shell):extra_fields
bruno:{CRAM-MD5}88XXXee:5001:5001::/home/bruno::
mail:{CRAM-MD5}88XXXee:5001:5001::/home/mail::
nas:{CRAM-MD5}8eXXX40:5001:5001::/home/nas
asys:{CRAM-MD5}99XXX09:5001:5001::/home/asys
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dovecot.org/pipermail/dovecot/attachments/20200814/0...
2010 Nov 24
1
slow network throughput, how to improve?
...:
centos-5-x64-cpanel.tar.gz
100% 1163MB
29.1MB/s 00:40
iperf indicates that the network throughput is about 930MB though:
root at zaxen01:[~]$ iperf -s
------------------------------------------------------------
Server listening on TCP port 5001
TCP window size: 85.3 KByte (default)
------------------------------------------------------------
[ 4] local 196.34.x.x port 5001 connected with 196.34.x.x port 45453
[ ID] Interval Transfer Bandwidth
[ 4] 0.0-10.0 sec 1.09 GBytes 935 Mbits/sec
root at zaxen02:[~]$ iperf -c zaxen...
2005 Apr 27
0
local users + virtual domains
...fault_mail_env = maildir:%h/Maildir
auth-userdb = /etc/dovecot/passwd-file
auth-passdb = /etc/dovecot/passwd-file
then in passwd-file I'd enter:
# local users
localuser1:<passwd>:501:501:::::
localuser2:<passwd>:502:502:::::
...
#virtual domains
virt1 at example1.com:<passwd>:5001:5001::/var/vmail/%d/%u:/bin/false::INBOX=/var/vmail/%d/%u/Maildir
postmaster at example1.com:<passwd>:5001:5001::/var/vmail/%d/%u:/bin/false::INBOX=/var/vmail/%d/%u/Maildir
virt1 at example2.com:<passwd>:5001:5001::/var/vmail/%d/%u:/bin/false::INBOX=/var/vmail/%d/%u/Maildir
postmaster a...
2006 Jun 12
2
weird behaviour of summary.default
Hi all.
I may missing something here, but if I do summary.default(1:9999), I get:
Min. 1st Qu. Median Mean 3rd Qu. Max.
1 2500 5000 5000 7500 9999
but if I do summary.default(1:10001) I get:
Min. 1st Qu. Median Mean 3rd Qu. Max.
1 2501 5001 5001 7501 10000
i.e. Max is rounded to 10000.
What's wrong?
My system:
_
platform i486-pc-linux-gnu
arch i486
os linux-gnu
system i486, linux-gnu
s...
2004 Oct 06
3
HTB and Openvpn
Hi!
I have just started with traffic shaping, and after hours of reading
websites, man pages asf. I am still stumped at one problem I have.
The interface eth0 is attached to the outside world, and I have an openvpn
tunnel to another part of the organization using eth0 and port 5001.
The idea was that all traffic going through the tunnel would have top
priority and the rest share what''s left. Sounded simple enough.
Here''s what I did:
tc qdisc add dev eth0 root handle 1: htb default 30
tc class add dev eth0 parent 1: classid 1:1 htb rate 10mbit burst 15k...
2019 Nov 25
0
Health check curl example
...>
> :) I really starting to feel a bit like an idiot, but all these 3
> configs[0] give error 'Client not compatible with this binary'
>
> [0]
> service health-check {
> executable = script /bin/health-check.sh
> inet_listener health-check {
> port = 5001
> }
> }
>
> service health-check {
> executable = script -e "HOME PATH" /bin/health-check.sh
> inet_listener health-check {
> port = 5001
> }
> }
>
> service health-check {
> executable = script -e HOME PATH /bin/health-check.sh
> i...
2010 Feb 08
3
High codec translation times on x64
...- - - - - - - - -
- - - - - - -
gsm - - 3001 3002 6999 3001 3000 10999 -
- 40994 8000 6999 - - 13998
ulaw - 5000 - 1 4000 2 1 8000 -
- 37995 5001 4000 - - 10999
alaw - 5000 1 - 4000 2 1 8000 -
- 37995 5001 4000 - - 10999
g726aal2 - 8998 4000 4001 - 4000 3999 11998 -
- 41993 8999 7998 - - 14997
adpcm - 5000 2 3 40...