[zorp-hu] DNS nem mindig megy át
mimo at hbnet.hu
mimo at hbnet.hu
Tue May 31 12:40:08 CEST 2005
Valamiért nem mindig kérdezhető le a DNS, egyszer tökéletesen le lehet
kérdezni, egyszer pedig nem. (SOA rekordot sem találja, a myDNS
tökéletesen fut)
Van 3 fix IP cím rendelve a tűzfalhoz, ezeket iránytja 3 belső IP-re.
from Zorp.Core import *
from Zorp.Plug import *
from Zorp.Http import *
from Zorp.Ftp import *
InetZone("helyi", "127.0.0.0/8", inbound_services = ["*"],
outbound_services = ["*"])
InetZone("belso", "10.0.3.0/24", inbound_services = ["*"],
outbound_services = ["*"])
InetZone("kulso", "0.0.0.0/0" , inbound_services = ["*"],
outbound_services = ["*"])
...
def helyi():
pass
def belso():
...
Service("kimeno_smtp", PlugProxy)
Receiver(SockAddrInet(FIREWALL_IP, 50053), "kimeno_dns")
def kulso():
...
Service("mustang_dns", PlugProxy,
router=DirectedRouter(SockAddrInet(MUSTANG_A_IP,53)))
Receiver(SockAddrInet(MUSTANG_A_K_IP, 50053), "mustang_dns")
A FIREWALL_IP védett belso hálózati cím (10.0.3.254)
A MUSTANG_A_IP védett belso hálózaton lévő gép IP címe (10.0.3.201)
MUSTANG_A_K_IP valós IP cím
More information about the zorp-hu
mailing list