I have the attached diagram and my ASAv config is as follows, for internal-fw1
Code: Select all
interface GigabitEthernet0/0
no nameif
no security-level
no ip address
!
interface GigabitEthernet0/0.1
vlan 1
nameif test1
security-level 100
ip address 192.168.1.1 255.255.255.0
!
interface GigabitEthernet0/0.2
vlan 2
nameif test2
security-level 100
ip address 192.168.2.1 255.255.255.0
!
interface GigabitEthernet0/0.3
vlan 3
nameif test3
security-level 100
ip address 192.168.3.1 255.255.255.0
!
access-list permit_all extended permit ip any any
access-group permit_all in interface test1
access-group permit_all in interface test2
access-group permit_all in interface test3
!
icmp permit any test1
icmp permit any test2
icmp permit any test3
!
Code: Select all
l3svcblock1# sh ip int b
IP Interface Status for VRF "default"(1)
Interface IP Address Interface Status
Vlan1 192.168.1.2 protocol-up/link-up/admin-up
Vlan2 192.168.2.2 protocol-up/link-up/admin-up
Vlan3 192.168.3.2 protocol-up/link-up/admin-up
!
l3svcblock1# sho spanning-tree vlan 1-3 | inc Eth1/3
Eth1/3 Desg FWD 4 128.3 P2p
Eth1/3 Desg FWD 4 128.3 P2p
Eth1/3 Desg FWD 4 128.3 P2p
Arp on Nexus:
Code: Select all
l3svcblock1# sho ip arp
Flags: * - Adjacencies learnt on non-active FHRP router
+ - Adjacencies synced via CFSoE
# - Adjacencies Throttled for Glean
CP - Added via L2RIB, Control plane Adjacencies
PS - Added via L2RIB, Peer Sync
RO - Re-Originated Peer Sync Entry
D - Static Adjacencies attached to down interface
IP ARP Table for context default
Total number of entries: 1
Address Age MAC Address Interface Flags
192.168.2.1 00:00:04 INCOMPLETE Vlan2
l3svcblock1#
Thanks