Using the files ive given make an ACL in the far r...
تم الإنشاء في: ٤ نوفمبر ٢٠٢٥
تمت الإجابة باستخدام GPT-5 Thinking بواسطة Chat01
تم الإنشاء في: ٤ نوفمبر ٢٠٢٥
تمت الإجابة باستخدام GPT-5 Thinking بواسطة Chat01
Got it! Here’s a ready-to-paste ACL for the far-right router with the serial links. It matches the screenshot you shared (HTTP/HTTPS to the public web servers, DNS replies from 200.200.0.36, and ICMP between the p2p serial IPs), then denies everything else and logs.
What it allows
Where to apply
s0/1/0 (and s0/1/1 if you have a second customer link).enable → conf t, then paste these lines.Config (paste this)
textconf t ip access-list extended CORP_FW_IN remark === Public web servers reachable from the Internet === remark A3.com web server permit tcp any host 200.200.9.243 eq 80 permit tcp any host 200.200.9.243 eq 443 remark NATEX.com web server permit tcp any host 200.200.9.250 eq 80 permit tcp any host 200.200.9.250 eq 443 remark === Inside host allowed to browse the Internet === remark NATEX client can browse web permit tcp host 200.200.9.251 any eq 80 permit tcp host 200.200.9.251 any eq 443 remark === DNS replies from ISP DNS (200.200.0.36) to inside hosts/servers === permit udp host 200.200.0.36 eq 53 host 200.200.9.243 gt 1023 permit udp host 200.200.0.36 eq 53 host 200.200.9.251 gt 1023 remark === P2P serial ping between Corp (.229) and ISP (.230) === permit icmp host 200.200.9.229 host 200.200.9.230 echo permit icmp host 200.200.9.230 host 200.200.9.229 echo-reply remark === Default deny with logging === deny ip any any log exit interface s0/1/0 ip access-group CORP_FW_IN in ! If you have a second customer serial, uncomment and apply here too: ! interface s0/1/1 ! ip access-group CORP_FW_IN in end wr mem
I also saved this as a tiny text file so you can copy/paste straight into the router CLI:
Download the ACL config
If your serial interface name differs, run show ip interface brief on the far-right router and apply the ACL on the correct Serial x/x/x in the inbound direction.
[Class Name]-[first 3 consonant of surname]-[initial of first name]-[R for router / SW for switch]-[sequence number 3 digits]
Using the given format, use my name "Andrei R. Calarion"
Here you go—based on Andrei R. Calarion:
Plugged into your format:
(Replace [ClassName] with your actual class, e.g., CCNA2-CLR-A-R-001.)