From owner-freebsd-questions Mon Mar 6 21:37:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.mia.bellsouth.net (mail1.mia.bellsouth.net [205.152.16.13]) by hub.freebsd.org (Postfix) with ESMTP id 5C2B037BE6A for ; Mon, 6 Mar 2000 21:37:52 -0800 (PST) (envelope-from phastnet@bellsouth.net) Received: from mach2.mia.bellsouth.net (adsl-61-8-25.mia.bellsouth.net [208.61.8.25]) by mail1.mia.bellsouth.net (3.3.5alt/0.75.2) with SMTP id AAA28090; Tue, 7 Mar 2000 00:37:41 -0500 (EST) Message-ID: <005f01bf87f7$376faa00$02ac14ac@mia.bellsouth.net> From: "Phastnet" To: "Ben Williams" Cc: References: <3878.000306@home.com> Subject: Re: Re[2]: dialpad.com Date: Tue, 7 Mar 2000 00:37:24 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Quoting Trevor Johnson Monday, March 06, 2000 > >> I believe they use some form of the H.323 Protocol (the same one > >> that M$ NetMeeting uses) and a "regular" nat-box wont be able to > >> handle it. I did some research on it a while back and found an > >> Open-H.323 website ( http://www.openh323.org/ ) but I haven't had time > >> to pursue it. Nope, I don't think dialpad.com uses the H.323 protocol. I may be wrong, but I know I'm using dialpad.com without a H.323 proxy. > TJ> There's a port of that (net/openh323). > TJ> __ > TJ> Trevor Johnson > > Thanks. Too bad my 'router' doesn't have enough HD to contain the > ports collection. I'll grab the port from distfiles when I have time > (some time during the next year or so) and have a go at it. Not a problem, the only thing you have to do to make dialpad work is to redirect a few ports to one of your local machines, and it works fine on that 1 machine. Here's the ports to redirect: 51210 tcp 51200 udp 51201 udp Since it's easy for me to find, here's the commands I was using when I had ipfw/natd setup: redirect_port tcp 172.20.172.3:51210 51210 redirect_port udp 172.20.172.3:51200 51200 redirect_port udp 172.20.172.3:51201 51201 this was in my /etc/natd.conf file. Of course, replace the 172.20.172.3 with whatever the IP# is for the machine you want dialpad to work on. I just switched to a ipf/ipnat setup, so I have those commands handy too, here they are from my /etc/ipnat.conf: rdr xl0 208.0.0.0/8 port 51210 -> 172.20.172.3 port 51210 tcp rdr xl0 208.0.0.0/8 port 51200 -> 172.20.172.3 port 51200 udp rdr xl0 208.0.0.0/8 port 51201 -> 172.20.172.3 port 51201 udp I am using 208.0.0.0/8 to make sure it works with my dynamic IP# Hope this is what you needed! Shawn M. phastnet.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message