Originally posted by lphoang
View Post
nếu bạn dùng thêm CBAC (IOS Firewall) lúc đó thứ tự xử lý packet trong ví dụ trên như sau:
- ở interface f0/0 (interface inside):
+ Policy-routing
+ Routing
+ NAT
+ CBAC
- Ở interface dialer0, dialer1, s0/0/0 (interface outside):
+ NAT
+ Policy-routing
+ Routing
+ CBAC
Như vậy nếu muốn apply CBAC vào interface f0/0 thì sẽ cấu hình như sau:
config t
ip inspect name CBAC_DEMO tcp
ip inspect name CBAC_DEMO udp
!
!cho phép connect khởi tạo từ Internet vào internal mail server
access-list 130 permit tcp any host 192.168.90.100
access-list 130 deny ip any any
!
interface f0/0
ip inspect CBAC in
ip access-group 130 out
!
end
wr
bạn tham khảo thêm thứ tự xử lý packet trên cisco router ở link dưới nhé:
Comment