home       basis       routing       switching       advanced       security       overig       testen      

ACLs oefening

deze oefening is TE theoretisch en moet in de nabije toekomst vervangen worden door meerdere praktische opgaven met een nuttige lading
 

acls-oef-3routers-2023

 
sjabloon: acls-oef-3-routers-nothing-configured
 

  1. configureer alle interfaces
  2. configureer hostnames
  3. configureer ospf
  4. gebruik een standard ACL to block 10.1.1.1 from reaching 10.1.1.6 and 192.168.1.0/24
     

    R1(config)#ip access-list standard no-10111
    R1(config-std-nacl)#deny host 10.1.1.1
    R1(config-std-nacl)#permit any
    R1(config)#int ser 0/0/0
    R1(config-if)#ip access-group no-10111 in

     
     
  5. gebruik een standard ACL en blokkeer toegang op 192.168.1.0/24 vanaf
    192.168.2.0/25
     

    eveneens op R1 -- op S000 -- inbound

     
  6. gebruik een standard ACL en blokkeer 192.168.2.50 naar 10.1.1.1 op de WAN
     

    op R3 ser0/0/1 inbound

     
  7. filter vty access op R2: slechts toegankelijk vanaf PC2
     

    R2(config)#access-list 10 permit host 192.168.2.50 R2(config-std-nacl)#exit
    R2(config)#line vty 0 15 R2(config-line)#access-class 10 in
    R2(config-line)#no login R2(config-line)#end``
     
     
     
     
     
    unknown source: acls-oef-3-routers
     
     
     
     
    acls-oef-3-routers-addressing-n-rip2_1-2-3-4_werkt