|
|
< Day Day Up > |
|
Monitoring and Troubleshooting the Transparent FirewallCisco ASA provides show commands to ensure that the transparent firewall is working as expected. In the event of a problem, you can enable relevant debugs (which are discussed later in this section). MonitoringIf transparent firewall mode is configured, first verify that the system is recognizing this mode. You achieve this by using the show firewall command, as shown in Example 10-13. Example 10-13. Output of show firewallBrussels# show firewall
Firewall mode: TransparentSecond, confirm that the system is running in the configured single or multiple mode, as shown in Example 10-14. Example 10-14. Output of show modeBrussels# show mode
Security context mode: multipleOnce you have verified that the system is switching packets in the correct mode, monitor the status of the L2F table, as demonstrated in Example 10-15. By using show mac-address-table, verify the entries in the bridge table if they look accurate, including static and dynamic entries. There are four dynamic L2F entries learned on the outside interface. There is also a static L2F entry pointing to the outside interface with no aging time. Example 10-15. Checking the L2F TableBrussels# show mac-address-table
interface mac address type Age(min)
-----------------------------------------------------------
outside 00d0.c0d2.8030 dynamic 1
outside 0040.8c5c.0e92 dynamic 4
outside 000b.cdf0.8e39 dynamic 4
outside 000e.8315.0bff dynamic 2
outside 00ff.fff0.003e staticshow arp-inspection displays whether ARP inspection is enabled or disabled on all interfaces. Example 10-16 shows that ARP inspection is enabled on the outside interface with the no_flood option if a miss occurs on the static ARP table. ARP inspection is disabled on the inside interface. Example 10-16. Checking the Interfaces for ARP InspectionBrussels # show arp-inspection
interface arp-inspection miss
-------------------------------------------------------------
inside disable -
outside enable no_floodIf everything looks good yet traffic is still not flowing, verify the hit counts on the configured interface ACL. Example 10-17 shows 10 hit counts for IPX traffic. Example 10-17. Monitoring ACLsBrussels# show access-list
access-list inside ethertype permit ipx (hitcount=10)
access-list inside ethertype permit bpdu (hitcount=0)
access-list inside ethertype deny any (hitcount=0)For TCP-, UDP-, and, optionally, ICMP-based traffic passing through the security appliance, you can use the show conn command and verify the connection status. As shown in Example 10-18, a connection is established from 192.168.1.10 to a Telnet server located at 192.168.1.1. Example 10-18. Output of show connBrussels/admin# show conn
1 in use, 1 most used
TCP out 192.168.1.1:23 in 192.168.1.10:11018 idle 0:00:02 bytes 90 flags UIOTroubleshootingFor troubleshooting purposes, Cisco ASA includes a number of important debug and syslog messages to help isolate the issue. This section discusses three troubleshooting scenarios related to the transparent firewalls:
Example 10-21. Output of debug l2-indicationBrussels# debug l2-indication debug l2-indication enabled at level 1 f1_tf_process_l2_hostmove:HOST MOVE: Host move indication cur_ifc outside, new_ifc inside mac address: 00e0.b06a.412c HOST MOVE: cur_vStackNum 0, new_vStackNum 1 HOST MOVE: Host move indication for static entry 00e0.b06a.412c f1_tf_process_l2_hostmove:HOST MOVE: Host move indication cur_ifc outside, new_ifc inside mac address: 00e0.b06a.412c f1_tf_process_l2_hostmove:HOST MOVE: cur_vStackNum 0, new_vStackNum 1 f1_tf_process_l2_hostmove:HOST MOVE: Host move indication for static entry 00e0.b06a.412c
Example 10-22. Clearing the L2F Table Associated with the Outside InterfaceBrussels# clear mac-address-table outside
|
|
|
< Day Day Up > |
|