Operating System - Tru64 Unix
1827313 Members
5197 Online
109961 Solutions
New Discussion

ipf.conf for proxy server

 
thirawat_1
New Member

ipf.conf for proxy server

dear expert all
i'm implement my proxy server for serve
my network

a.b.c.d/22
e.f.g.h/22
i.j.k.l/23
m.n.o.p/23

i'm config ipf.conf from examples file but notwork

this my file ipf.conf

# block all inbound packets.
#
block in from any to any
#
# pass through packets to and from localhost.
#
pass in from 127.0.0.1/32 to 127.0.0.1/32
#
# allow a variety of individual hosts to send any type of IP
# packet to any other host.
#
pass in from a.b.c.d/22 to any
pass in from e.f.g.h/22 to any
pass in from i.j.k.l/23 to any
pass in from m.n.o.p/23 to any
#
#
# block all outbound packets.
#
block out from any to any
#
# allow any packets destined for localhost out.
#
pass out from any to 127.0.0.1/32
#
# allow any host to send any IP packet out to a limited number
# of hosts.
#
pass out from any to a.b.c.d/22
pass out from any to e.f.g.h/22
pass out from any to i.j.k.l/23
pass out from any to m.n.o.p/23
# end

i wanted serve my four network
and other network i'm wanted to deny
how i can? please.
1 REPLY 1
Al Licause
Trusted Contributor

Re: ipf.conf for proxy server

I believe proxy servers are most often deployed with either web servers or firewalls.

Unfortunately, there doesn't appear to be much of a focus in this discussion group for either of those subjects. A look through the other forums offered by HP also seems to come up short for this type of configuration.

A quick search for ipf.conf in one of the more popular search engines on the Internet shows much more promise.

Good luck.