imbadatthis
Technical User
trying to figure zone based policy inspection working ...
so I defined my DMZ:
I figured since i have alot of traffic matching access-group DMZ and i trust that traffic I can just pass it instead of inspecting it.
and then I put fa0/0 as OUTSIDE
and my fa0/1 as INSIDE.
however traffic comes to a stopping halt.
Furthermore, the router says its passing DNS traffic but I can't load websites:
the Cisco site says the zone-pairing is unidirectional only, however it says that responding traffic should come through.
what am I doing incorrectly ?
We must go always forward, not backward
always up, not down and always twirling twirling towards infinity.
so I defined my DMZ:
Code:
class-map type inspect match-any DMZ-TRAFFIC
match protocol http
match protocol dns
match protocol https
match protocol icmp
match protocol ftp
match protocol smtp extended
match protocol sip
match protocol pop3
match protocol ntp
match protocol telnet
match protocol fasttrack
match access-group name DMZ
I figured since i have alot of traffic matching access-group DMZ and i trust that traffic I can just pass it instead of inspecting it.
Code:
policy-map type inspect DMZ
class type inspect DMZ-TRAFFIC
pass
class class-default
inspect
zone security DMZ
zone security OUTSIDE
zone-pair security DMZ-OUTSIDE source DMZ destination OUTSIDE
service-policy type inspect DMZ
and my fa0/1 as INSIDE.
however traffic comes to a stopping halt.
Furthermore, the router says its passing DNS traffic but I can't load websites:
Code:
Zone-pair: DMZ-OUTSIDE
Service-policy inspect : DMZ
Class-map: DMZ-TRAFFIC (match-any)
Match: protocol http
82 packets, 2504 bytes
30 second rate 0 bps
Match: protocol dns
12 packets, 532 bytes
30 second rate 0 bps
Match: protocol https
0 packets, 0 bytes
30 second rate 0 bps
Match: protocol icmp
0 packets, 0 bytes
30 second rate 0 bps
Match: protocol ftp
0 packets, 0 bytes
30 second rate 0 bps
Match: protocol smtp extended
0 packets, 0 bytes
30 second rate 0 bps
Match: protocol sip
0 packets, 0 bytes
30 second rate 0 bps
Match: protocol pop3
0 packets, 0 bytes
30 second rate 0 bps
Match: protocol ntp
0 packets, 0 bytes
30 second rate 0 bps
Match: protocol telnet
0 packets, 0 bytes
30 second rate 0 bps
Match: protocol fasttrack
0 packets, 0 bytes
30 second rate 0 bps
Match: access-group name DMZ
20 packets, 612 bytes
30 second rate 0 bps
Pass
114 packets, 3648 bytes
Class-map: class-default (match-any)
Match: any
Inspect
Packet inspection statistics [process switch:fast switch]
tcp packets: [554:3301]
udp packets: [966:7657]
Session creations since subsystem startup or last reset 1505
Current session counts (estab/half-open/terminating) [0:0:0]
Maxever session counts (estab/half-open/terminating) [152:194:4]
Last session created 00:01:10
Last statistic reset never
Last session creation rate 88
Maxever session creation rate 469
Last half-open session total 0
the Cisco site says the zone-pairing is unidirectional only, however it says that responding traffic should come through.
what am I doing incorrectly ?
We must go always forward, not backward
always up, not down and always twirling twirling towards infinity.