ACL部分目前了解的还不是很透。

先放2个例子吧

例1:设置让R1无法ping通R3上的3.3.3.3

 

ACL访问控制_第1张图片

 在R2上得e0/0端口做如下设置:

 

   
   
   
   
  1. !  
  2. interface Ethernet0/0  
  3.  ip address 192.168.12.2 255.255.255.0  
  4.  ip access-group 1 out 
  5.  half-duplex  
  6. !  
  7. interface Ethernet0/1  
  8.  ip address 192.168.23.2 255.255.255.0  
  9.  half-duplex  
  10. !  
  11. interface Ethernet0/2  
  12.  no ip address  
  13.  shutdown  
  14.  half-duplex  
  15. !  
  16. interface Ethernet0/3  
  17.  no ip address  
  18.  shutdown  
  19.  half-duplex  
  20. !  
  21. router eigrp 10  
  22.  network 192.168.12.0  
  23.  network 192.168.23.0  
  24.  auto-summary  
  25. !  
  26. ip http server  
  27. no ip http secure-server  
  28. !  
  29. !  
  30. !  
  31. access-list 1 deny   3.3.3.3  
  32. access-list 1 permit any 
  33. !  
  34. !  
  35. control-plane  

 

 

例2:

让R1可以ping通R3的3.3.3.3,但是无法连接上

还是在R2上进行设置

 

   
   
   
   
  1. !  
  2. interface Ethernet0/0  
  3.  ip address 192.168.12.2 255.255.255.0  
  4.  ip access-group 101 in 
  5.  half-duplex  
  6. !  
  7. interface Ethernet0/1  
  8.  ip address 192.168.23.2 255.255.255.0  
  9.  half-duplex  
  10. !  
  11. interface Ethernet0/2  
  12.  no ip address  
  13.  shutdown  
  14.  half-duplex  
  15. !  
  16. interface Ethernet0/3  
  17.  no ip address  
  18.  shutdown  
  19.  half-duplex  
  20. !  
  21. router eigrp 10  
  22.  network 192.168.12.0  
  23.  network 192.168.23.0  
  24.  auto-summary  
  25. !  
  26. ip http server  
  27. no ip http secure-server  
  28. !  
  29. !  
  30. !  
  31. access-list 101 deny   tcp any host 3.3.3.3 eq telnet  
  32. access-list 101 permit ip any any 
  33. !  
  34. !  
  35. control-plane  
注意一下 31 32行写的顺序,顺序反了的话起不到作用