xpluke
Goto Top

Access Control List (ACL) erweitern?

Hallo,

ich soll (als Hausaufgabe für die Uni) eine Access Control List anpassen, die Zeilen haben dieses Schema:

If destination IP address = 60.47.3.4 AND If TCP destination port = 53, PASS
If TCP destination port = 22, PASS


Die Aufgabenstellung, welche ich nicht hinbekommen:

Change the ACLs to add a policy that all SMTP traffic (TCP Port 25) should pass through an SMTP application proxy, 60.47.3.10.

Weiß jemand, wie das mit dem Proxy gehen soll?

Danke für jede Hilfe.

Viele Grüße,
Daniel

Content-Key: 31485

Url: https://administrator.de/contentid/31485

Printed on: April 16, 2024 at 19:04 o'clock

Member: aqui
aqui May 01, 2006 at 13:26:15 (UTC)
Goto Top
Das ist eigentlich recht einfach. Ein Proxy ist nur eine zentrale Maschine die alle SMTP Packete forwardet oder verarbeitet. Nach deiner Nomenklatur sähe die ACL dann so aus:

If destination IP address = 60.47.3.4 AND If TCP destination port = 53, PASS
If TCP destination port = 22, PASS AND
If destination IP address = 60.47.3.10 AND If TCP destination port = 25, PASS

Allerdings ist die Aufgabenstellung etwas unklar. Es könnte auch sein das der Traffic gemeint ist der aus dem SMTP Proxy rauskommt und irgendwo hingeht, dann sähe das so aus:

If destination IP address = 60.47.3.4 AND If TCP destination port = 53, PASS
If TCP destination port = 22, PASS AND
If source IP address = 60.47.3.10 AND If TCP destination port = 25, PASS