• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

netmeeting and routers

alkaprim

Member
Has anyone figured out how to make netmeting work through router?
I have smc barricade wireless router at home and 3 comps connected to it, 1 wired ,2 wireless.
The one I want use neetmeting on is wireles windows me laptop.
Installed netmeeting 3 no problems but i cannot connect to
microsoft directory what should I do ?
Help appreciated , thanks.

ps.
If not netmeeting can you suggest a prog that will work ( just audio).
 
Quote from:

http://www.practicallynetworked.com/sharing/app_port_list.htm

H.323 compliant video player,
NetMeeting 2.0, 3.0, Intel Video Phone
(Watch Out! Opens a wide port range!)
(Incoming calls are not possible
due to NetMeeting assigning ports dynamically.)
OUT TCP 1720
IN UDP 1024 65534 [use H.323 protocol if available]
OUT UDP 1024 65534 [use H.323 protocol if available]
IN TCP 1024 1502 [use H.323 protocol if available]
OUT TCP 1024 1502 [use H.323 protocol if available]
IN TCP 1504 1730 [use H.323 protocol if available]
OUT TCP 1504 1730 [use H.323 protocol if available]
IN TCP 1732 65534 [use H.323 protocol if available]
OUT TCP 1732 65534 [use H.323 protocol if available]
OUT TCP 1503 1503
OUT TCP 1731 1731
IN TCP 1503 1503
IN TCP 1731 1731
 
Netmeeting ports:

389 LDAP.
636 Secure LDAP over SSL.
1503 T.120 teleconferencing protocol.
1720 H.323 call setup.
1731 Audio call control protocol.
 
This is only partially correct. These instructions are for opening firewall ports. You are also running NAT. Since the router uses your ip address and each computer is then assigned an internal ip address, you have to rout each port through the router to the correct machine manually. I've read many places that this is possible but most routers I've tried only allow about 10 forwarded ports. This is fine if you need to just forward 1 for a server of FTP but not enough for video conferencing. I've not been able to figure out how to do it and finally gave up. I couldn't even get it to work from a machine on DMZ. The DMZ machine goes through firewall clean but still doesn't get the correct ports forwarded to it through the NAT. If you get this to work please tell me how you did it.
 
The only way I can think of that would allow you to have 3 machines use netmeeting from behind a firewall is to setup your own ILS server and have it on the DMZ. ILS software comes standard with WinNT4 and Win2K server CD. I dunno it can be installed on Workstation though.
 
I tried dmz but it doesn't hack it.I'm gonna to assign ip manually to that laptop (right now uses dchp) and see what happens.
But thats after xmas.
Merry christmas everybody.
 

You need to open them ports for Netmeeting and portforward the external IP to the appropriate computer/internal IP.

If you are using a generic router then try this:

Server Rules:

Portforward: 216.151.100.123 10.10.x.x tcp_389
Portforward: 216.151.100.123 10.10.x.x tcp_636
Portforward: 216.151.100.123 10.10.x.x tcp_1503
Portforward: 216.151.100.123 10.10.x.x tcp_1720
Portforward: 216.151.100.123 10.10.x.x tcp_1731


Ipchains/Iptables:

Portforward:"0/0 10.10.x.x -d 216.151.100.123 -p tcp_389 tcp_636 tcp_1503 tcp_1720 tcp_1731"


eg.
0/0 = From Any IP.
10.10.x.x = Internal IP.
-d = Destination.
216.151.100.123 = Anandtech External IP (firewall IP).
-p = Protocol.
_xxx = Port number.
 
Back
Top