[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: tircproxy
Please check your facts first. Look at the tircproxy port, it does support
PF.
// Brad
brad@comstyle.com
brad@openbsd.org
>Date: Wed, 27 Mar 2002 03:48:33 +0100
>From: Han <han@mijncomputer.nl>
>To: misc@openbsd.org
>Subject: Re: tircproxy
>
>Kasza Karoly (scythe@rudas.hu) wrote:
>
>> I need to get DCC work under NAT with OpenBSD 3.0.
>
>You have to learn how to setup port forwarding, and you have to tell
>your irc-client to tell the world about your external ip adress and
>data-port.
>
>Put this in nat.conf:
>
> rdr on $ext_if proto tcp from any to $ext_if port 7777 -> 192.168.1.10 port 7777
>
>Put this in pf.conf:
>
> pass in quick on $ext_if proto tcp from any to 192.168.1.10 port 7777 flags S modulate state
>
>And if you use irssi for example:
>
> /set dcc_own_ip 123.45.67.89
> /set dcc_port 7777
>
>Were 123.45.67.89 is your external ip. And 192.168.1.10 is the ip of the
>client. This can also be 192.168.1.1 if the client is the firewall.
>
>> [snip: tircproxy]
>
>Tirc proxy does not work with pf :S
>
>
>
>Cya, Han.