Final answer:
To block traffic with a source address from the internal networks on the S0/1/0 interface, modify the access list to include permit statements for the internal networks before the deny statements.
Step-by-step explanation:
To block any traffic received on the S0/1/0 interface with a source address from the two internal networks, you need to modify the access list. Currently, the access list is only denying all IP traffic. You need to add permit statements for the internal networks before the deny statements. Here's an example:
-
- access-list 107 deny ip any
-
- access-list 107 permit ip source1 source2 any
In the above configuration, replace source1 and source2 with the IP addresses or ranges of the internal networks.
After making this modification, ensure that the access list is applied correctly to the interface using the ip access-group 107 in command.