| Author |
Message |
Papy
Guest
|
Posted:
Tue Jul 12, 2005 4:21 pm Post subject:
Receiving Calls |
|
|
I was thinking verything was working good with my netmeeting in winXP
version . But when I connect to a server (ils.noyon.com as an
example )peoples can not call me they say they get an etrror message saying
that i can not accept calls.
I have a router is there a port that i should open to be able to see people
trying to call me .
I do see some but only if I am in conf with someone who can receive calls
?!?!
Thank you for your help |
|
| Back to top |
|
 |
Brian Sullivan
Guest
|
Posted:
Tue Jul 12, 2005 4:21 pm Post subject:
Re: Receiving Calls |
|
|
On Tue, 12 Jul 2005 10:51:15 -0400, Papy wrote:
| Quote: | I was thinking verything was working good with my netmeeting in winXP
version . But when I connect to a server (ils.noyon.com as an
example )peoples can not call me they say they get an etrror message saying
that i can not accept calls.
I have a router is there a port that i should open to be able to see people
trying to call me .
|
If you are behind a router you will not be able to receive incoming calls
made using an ILS server.
Usually to receive incoming calls it will be necessary to designate your
computer as the dmz client ( a local software firewall is strongly
recommended if you do this). A few routers with H.323 gateway functions
will require only forwarding tcp 1503 and 1720.
Incoming calls can then received at the public IP of the router. |
|
| Back to top |
|
 |
Papy
Guest
|
Posted:
Tue Jul 12, 2005 4:21 pm Post subject:
Re: Receiving Calls |
|
|
I will try opening those ports
Thank you Brian
"Brian Sullivan" <briansullivan@WORMTIREDcoursesbywire.com> a écrit dans le
message de news: 1go06vhvobrdk$.tfz66w2s5o71$.dlg@40tude.net...
| Quote: | On Tue, 12 Jul 2005 10:51:15 -0400, Papy wrote:
I was thinking verything was working good with my netmeeting in winXP
version . But when I connect to a server (ils.noyon.com as an
example )peoples can not call me they say they get an etrror message
saying
that i can not accept calls.
I have a router is there a port that i should open to be able to see
people
trying to call me .
If you are behind a router you will not be able to receive incoming calls
made using an ILS server.
Usually to receive incoming calls it will be necessary to designate your
computer as the dmz client ( a local software firewall is strongly
recommended if you do this). A few routers with H.323 gateway functions
will require only forwarding tcp 1503 and 1720.
Incoming calls can then received at the public IP of the router. |
|
|
| Back to top |
|
 |
Brian Sullivan
Guest
|
Posted:
Tue Jul 12, 2005 4:21 pm Post subject:
Re: Receiving Calls |
|
|
On Tue, 12 Jul 2005 11:21:36 -0400, Papy wrote:
| Quote: | I will try opening those ports
|
Remember though -- the most you can hope for is to get incoming calls made
directly to the WAN IP of the router -- incoming ILS initiated calls will
still not be possible. |
|
| Back to top |
|
 |
Nik Futter
Guest
|
Posted:
Wed Jul 13, 2005 1:40 pm Post subject:
Re: Receiving Calls |
|
|
| Quote: | incoming ILS initiated calls will still not be possible.
|
Yes, this is the problem I am now fighting with. Netmeeting is sending
the local IP of the PC to the ILS-Server – and not the public IP of my
router.
One solution could be the program "Yokin's NetMeeting Lister"
(www.yo-ki.com/software/YNMLister/). See:
| Quote: | Utilize open global IP address detection services
Just like 'http://checkip.dyndns.org/', which shows your global IP
address.
|
But download is not available.
I am now trying to solve this problem with a PHP internet page. The PHP
site should do this:
a) detecting the global IP of my router (this works, no problem)
b) sending the data to an ILS server
But I have problems with anonymous connecting via PHP to a LDAP server
(ILS server, Netmeeting). I don't know if I need a password to connect
to the ILS server. But when Netmeeting connects to an ILS server it also
doesn't need a password. Or does there exist a "guest" account ? I have
tried it with the following script - but can not connect:
<HTML><HEAD></HEAD><BODY>
Actual IP-Address: <?php echo getenv('REMOTE_ADDR'); ?><BR>
<?php
$ds=ldap_connect("ils.netmeeting-center.de","389");
$r=ldap_bind($ds);
// Data arrange
$info["cn"]="MyName";
$info["sn"]="Name";
$info["mail"]="-@-.com";
$info["objectclass"]="rtperson";
$info["comment"]="Test with PHP";
$info["location"]="Bavaria";
$info["sappid"]="ms-netmeeting";
$info["sipaddress"]=sprintf('%u',ip2long(join(".",array_reverse(explode("."
,getenv('REMOTE_ADDR'))))));
$info["ilsa32833566"]="1"; // Audio=Yes
$info["ilsa32964638"]="1"; // Video=Yes
// send Data
$r=ldap_add($ds, "cn=MyName, o=CompanyXY, c=com", $info);
ldap_close($ds);
?>
</BODY></HTML>
But I only get this warning:
| Quote: | Warning: ldap_add(): Add: Naming violation in ... test.php on line 20
|
(This is line with ldap_add).
Where is the problem with connecting ?
I now have found someone, who can solve my problem described above - but
he wants 400 $ for this solution. This is too much expensive for my
private using. Is the solution for this problem such a big thing that it
is worth the price of 400 $? |
|
| Back to top |
|
 |
|
|
|
|