Displaying 20 results from an estimated 58 matches for "22222".
Did you mean:
2222
2012 Jul 12
3
ssh port forwarding
...ines to an AWS EC2 instance. We are wanting to make mysql
connections over an ssh tunnel.
In this case, lets say that hostA is our local machine, and hostB is the
Amazon EC2 instance. I have tried several different variations (that I have
found from google searching), including:
from hostA: ssh -L 22222:hostB:3306 user at hostB
from hostA: ssh -L 22222:localhost:3306 user at hostB
from hostA: ssh -L 22222:hostB:3306 user at localhost
No matter which variation I have tried, in every case, it will actually
create an ssh connection to the hostB, and log me into hostB, giving me its
prompt. If I try...
2006 Sep 24
5
Can''t Connect to BackgroundRB
I''m having trouble getting backgroundrb up and running in a
production environment.
Here''s my backgroundrb.yml:
---
port: "22222"
timer_sleep: 60
load_rails: true
environment: production
host: XXX.XX.XXX.50
database_yml: config/database.yml
acl:
deny: all
allow: localhost 127.0.0.1 XXX.XX.XXX.51
order: deny,allow
I start BackgroundRB from XXX.XX.XXX.50 with script/backgroundrb/
start -d
I can then telnet loca...
2006 Dec 04
4
Question about acls
...;'s running rails - it slows
things down a lot. I would like to keep running rails on my main
server (server1) but move backgroundrb to a secondary server (server2).
I looked through the source trying to figure out how to do this and I
pieced together this configuration file:
--
:port: 22222
:timer_sleep: 60
:pool_size: 15
:load_rails: true
:rails_env: development
:environment: development
:host: localhost
:uri: druby://localhost:22222/
:database_yml: config/database.yml
:protocol: druby
:acl:
:deny: all
:allow: localhost 127.0.0.1 server1
:order: deny,allow
autostart:
1:...
2009 Mar 10
5
Sending faxes with T.38 problem. Asterisk - 1.6.0.6
...end the T.38 media.
Is it possible to make Asterisk work like this? or is this a problem in the
configuration of the CISCO? Any ideas?
Thanks in advance.
Regards,
Santi
**The call-file I'm using is:
Channel: SIP/080999999999 at outbound-calls
MaxRetries: 3
WaitTime: 30
Set: LOCALSTATIONID=22222
Set: LOCALHEADERINFO=T38 fax
Set: T38CALL=1
Set: T38TXDETECT=yes
CallerID: 22222
Context: fax-out
Extension: 22222
priority:1
My sip.conf file is:
sip.conf
[general]
bindport=5060 ; UDP Port to bind to (SIP standard port is
5060)
bindaddr=192.168.222.160 ; IP address to...
2007 Dec 30
3
A newbie question regarding BackgroundRb
Hi all,
I just read Ezra''s article on BackgroundRb and decided to use it one
of my projects. I installed the plugin into my rails project using
script/plugin and then ran rake backgroundrb:setup to copy the yml
scripts.
Now my backgroundrb.yml looks like
=======
---
port: "22222"
timer_sleep: 60
load_rails: true
environment: development
host: localhost
database_yml: config/database.yml
acl:
deny: all
allow: localhost 127.0.0.1
order: deny,allow
scheduled_task:
:class: :tx_reaper_worker
:worker_method: :do_work
:trigger_args:
:start: <%= Time.now %&...
2006 Jul 19
1
A couple of problems
...ts method and
returning like that. Really just wondering if this is by design or a
bug?
2. When trying to pass a constant (class name in this instance) in the
args hash I receive the following error.
#=> undefined method `[]'' for #<DRb::DRbUnknown:0x13382d4>
(druby://localhost:22222)
/rails_app/vendor/plugins/backgroundrb/backgroundrb.rb:105:in
`new_worker''
(druby://localhost:22222)
/rails_app/vendor/plugins/backgroundrb/backgroundrb.rb:104:in
`synchronize''
(druby://localhost:22222)
/rails_app/vendor/plugins/backgroundrb/backgroundrb.rb:104:in
`new_worker'...
2010 Nov 07
2
Asterisk 1.6 (realtime) - Overwritten CallerID(num) Problem
...never I am using the Realtime database for the SIP users/peers. If I use a static sip.conf configuration instead of the database, everything works fine. Unfortunately a static sip.conf file won't work in my application.
In this example:
exten => 412,1,Set(CALLERID(all)="TEST"<22222>)
exten => 412,n,NoOp(CallerID(num) is: ${CALLERID(num)}) ;;;PS: This shows the correct number of "22222" on the CLI console...
exten => 412,n,Dial(SIP/412)
Whenever another phone calls extension 412, the call is forwarded to SIP/412 and should have "TEST" as the Ca...
2016 Jan 05
14
[Bug 2521] New: subtract buffer size from computed rekey limit to avoid exceeding it
https://bugzilla.mindrot.org/show_bug.cgi?id=2521
Bug ID: 2521
Summary: subtract buffer size from computed rekey limit to
avoid exceeding it
Product: Portable OpenSSH
Version: 6.8p1
Hardware: amd64
OS: Linux
Status: NEW
Severity: minor
Priority: P5
Component: sshd
2016 Dec 23
2
Cannot connect to Samab
...cp 0 0 127.0.0.1:445 0.0.0.0:* LISTEN
27998/smbd
tcp 0 0 192.168.100.1:139 0.0.0.0:* LISTEN
27998/smbd
tcp 0 0 127.0.0.1:139 0.0.0.0:* LISTEN
27998/smbd
tcp 0 0 0.0.0.0:22222 0.0.0.0:* LISTEN
2992/sshd
tcp 0 0 127.0.0.1:7634 0.0.0.0:* LISTEN
2906/hddtemp
tcp6 0 0 :::53 :::* LISTEN
3711/dnsmasq
tcp6 0 0 ::1:631 :::*...
2006 Jan 13
1
dnid support?
Hi all!
I'm in the process of configuring an Asterisk server here that, based on which number was called, should send calls to different extensions:
913 - 11111 -> ext. 1
913 - 22222 -> ext. 2
913-11111 & 913-22222 being 2 (of the) numbers we have coming in to our system via our VoIP hosting provider.
The config used here is based on Asterisk at home, so it includes also the dialparties.agi script. This script sees and identifies the correct dnid, but I am having some...
2006 Jul 14
4
Using BackgrounDRb to replace nested loops?
In response to my Rails Weenie post today[1], someone mentioned that
I try BackgrounDRb to help take the strain off my application.
1: http://rails.techno-weenie.net/question/2006/7/13/nested-loops-
best-way-to-send-messages-to-blog-subscribers
I''ve just tried to install and use BackgrounDRb with my app, but I''m
afraid that I''m not too versed in running processes
2004 Aug 26
0
Asterisk media problem behind NAT
...4bK3f113fc0c05ec1deece622bd0ed4a521
Max-Forwards: 70
Contact: "3002" <sip:<gateway1>:5060;transport=udp>
Content-Type: application/sdp
Content-Length: 148
v=0
o=par 0 0 IN IP4 <gateway1>
s=-
c=IN IP4 <gateway1>
t=0 0
m=audio 22224 RTP/AVP 0 3 4 5 6 8 15 18
m=video 22222 RTP/AVP 26 34 31
10 headers, 7 lines
Using latest request as basis request
Sending to 172.16.1.54 : 5060 (non-NAT)
Found audio format UNKN
Found audio format UNKN
Found audio format ULAW
Found audio format UNKN
Found audio format UNKN
Found audio format ALAW
Found audio format UNKN
Found audio for...
2007 May 10
2
force outgoinc callerid
Hi
i have a Te205P connected to a PRI E1, can i force the outgoing
callerid to change for each context?
for example:
[outgoing_context_one]
;force callerid to 12345
exten => _XXXXXXXXXXX,1,Dial(Zap/${EXTEN})
[outgoing_context_two]
;force callerid to 22222
exten => _XXXXXXXXXXX,1,Dial(Zap/${EXTEN})
Can i do that?
thanks to all
--
/*************/
nik600
https://sourceforge.net/projects/ccmanager
https://sourceforge.net/projects/nikstresser
2016 Dec 23
0
Cannot connect to Samab
...EN 27998/smbd
> tcp 0 0 192.168.100.1:139 <http://192.168.100.1:139>
> 0.0.0.0:* LISTEN 27998/smbd
> tcp 0 0 127.0.0.1:139 <http://127.0.0.1:139>
> 0.0.0.0:* LISTEN 27998/smbd
> tcp 0 0 0.0.0.0:22222 <http://0.0.0.0:22222>
> 0.0.0.0:* LISTEN 2992/sshd
> tcp 0 0 127.0.0.1:7634 <http://127.0.0.1:7634>
> 0.0.0.0:* LISTEN 2906/hddtemp
> tcp6 0 0 :::53 :::*
> LISTEN 3711/dnsmasq
> tcp6...
2010 Oct 20
1
how to connect to a remote PostgreSQL database from R on mac osx
Hello List,
I would like to connect to a postgreSQL database on a remote server and I am wondering what is the best package to do that. I have just installed RpgSQL, RPostgreSQL, Rdbi and RODBC.
The handiest to me is RPostgreSQL but I don't see how to connect to a remote server with it. For sure I can connect to remote server with RODBC, but since I am on a Mac OSX 10.6, I have quite
2006 Sep 23
6
Connection to backgroundrb is lost when exiting action method
Hey.
I have a very annoying problem, and was wondering what is wrong.
Suppose I have backgroundrb running, and then I have an action in some
controller. In the action I define a worker. When leaving the action,
suddenly the connection to backgroundrb is lost:
DRb URI: druby://localhost:22222
Pid: 3976
Autostart...
done
druby://localhost:42531 - #<Errno::EBADF: Bad file descriptor - connect(2)>
druby://localhost:42531 - #<Errno::EBADF: Bad file descriptor - connect(2)>
...
When I''m still in the action, for instance using ''sleep 10''. As long
I'...
2016 Dec 23
1
Cannot connect to Samab
...gt;> tcp 0 0 192.168.100.1:139 <http://192.168.100.1:139>
>> 0.0.0.0:* LISTEN 27998/smbd
>> tcp 0 0 127.0.0.1:139 <http://127.0.0.1:139>
>> 0.0.0.0:* LISTEN 27998/smbd
>> tcp 0 0 0.0.0.0:22222 <http://0.0.0.0:22222>
>> 0.0.0.0:* LISTEN 2992/sshd
>> tcp 0 0 127.0.0.1:7634 <http://127.0.0.1:7634>
>> 0.0.0.0:* LISTEN 2906/hddtemp
>> tcp6 0 0 :::53 :::*
>> LISTEN 37...
2006 Nov 01
1
strange issue with backgroundrb behind apache/lighttpd
...1.8/gems/rails-1.1.6/lib/fcgi_h
andler.rb:53:in `process!''
(druby://localhost:42531) /usr/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/fcgi_h
andler.rb:23:in `process!''
(druby://localhost:42531) /home/chall/radrails/workspace/chip2/public/dispat
ch.fcgi:24
(druby://localhost:22222) /usr/lib/ruby/1.8/drb/invokemethod.rb:10:in `block
_yield''
(druby://localhost:22222) /usr/lib/ruby/1.8/drb/invokemethod.rb:17:in `perfo
rm_with_block''
(druby://localhost:22222) /usr/lib/ruby/1.8/drb/invokemethod.rb:14:in `each''
/app/controllers/search_control...
2003 Nov 23
1
coplot row separatot line
...ility.
I'll try a sketch:
> coplot(y~x | a)
given: a
+------------------------------+
| 6666 |
| 55555 |
| 4444 |
+ - - - - - - - - - - - - - - -+ <== this line
| 333 |
| 22222 |
| 11111 |
+------------------------------+
+--------+ +--------+ +--------+
| 4 | | 5 | | 6 |
| | | | | |
+--------+ +--------+ +--------+
+--------+ +--------+ +--------+
| 1 | | 2 | | 3 |
| | |...
2004 Oct 05
0
SIP and symmetric NAT
...elog of firmware 1.0.5.7 I saw: "If a symmetric
NAT is detected, still use mapped IP:port instead of using private
IP."
The Grandstream can't register to asterisk. First it speaks
succesfully to the STUN. Then it sends SIP-messages to the asterisk.
Lets say the pakets come from port 22222 of the nat-router with ip
"1.1.1.1". But in the SIP-pakets the Grandstream tells the asterisk
his Port is 33333 at ip 1.1.1.1. Now asterisk thinks "ok, this client
is at port 33333 on ip 1.1.1.1" (content in SIP message), although the
Grandstream pakets in real came from port 22...