Case Project 4-2: Creating ACLs You have been assigned to create access control lists to filter specific traffic on a Cisco router. Provide the commands needed to filter the appropriate traffic in each of the following ACLs.ACL 1? Allow Telnet connections to the 192.168.1.0 network from host 10.3.4.7. ? Allow established connections from network 172.16.0.0 to anywhere.? Permit all other access. ACL 2 ? Prevent Telnet connections from network 192.168.1.0 to network 172.16.0.0.? Prevent reserved addresses from accessing any network. ? Deny spoofing from the broadcast address. ? Permit all other access.Router(config)# ip access-list extended ACL1 Router(config-ext-nacl)# permit ip host 10.3.4.7 192.168.1.0 0.0.0.255 eq 23 Router(config-ext-nacl)# permit ip 172.16.0.0 0.0.255.255 any established…