search for: access1

Displaying 16 results from an estimated 16 matches for "access1".

Did you mean: access
2005 Feb 17
1
Voicepulse Open Access & Asterisk Problems
...984 (from VP server) Here is all the pertinent info: [sip.conf] [general] port = 5060 bindaddr = 0.0.0.0 srvlookup=yes tos=lowdelay maxexpirey=3600 disallow=all allow=ulaw musicclass=default language=en relaxdtmf=yes ;useragent=Asterisk PBX ;nat=yes register => s00******:********@access1.voicepulse.com externip=asterisk.briandingman.com localnet=192.168.1.0/255.255.0.0 [voicepulse] type=friend context=voicepulse-incoming username=s00****** secret=******** host=access1.voicepulse.com dtmf=inband nat=yes qualify=yes canreinvite=no insecure=very [1000] type=friend host=dynami...
2010 Jan 20
6
routing multiple network cards on a single subnet
...know what I am doing wrong and also why (in the interest of learning something from this situation). It's new territory for me. [root at audio ~]# cat /etc/iproute2/rt_tables # # reserved values # 255 local 254 main 253 default 0 unspec # # local # #1 inr.ruhep 50 access1 60 access2 [root at audio ~]# ip route add 24.89.92.0/24 dev eth1 table access1 [root at audio ~]# ip route add default via 24.89.92.1 table access1 [root at audio ~]# ip rule add from 24.89.92.178/32 lookup access1 [root at audio ~]# [root at audio ~]# ip route add 24.89.92.0/24 dev eth2 tab...
2015 Jul 18
3
Multiple network cards - routing issue?
...d that or done anything with it at all. My /etc/iproute2/rt_tables looks like this. I haven't changed it from what it was when I originally set this thing up a few years ago. # # reserved values # 255 local 254 main 253 default 0 unspec # # local # #1 inr.ruhep 50 access1 60 access2 Note the access1 and access2 entries at the bottom of the file. I then ran the following three commands: ip route add 204.83.15.0/24 dev eth1 table access1 ip route add default via 204.83.15.254 dev eth1 table access1 ip rule add from 204.83.15.1/32 lookup access1 These are the...
2005 Mar 07
2
SIP and ISDN
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/bmp Size: 2918 bytes Desc: Picture (Metafile) Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20050307/cb404791/attachment.bmp
2015 Jul 19
0
Multiple network cards - routing issue?
On 07/18/2015 10:41 AM, Frank Cox wrote: > I then ran the following three commands: > > ip route add 204.83.15.0/24 dev eth1 table access1 > ip route add default via 204.83.15.254 dev eth1 table access1 > ip rule add from 204.83.15.1/32 lookup access1 ... > Can any of you folks tell me what I've missed? Does the system work correctly if you don't run those "ip route" commands?
2016 Nov 07
6
Need help getting two NICs to work on CentOS 7
Hello all Here is the scenario: We have a mail server VM which currently has two virtual NICs attached to it. One NIC is has an IP on a subnet with a default gateway defined and the other NIC has an IP on a different subnet with a different gateway on a different VLAN defined. Now when I activate both NICs, and run an ifconfig -a, I see that both IP addresses are showing. Now here is the
2004 Dec 02
0
Incoming SIP calls not being sent to "s" extension
...r my VP Open Access account; I'm thinking that the first letter being an "s" is confusing Asterisk, since I'm not seeing the same thing with FWD or other services where the username is all numbers. relevant parts of sip.conf for the VP OA account: register => s00******:SeCrEt@access1.voicepulse.com ; [roamer1-vpoa] type=friend context=ivr-incoming username=s00****** secret=SeCrEt host=access1.voicepulse.com dtmf=inband nat=yes qualify=yes canreinvite=no insecure=very My FWD, SIPPhone, etc. accounts are configured *exactly* the same except for different usernames, secrets, and...
2005 Jan 14
1
Asterisk and Voice Pulse Open Access
Has any messed with getting Asterisk to work using the Voice Pulse Open Access plan? I currently have 2 numbers with Voice Pulse, 1 is a number that is assigned to their hardware device (Sipura SPA-2000), the other is a Open Access number that uses SIP from any device (you must authenticate with them). I want to be able to use the Open Access number on my Asterisk server here at home with no FXO
2017 Apr 11
2
[RFC] Design of a TBAA sanitizer
...> and can be compared. That may not be possible (though I'm second guessing what exactly you have in mind so maybe I'm missing something here): ptr0 = malloc(); *(int*)ptr0 = 20;  // access0 free(ptr0); ptr1 = calloc();   // bitwise equal to ptr0 by chance float f = *(float *)ptr1;  // access1 The program above is fine (no TBAA violations), but at location access1 ptr1 and ptr0 overlap despite being NoAlias. -- Sanjoy > > > > > > This means, at least in LLVM IR, you have to account for cases like: > > > > if (A) > > *(int *)ptr = 20; > > if (B...
2017 Apr 11
2
[RFC] Design of a TBAA sanitizer
...cond guessing what exactly you > have in mind so maybe > > I'm missing something here): > > > > ptr0 = malloc(); > > *(int*)ptr0 = 20; // access0 > > free(ptr0); > > ptr1 = calloc(); // bitwise equal to ptr0 by chance > > float f = *(float *)ptr1; // access1 > > > > The program above is fine (no TBAA violations), but at location access1 > ptr1 and ptr0 > > overlap despite being NoAlias. > > Actually this isn't specific to TBAA. Even without TBAA we mark > malloc's return value as NoAlias, so in > > ptr0 = ma...
2007 Feb 03
4
Which label a ZFS/ZPOOL device has ? VTOC or EFI ?
Hi All, ZPOOL / ZFS commands writes EFI label on a device if we create ZPOOL/ZFS fs on it. Is it true ? I formatted a device with VTOC lable and I created a ZFS file system on it. Now which label the ZFS device has ? is it old VTOC or EFI ? After creating the ZFS file system on a VTOC labeled disk, I am seeing the following warning messages. Feb 3 07:47:00 scoobyb
2017 Apr 11
2
[RFC] Design of a TBAA sanitizer
Hi, On April 11, 2017 at 11:55:12 AM, Kostya Serebryany via llvm-dev (llvm-dev at lists.llvm.org) wrote: > Evgeniy and I recently discussed something similar for detecting bad casts > (code named: TypeSanitizer). > The approach with the shadow memory looked attractive at the first glance, > but then we've drowned in details. > > Specifically for TBAA, I had another idea, not
2006 Oct 24
15
How to emit associative array after ^C
Boy am I a dummy. I want to simply dump out unfreed allocations when I terminate the script. What''s the secret sauce? #!/usr/sbin/dtrace -s pid$1::MyAlloc:return { bufs[arg1] = walltimestamp; } pid$1::MyFree:entry /bufs[arg0]/ { bufs[arg0] = 0; } This message posted from opensolaris.org
2008 Jun 09
6
FW: Memory Leak Problem in My Application running on Solaris 10.
...loc implementation in Solaris 10 called > libumem. > If you link to libumem (just use LD_PRELOAD), it will do heap management > out of libumem instead of libc, and libumem offers some very nice > features > for chasing memory leaks. You can read how to do this here: > > http://access1.sun.com/techarticles/libumem.html > > The two WEB sites referenced above speak directly to what you''re looking > for, much better than I could so with a long email loaded with examples. > ;^) > > Hopefully, these tools will help you isolate your memory leak problem. >...
2007 Dec 09
38
libevent
Hello, I have been looking at the Ruby/EventMachine. First let me say it look very good. Reactor model with no threads makes for fast reliable server, and I have read about marvelous Twisted framework for Python and am glad to see something similar for Ruby. I am writing network app with Ruby threads now and it very slow, and I try new Ruby 1.9 with native threads that make it much slower.
2006 Jan 22
4
SeBackupPrivilege
We're using Samba 3.0.21a-1 on a CentOS 4.2 server (kernel 2.6.9-22.0.2.ELsmp); everything works more or less fine, it's functioning as the PDC with an OpenLDAP back end (setup essentially straight from the Idealx.org playbook), etc. We're trying to mount Windows shares to back them up, and getting "permission denied" errors when trying to read certain files from those