All of lore.kernel.org
 help / color / mirror / Atom feed
* open https port outbound
@ 2005-01-21 11:20 Jose Horacio Mello de Jesus
  2005-01-21 13:29 ` Jason Opperisano
  0 siblings, 1 reply; 2+ messages in thread
From: Jose Horacio Mello de Jesus @ 2005-01-21 11:20 UTC (permalink / raw)
  To: netfilter

    I need open a https connection for internet external access in 
specific port.

    For example https://host:1234.

    Tank's...

    Horácio.

  

INTELI Tecnologia em Alta Segurança
Fone/Fax: +55-51-3019-8388
*** Importante ***
Esta mensagem, incluindo seus eventuais anexos, tem caráter confidencial e
seu conteúdo é restrito ao(s) destinatário(s) da mensagem. A INTELI não é
responsável pelo conteúdo ou a veracidade desta informação. Caso você
tenha recebido esta mensagem por engano, queira por favor imediatamente
retorná-la ao emissor e apagá-la sem a leitura de seus arquivos. Qualquer uso,
replicação ou disseminação desta mensagem ou parte dela é proibido.




^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: open https port outbound
  2005-01-21 11:20 open https port outbound Jose Horacio Mello de Jesus
@ 2005-01-21 13:29 ` Jason Opperisano
  0 siblings, 0 replies; 2+ messages in thread
From: Jason Opperisano @ 2005-01-21 13:29 UTC (permalink / raw)
  To: netfilter

On Fri, 2005-01-21 at 06:20, Jose Horacio Mello de Jesus wrote:
>     I need open a https connection for internet external access in 
> specific port.
> 
>     For example https://host:1234.
> 
>     Tank's...
> 
>     Hor√°cio.

it would be defined just like any other outbound rule:

  iptables -A OUTPUT|FORWARD -p tcp --dport 1234 -j ACCEPT

if you trying to enforce that the traffic over port 1234 is actually
HTTP over SSL; then you would need to proxy port 1234 to an SSL-aware
HTTP proxy; such as squid, and add port 1234 as an SSL port.  in squid
this would be:

  acl SSL_ports port 443 563 1234

-j

--
"Fame was like a drug. But what was even more like a drug were
 the drugs."
	--The Simpsons



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-01-21 13:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-21 11:20 open https port outbound Jose Horacio Mello de Jesus
2005-01-21 13:29 ` Jason Opperisano

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.