Страница 1 из 1

citrix+IPX+ipfw

Добавлено: 2009-04-22 13:19:30
Larin
Нужно разрешить некоторым клиентам из сети доступ на citrix сервер в сети.
нашел нужные порты для открытия http://citrix.pp.ru/adv/ports.html

Код: Выделить всё

icabrowser	 1604 TCP	 <not used>
icabrowser 	1604 UDP	ICA Browser
icabrowser 	0x85BA IPX	ICA Browser
с tcp и upd все понятно. но как открыть ipx?

Re: citrix+IPX+ipfw

Добавлено: 2009-04-22 13:36:17
Larin
хм. нужно его сначало включить.
http://people.freebsd.org/~bp/ipx.html

Re: citrix+IPX+ipfw

Добавлено: 2009-04-22 14:33:00
Larin
хм. вот если указывать жестко серв. то не работает.

Код: Выделить всё

${FwCMD} add allow tcp from ${client} to ${Srv} 1494 out via ${LanOut}
${FwCMD} add allow tcp from ${Srv} 1494 to ${client}  in via ${LanOut}
${FwCMD} add allow ip from ${client} to ${Srv} 1604 out via ${LanOut}
${FwCMD} add allow ip from ${Srv} 1604 to ${client}  in via ${LanOut}
если указывать any то работает. странно.

Код: Выделить всё

${FwCMD} add allow tcp from ${client} to any 1494 out via ${LanOut}
${FwCMD} add allow tcp from any 1494 to ${client}  in via ${LanOut}
${FwCMD} add allow ip from ${client} to any 1604 out via ${LanOut}
${FwCMD} add allow ip from any 1604 to ${client}  in via ${LanOut}