Question

You have created a named access list called BlockSales. Which of the following is a valid command for applying this to packets trying to enter interface Fa0/0 of your router?
Group of answer choices

(config)#ip access-group 110 in

(config-if)#BlockSales ip access-list in

(config-if)#ip access-group 110 in

(config-if)#ip access-group Blocksales in

Answers

There are no human answers yet.
Answered by GPT-4o mini
To apply an access list to an interface on a Cisco router, you use the `ip access-group` command followed by the access list number or name, and specify the direction (in or out).

In your case, since you have created a named access list called `BlockSales`, the correct command would be:

```bash
(config-if)#ip access-group BlockSales in
```

So, the correct answer from your options is:

**(config-if)#ip access-group BlockSales in**

Please note that access list names are case sensitive, so make sure to use the correct case as necessary.

Related Questions