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
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
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 31485
Url: https://administrator.de/contentid/31485
Ausgedruckt am: 22.11.2024 um 17:11 Uhr
1 Kommentar
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
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