CORRECT TEXT
To access the router console port, refer to the Exhibit, click the router for access and perform the following tasks.
Answer:
Explanation:
Router(config)# zone security INSIDE
Router(config-sec-zone)#exit
Router(config)# zone security OUTSIDE
Router(config-sec-zone)#exit
Router(config)# interface fa0/0/1
Router(config-if)# no shutdown
Router(config-if)# zone-member security INSIDE
Router(config-if)# exit
Router(config)# interface fa0/0/0
Router(config-if)# no shutdown
Router(config-if)# zone-member security OUTSIDE
Router(config-if)# exit
Router(config)# class-map type inspect match-any HTTP_POLICY
Router(config-cmap)# match protocol http
Router(config-cmap)#exit
Router(config)# policy-map type inspect IN-TO-OUT-POLICY
Router(config-pmap)# class type inspect HTTP_POLICY
Router(config-pmap-c)# inspect
Router(config-pmap-c)# exit
Router(config)# zone-pair security IN-TO-OUT source INSIDE destination OUTSIDE
Router(config-sec-zone-pair)# service-policy type inspect IN-TO-OUT-POLICY
Router(config-sec-zone-pair)# end
Router(config)# copy running-config startup-config1: we divide the network into 2 zones: INSIDE and OUTSIDE
2: apply the interfaces to the appropriate Zone Members INSIDE | OUTSIDE
3: create a class-map with defined name HTTP_POLICY > match HTTP protocol
4: create a policy-map name IN-TO-OUT-POLICY: – define the class-map and apply action > inspect
5: create a zone-pair > specify direction with source and destination
6: apply policy to the zone-pair – policy created in step 4
7: std: copy run start