Ok so I have an example in my Sybex 5 book, and I am getting confused with inbound/outbound ACL's.
Here is the example:
In this lab you will allow only packets from HostB (on network 172.16.30.0) to enter 172.16.10.0.
Go to Lab_A router and enter global configuration mode...etc..Choose to permit host 172.16.30.2.
Lab_A(config)#access-list 1 permit 172.16.30.2 0.0.0.0
Now that the access-list is created,you must apply it to an interface to make it work:
LabA(config)#int fa0/0
LabA(config-if)#access-group 1 out
Test your ACL by pinging from HostB 172.16.30.2 to Host A 172.16.10.2. Everywhere else should fail.
My question is, why must it be "out" ? I see "out" aka outbound as traffic leaving the router, and inbound coming into the router. Now if I am right then why not put the ACL as "in" ? Because HostB is coming inbound (172.16.30.2) to HostA (172.16.10.2)...?