From first glance, yes thats what i noticed. The ip address is assigned to main interface. Now i am not sure that working on ASA is any different than working on 26xx 37xx, ect, but the ip address has to be on the subinterfaces, the main interface can not have an ip. The interface has to be up and the switchport on your switch that connects has to be a TRUNKing port. HAve you checked that yet?
Also not having any experience with the ASA, Is there a way to define your encapsulation type as i dont see that. Either ISL (if supported) but preferably dot1q.
http://www.cisco.com/en/US/products/...html#wp1044006
I found a link that describes that dot1q, is the encapsulation type, this link also describes configuring your ASA subinterfaces.
Like I said above maybe check your switch and ensure the link is trunked.
Check out this note that I found on the above link:
If you use subinterfaces, you typically do not also want the physical interface to pass traffic, because the physical interface passes untagged packets. Because the physical interface must be enabled for the subinterface to pass traffic, ensure that the physical interface does not pass traffic by leaving out the nameif command. If you want to let the physical interface pass untagged packets, you can configure the nameif command as usual.
I would reconfigure the interface as such according to the documentation:
interface Ethernet0/0
security-level 100
!
interface Ethernet0/0.1
vlan 1
nameif VL_1
security-level 100
ip address 192.168.0.254 255.255.255.0
In your opinion, what is the difference between the PIX and the ASA?
Also, what is the purpose of the security-level command?
M