Displaying 20 results from an estimated 239 matches for "myip".
2004 Aug 13
0
HELP: BYE-request not sent to SIP-peer
...asterisk is NOT sending a
BYE request to it's peer, so the peer doen't know to end the session and
continues to send RTP packages to me. Does anyone know how to fix this?
Here's the complete trace from ngrep(make call, speak for 5 seconds,
hangup): UDP port 5060 in all directions
U [myIP]:5060 -> [peerIP]:5060
INVITE sip:011423663900828@sip.provider.com SIP/2.0..Via: SIP/2.0/UDP
[myIP]:5060;branch=z9hG4bK4246930c..From: "423663098668" <sip:
user@sip.provider.com>;tag=as10b2c259..To:
<sip:011423663900828@sip.provider.com>..Contact: <sip:user@[myIP]>...
2007 Feb 05
1
How to access environment variable?
...isk+variables
which says:
Environment Variables
You may access unix environment variables using the syntax:
${ENV(foo)}
${ENV(ASTERISK_PROMPT)}: the current Asterisk CLI prompt.
${ENV(RECORDED_FILE)}: the filename of the last file saved by the Record
command
I have an environmental variable MYIP which contains my current IP
address but when I execute exten _4XX the following line only says
'myip is ' and the rest is blank instead of showing
'myip is www.xxx.yyy.zzz'
exten => _4XX,n,VERBOSE("myip is ${ENV(MYIP)}")
Why doesn't it work?
Larry
--
Lar...
2015 Mar 06
2
closed connection to service xxx
...d" option is deprecated
14285 10028 DENY_WRITE 0x12019f RDWR NONE
/mnt/storage/share/common New Microsoft Office Word Document.docx
Fri Mar 6 09:29:04 2015
I kept word running and after 1? hours these messages appears in the log:
$ tail -f /var/log/samba/log.myIP
[2015/03/06 11:04:31.126911, 1] ../source3/smbd/service.c:1122(close_cnum)
myIP (ipv4:myIP:59614) closed connection to service common
[2015/03/06 11:04:31.127220, 1] ../source3/smbd/service.c:1122(close_cnum)
myIP (ipv4:myIP:59614) closed connection to service richard.huber
[2015/03/06 11:0...
2019 Aug 02
1
ldap passdb auth on proxy
...kerberos). so i add to
10-auth.conf on the proxy:
default_fields = proxy=y host=imap.myserver.lan port=993
any idea why on the backend the user is empty in the logs?
on the proxy:
imap-login: Error: proxy(myuser): Login for imap.myserver.lan:993 timed
out in state=/none (after 30 secs, local=myip:45834): user=<myuser>,
method=PLAIN, rip=myip, lip=myip, TLS, session=<M1JtpiSPGNOsEQED>
imap-login: Info: Aborted login (internal failure, 2 successful auths):
user=<myuser>, method=PLAIN, rip=myip, lip=myip, TLS,
session=<M1JtpiSPGNOsEQED>
on the backend:
imap-login: Err...
2006 Dec 14
1
Broadvoice registration problems
...rname Refresh State
sip.broadvoice.com:5060 yyy@s 120 Request Sent
sip.broadvoice.com:5060 xxx@s 120 Request Sent
xxx and yyy are my ohone numbers,
when I do tcpdump on my router, I see only packets comming out my router
to broadvoice but nothing comming back on port 5060
23:06:41.398952 IP adsl-myip.dsl.chcgil.ameritech.net.5060 >
147.135.12.128.5060: UDP, length 411
23:06:42.306975 IP adsl-myip.dsl.chcgil.ameritech.net.5060 >
147.135.12.128.5060: UDP, length 411
23:06:42.398951 IP adsl-myip.dsl.chcgil.ameritech.net.5060 >
147.135.12.128.5060: UDP, length 411
23:06:44.306932 IP adsl-m...
2006 Nov 24
2
Correct syntax to access a shell variable?
I would like to access my shell environment variable MYIP from within
sip.conf to put in externip.
I've tried some variations of syntax after reading "The Future of
Telephony" but it's not working yet.
Should it be
externip=${ENV{$MYIP}}
or some other syntax??
Larry
--
Larry Alkoff N2LA - Austin TX
Using Thunderbird on Linux
2018 Jun 01
2
GSSAPI vs group check
Dear All,
Is it possible to make any authorization (eg. checking of group
membership) in case of GSSAPI authentication?
Our dovecot authenticates the users against PAM and GSSAPI. In the PAM
file I'm able to check if a user is a member of a selected (e.g
mailreader) group. If the user is member, he can login otherwise not
(see below). If the user has a valid Kerberos ticket and he
2011 Feb 18
0
altering virtual network driver iptables behavior
...p
specifically. I'm doing this so it will force inclusion into the iptables
filtering rules rather than ebtables.
<filter name='my-static-ip' chain='root'>
<rule action='accept' direction='out' priority='500'>
<tcp srcipaddr='$MYIP'/>
</rule>
<rule action='accept' direction='out' priority='500'>
<udp srcipaddr='$MYIP'/>
</rule>
<rule action='accept' direction='out' priority='500'>
<icmp srcipaddr='$MYIP'/>...
2003 May 21
1
Segmentation fault on using SIP -> H323
Hi all,
if i make a call between one SIP soft-phone to an other soft phone over
asterisk, i get a Segmentation fault after take up.
The extension is :
exten => _00.,1,Dial,OH323/${EXTEN}@<myip>|60|r
This means, if a SIP client comes with 00* then dial to <myip> over H323. If
the H323 client takes up, a Segmentation fault occures.
But, if the extension is
exten => _00.,1,Dial,SIP/${EXTEN}@<myip>|60|r
it works.
And, the other direction works , too....
What's w...
2015 Jul 08
4
[PATCH] Updated udp.c to use real client ip and subnetmask values if on local subnet
...udata.StationPort = socket->net.efi.localport;
- udata.UseDefaultAddress = TRUE;
+ /**
+ * Determine if this is remote or local subnet to set
+ * UseDefaultAddress. If ip (TFTP/MTFTP server or
+ * RemoteAddress) is on same subnet as client,
+ * which is stored in IPInfo.myip, this is local subnet.
+ */
+ if (0 == IPInfo.myip || 0 == ip) {
+ /* if either address is NULL, enable default addresses */
+ udata.UseDefaultAddress = TRUE;
+ } else {
+ if ((IPInfo.myip & IPInfo.netmask) == (ip & IPInfo.netmask)) {
+ /* On same...
2015 Mar 09
0
Fwd: closed connection to service xxx
...e "idmap gid" option is deprecated
14285 10028 DENY_WRITE 0x12019f RDWR NONE
/mnt/storage/share/common New Microsoft Office Word Document.docx
Fri Mar 6 09:29:04 2015
I kept word running and after 1? hours these messages appears in the log:
$ tail -f /var/log/samba/log.myIP
[2015/03/06 11:04:31.126911, 1] ../source3/smbd/service.c:1122(close_cnum)
myIP (ipv4:myIP:59614) closed connection to service common
[2015/03/06 11:04:31.127220, 1] ../source3/smbd/service.c:1122(close_cnum)
myIP (ipv4:myIP:59614) closed connection to service richard.huber
[2015/03/06 11:0...
2004 Jul 16
3
PSTN/phone/FXO/FXS cabling issue
...ormation
about T1 cabling and whatnot, but not much about analog lines.
I could make my own cables, but i don't know how to connect the larger
Ethernet-style connector to the smaller analog-style one (which pins go
to which?).
Any help is appreciated. Thanks,
--
Florin Andrei
http://florin.myip.org/
2006 Feb 05
2
re: questions about sip requests to asterisk 1.2
hi all,
I keep asking the question and getting no replies, so i'll keep asking :-)
In asterisk 1.09, with autocreatepeer=yes, if i send asterisk a SIP request
from SER, specifically
rewritehostport("myIP:5070"); (asterisk running on port 5070) asterisk
picks up the request and matches it to the dialplan, i.e. if in ser i was
sending to 151@myServer, it will make it 151@myIP:5070, and asterisk will
match it to 151 in the dialplan.
In asterisk 1.2 asterisk completely ignores the request (even a...
2003 Aug 18
3
dynamic IPSEC: Holy grail sighted
Hi,
Thanks to some pointers from Christian Kratzer, I am now able to join the
office VPN from a random WiFi hotspot. With the configuration files changes
detailed below, from a public WiFi hotspot I can now use this 3 step
procedure to login to the office VPN.
1) While at hotspot, boot up my -STABLE laptop.
2) Insert wireless card.
3) "rsh server"
This procedure works for a DHCP
2016 Feb 29
1
[PATCH 0/1] UEFI UDP/TFTP
...41.html
> This report has led to Gene's patch:
>
> https://github.com/geneC/syslinux/commit/9e0926bb338deb5c634ccb4ee29eb4577158cfdc
> it was reported working but I think "it cannot work" if it has these lines
>
> + memcpy(&udata.StationAddress, &IPInfo.myip, sizeof(IPInfo.myip));
> + memcpy(&udata.StationAddress, &IPInfo.netmask, sizeof(IPInfo.netmask));
>
> the StationAddress gets overwritten by a netmask...
Thanks for noticing. I've corrected this and I'm reviewing the patch itself.
--
-Gene
2015 Apr 14
2
state of IPSec VPN on CentOS 7: Openswan, strongSwan, RPM packages
...just noticed that strongSwan is in EPEL.
I'm also looking at this comment on ServerFault:
http://serverfault.com/a/655752/24406
If that is accurate, the documentation, and the clustering / load
balancing might tilt the balance in the direction of strongSwan.
--
Florin Andrei
http://florin.myip.org/
2015 Apr 14
1
state of IPSec VPN on CentOS 7: Openswan, strongSwan, RPM packages
On 2015-04-14 11:44, Eero Volotinen wrote:
> 2015-04-14 21:40 GMT+03:00 Florin Andrei <florin at andrei.myip.org>:
>>
>> http://serverfault.com/a/655752/24406
>>
>> If that is accurate, the documentation, and the clustering / load
>> balancing might tilt the balance in the direction of strongSwan.
>>
>>
> Well, both packages can do ipsec to cisco asa wit...
2008 Mar 03
1
kickstart server variable name
Hi all,
When your using kickstart and have a command like
linux ks=http://MYIP/file.cfg
Is there a variable in the post section that has the MYIP value?
I want to nfs mount from the same server in the post section.
THanks,
Jerry
2007 Nov 05
1
klibc sparc trouble with gcc > 4.0
...klibc/klibc.git
with belows fix klibc compiles fine on sparc with newer gcc,
but segfaults:
titan:~# strace -vfF /usr/lib/klibc/bin/fstype
execve("/usr/lib/klibc/bin/fstype", ["/usr/lib/klibc/bin/fstype"],
["SHELL=/bin/bash", "TERM=xterm", "SSH_CLIENT=[myip] 39403"...,
"SSH_TTY=/dev/pts/0", "USER=root",
"LS_COLORS=no=00:fi=00:di=01;34:l"...,
"PATH=/usr/local/sbin:/usr/local/"..., "MAIL=/var/mail/root",
"PWD=/root", "LANG=en_US.UTF-8", "PS1=\\h:\\w\\$ ", "HOME=/ro...
2005 Jan 19
1
cannot bind when doing a browser sync
...sync the
browse list. They register with each other correctly because
nmbd/nmbd_sendannounce.c's browse_sync_remote is binding to the LAN address:
send_mailslot(True, BROWSE_MAILSLOT, outbuf,PTR_DIFF(p,outbuf),
global_myname(), 0x0, "*", 0x0, addr, FIRST_SUBNET->myip,
DGRAM_PORT);
So I have "remote browse sync" set to the other hosts's LAN address,
because the source address must local host's LAN address
(FIRST_SUBNET->myip). I've verified that each host sees the other's
browse sync request.
So that's all well and good, b...