Displaying 20 results from an estimated 80 matches similar to: "Extracting a SIP Header from a 302 Response"
2019 Nov 02
2
U2F support in OpenSSH HEAD
I've had a patch on the bugzilla for a while related to U2F with
support for a few additional settings such as providing a path to a
specific key to use instead of the first one found and setting if user
presence is required when using the key. Is there any objection to
folding those parts in if appropriate?
Joseph, to offer comment on NIST P-256. There was originally quite a
limited subset
2020 May 29
1
Stir-Shaken clarified
https://wiki.asterisk.org/wiki/display/AST/STIR+and+SHAKEN
The Wiki above is misleading in what Stir-Shaken means and how it works.
End users cannot get a certificate, they cannot self-certify their calls.
Somebody completely misunderstood the model. I am afraid the moment will
come and thousands of Asterisk operators will be unable to terminate calls.
To start with, the model is a hierarchical
2020 May 17
1
PJSIP sending RTP to private address
My phone is located behind a NAT, 172.16.0.0/21.
Asterisk 16 is on a public IP.
PJSIP has the config below:
force_rport=yes
direct_media=yes
disable_direct_media_on_nat = yes
direct_media_method=invite
But when I send a call I see the RTP being sent to my private address, vs
the public IP. This only happens when Asterisk has dialed the call to
another carrier. If instead of Dial I choose
2020 May 30
1
PJSIP
Hello,
Anyone know how to set the "To:" in an invite for PJSIP to custom settings. I got the "from" to be the way I need it.
From: <sip:e04f43a2ed59 at xaccel.net;tag=44l1nRmW2
To: "TEST" <sip:5tf2f2s0rbtdj-20d14fl6n65t0o-0u03 at 34.221.174.202>
I have tried a lot of changes to get to this but nothing works.
I am getting this
From: sip:109643183 at
2011 Jan 13
2
creds_server_check: credentials check failed on Win7-32bit and samba-3.0.28a on ubuntu-8.04.4
Windows 7 Professional 32-bit
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion: 7600
Ubuntu-8.04.4 LTS
samba-3.0.28a-1ubuntu4.13
I applied the Registry settings as documented at
http://wiki.samba.org/index.php/Windows7
HKLM\System\CCS\Services\LanmanWorkstation\Parameters
DWORD DomainCompatibilityMode = 1
DWORD DNSNameResolutionRequired = 0
Attempting
2000 Nov 09
1
PAM auth. and HP-UX
Hi,
just a few days ago I upgraded to openssh-2.3.0p1 on HP-UX 11.00, trusted system, incl. the PAM-patch PHCO_22265 and I run into another problem. The situation is the following. I come from server inside a firewall and go through the firewall wia a ssh-plug-gateway to one host in our internet section and further do a second server in the internet section. All this including the ssh-agent
2020 May 16
0
PJSIP does not stop sending invites after call is canceled
Endpoint sends an INVITE
Asterisk send an INVITE to the Carrier
Carrier is down, does not even sends ACK
PJSIP sends several INVITES
End point sends
<--- Received SIP request (397 bytes) from UDP XXXX::50187 --->
CANCEL sip:xxxxxxx at xxxxxxx SIP/2.0
Via: SIP/2.0/UDP xxxxxxx
:50187;branch=z9hG4bK-524287-1---fbad0437cf02653d;rport
Max-Forwards: 70
To: <sip:xxxxx at xxxxx>
From:
2002 Jul 03
3
[Bug 333] X11 forwarding not working in OpenSSH 3.4p1
http://bugzilla.mindrot.org/show_bug.cgi?id=333
------- Additional Comments From stevesk at pobox.com 2002-07-04 05:41 -------
i will guess configure did not find an xauth when
it was built ($PATH is irrelevant here). please
verify.
see $HOME/.ssh/rc example in sshd.8 which can be used
as a workaround in this case.
djm: autoconf-2.53 exposes a bug for xauth path detection.
------- You
2016 Nov 21
2
Winbind traffic not encrypted
A problem here getting winbind traffic to be encrypted using Kerberos.
I have set up a test environment with a pair of servers (actually lxc
containers):
- samba server (ubuntu 16.04, stock samba 4.3.11)
- client machine (ubuntu 16.04) joined with "net ads join" and winbind
The client machine has the following in /etc/samba/smb.conf:
-------
[global]
#netbios name = client-ad
2016 Nov 22
0
Winbind traffic not encrypted
On 21/11/2016 17:21, Brian Candler wrote:
> I'd quite like to be able to fetch a ticket using the keytab
I found a solution to that part by using a different form of principal
name with "hostname$"
root at client-ad:~# kinit -k -t /etc/krb5.keytab 'CLIENT-AD$@AD.EXAMPLE.NET'
root at client-ad:~# klist
Ticket cache: FILE:/tmp/krb5cc_0
Default principal:
2018 Aug 07
0
limit sharing ability to certain users
Ah. You probably need to change ldap userdb so that you add
userdb {
driver = ldap
? args = /etc/dovecot/dovecot-ldap.conf
result_success = continue-ok
}
so that the next one is processed.
you can use 'doveadm user test at onnet.ch' to verify that the attributes are read for this user, and with another username that they are not.
Aki
On 07.08.2018 12:23, Simeon Ott wrote:
> ?
2020 May 30
2
Dynamically determine the CostPerUse value in the register allocator.
I dont know the history behind CostPerUse word so I may be missing the
background associated with it. It seems that it's misnomer for what it is
intended. At first sight, the word indicates that the cost is a function of
uses of the register - more the uses more the cost. How do we want to
define the value of CostPerUse. Should it be a function of uses? or just
the target?
On Sat, May 30,
2018 Aug 07
0
limit sharing ability to certain users
Hmm. if you put it *after* the ldap userdb, it should not have prevented
users from logging in.
What happens if you do
userdb {
? driver = passwd-file
? args = ....
? skip = notfound
? result_failure = continue-ok
}
Aki
On 07.08.2018 12:58, Simeon Ott wrote:
> Now the attributes are correctly read for the user test at onnet.ch
> <mailto:test at onnet.ch>, but other users are not
2016 Nov 22
1
Winbind traffic not encrypted
On Tue, 22 Nov 2016 15:19:34 +0000
Brian Candler via samba <samba at lists.samba.org> wrote:
> On 21/11/2016 17:21, Brian Candler wrote:
> > I'd quite like to be able to fetch a ticket using the keytab
>
> I found a solution to that part by using a different form of
> principal name with "hostname$"
>
> root at client-ad:~# kinit -k -t
2018 Aug 07
2
limit sharing ability to certain users
? attached the dovecot -n, linked files, debug log lines during a standard client login
root at buserver:/etc/dovecot/conf.d# doveconf -n
# 2.2.13: /etc/dovecot/dovecot.conf
# OS: Linux 3.16.0-6-amd64 x86_64 Debian 8.11
auth_debug = yes
auth_debug_passwords = yes
auth_mechanisms = plain login
auth_verbose = yes
auth_verbose_passwords = plain
debug_log_path = syslog
disable_plaintext_auth = no
2018 Aug 07
2
limit sharing ability to certain users
Now the attributes are correctly read for the user test at onnet.ch <mailto:test at onnet.ch>, but other users are not able to authenticate anymore.
root at buserver:/var/spool/postfix/virtual/onnet.ch/test/Maildir/.super# doveadm user test at onnet.ch
field value
uid 5000
gid 5000
home /var/spool/postfix/virtual/onnet.ch/test/
mail maildir:~/Maildir
quota_rule *:bytes=1073741824
acl
2019 Nov 01
10
U2F support in OpenSSH HEAD
Hi,
As of this morning, OpenSSH now has experimental U2F/FIDO support, with
U2F being added as a new key type "sk-ecdsa-sha2-nistp256 at openssh.com"
or "ecdsa-sk" for short (the "sk" stands for "security key").
If you're not familiar with U2F, this is an open standard for making
inexpensive hardware security tokens. These are easily the cheapest way
2020 May 29
2
Dynamically determine the CostPerUse value in the register allocator.
[AMD Official Use Only - Internal Distribution Only]
Hi All,
For the AMDGPU architecture, during RA, we prefer to have a cost associated with the registers (CostPerUse) based on a target entity (for instance, the Calling Convention of the current MachineFunction).
Presently CostPerUse is a one-time static value (either zero or a positive value) generated through table-gen.
The current
2020 May 29
1
Operation not permitted - fchown() failed for /run/dovecot/login
# dovecot --version
2.3.10.1 (a3d0e1171)
Dovecot is unable to start, I see error " Fatal: fchown() failed for
/run/dovecot/login: Operation not permitted"
what could be the problem?
any help please
$ls -la /var/mail/
drwxr-xr-x 1 root root 4096 May 29 17:32 .
drwxr-xr-x 1 root root 4096 May 28 17:08 ..
drw------- 2 root root 4096 May
2019 Mar 03
0
Wine release 3.0.5
The Wine maintenance release 3.0.5 is now available.
What's new in this release (see below for details):
- Various bug fixes
The source is available from the following locations:
https://dl.winehq.org/wine/source/3.0/wine-3.0.5.tar.xz
http://mirrors.ibiblio.org/wine/source/3.0/wine-3.0.5.tar.xz
Binary packages for various distributions will be available from: