>> Session Table (inspect에 의한) #show conn | #show conn long | #show conn | in 1.1
>> NAT Table (NAT/PAT가 적용되어 있는 경우) #show xlate
>> Routing Table (L3로 동작하는 경우) #show route | #show route | in 10.1.1.0
>> MAC Table (L2로 동작하는 경우) #show mac-address-table
inspect는 packet에 대한 정보를 기록하는 기능 --> Session table (#show conn)
TCP -->> Source, Destination IP, Source, Destiation Port, TCP Flag (SYN, ACK, FIN, RST)
UDP -->> Source, Destination IP, Source, Destiation Port, >> timeout
(단 Security Level이 높은곳에서 낮은 곳으로 향하는 경우에 생성됨)
interface g0/0
ip add 1.1.1.254 255.255.255.0
nameif inside
security-level 100
#show interface ip brief
#show nameif
router ospf 1
network 1.1.1.0 255.255.255.0 area 0
#show ospf neighbor (#show ip ospf neighbor)
#show route (#show ip route)
access-list 100 permit tcp any any eq 23
access-group 100 in interface outside
#show access-list
#show run | in access-group
단 예외 상황 !!! >> ICMP는 Security Level에 적용안됨 (ICMP의 경우, inspect를 적용해야 함)