Hi, I am currently trying to do the ccna integrated skills challenge. I stuck at the inter vlan routing part.
consider only branch 1
the router config :
interface FastEthernet0/0
description Admin VLAN 10
no ip address
duplex auto
speed auto
!
interface FastEthernet0/0.10
description Admin VLAN 10
encapsulation dot1Q 10
ip address 10.1.10.1 255.255.255.0
!
interface FastEthernet0/0.20
description Sales VLAN 20
encapsulation dot1Q 20
ip address 10.1.20.1 255.255.255.0
!
interface FastEthernet0/0.30
description Production VLAN 30
encapsulation dot1Q 30
ip address 10.1.30.1 255.255.255.0
!
interface FastEthernet0/0.88
description Wireless VLAN 88
encapsulation dot1Q 88
ip address 10.1.88.1 255.255.255.0
!
interface FastEthernet0/0.99
description Mgmt&Native VLAN 99
encapsulation dot1Q 99 native
ip address 10.1.99.1 255.255.255.0
!
B1-SW1 config :
hostname B1-S1
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
memory-size iomem 5
ip cef
!
spanning-tree vlan 1 priority 4096
spanning-tree vlan 10 priority 4096
spanning-tree vlan 20 priority 4096
spanning-tree vlan 30 priority 4096
spanning-tree vlan 88 priority 4096
spanning-tree vlan 99 priority 4096
!
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet1/0
!
interface FastEthernet1/1
switchport trunk native vlan 99
switchport trunk allowed vlan 1,10,20,30,88,99,1001-1005
switchport mode trunk
!
interface FastEthernet1/2
switchport trunk native vlan 99
switchport trunk allowed vlan 1,10,20,30,88,99,1001-1005
switchport mode trunk
!
interface FastEthernet1/3
switchport trunk native vlan 99
switchport trunk allowed vlan 1,10,20,30,88,99,1001-1005
switchport mode trunk
!
interface FastEthernet1/4
switchport trunk native vlan 99
switchport trunk allowed vlan 1,10,20,30,88,99,1001-1005
switchport mode trunk
!
interface FastEthernet1/5
switchport trunk native vlan 99
switchport trunk allowed vlan 1,10,20,30,88,99,1001-1005
switchport mode trunk
!
interface Vlan1
no ip address
!
interface Vlan99
ip address 10.1.99.21 255.255.255.0
!
ip default-gateway 10.1.99.1
!
!
ip http server
no ip http secure-server
!
no cdp log mismatch duplex
B1-S2 conf :
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet1/0
!
interface FastEthernet1/1
switchport trunk native vlan 99
switchport mode trunk
!
interface FastEthernet1/2
switchport trunk native vlan 99
switchport mode trunk
!
interface FastEthernet1/3
switchport trunk native vlan 99
switchport mode trunk
!
interface FastEthernet1/4
switchport trunk native vlan 99
switchport mode trunk
!
interface FastEthernet1/5
!
interface FastEthernet1/6
switchport access vlan 10
!
interface FastEthernet1/11
switchport access vlan 20
!
interface FastEthernet1/15
switchport access vlan 30
!
interface Vlan1
no ip address
!
interface Vlan99
ip address 10.1.99.22 255.255.255.0
!
ip default-gateway 10.1.99.1
!
B1-S3 conf :
hostname B1-S3
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
memory-size iomem 5
ip cef
!
spanning-tree vlan 1 priority 8192
spanning-tree vlan 10 priority 8192
spanning-tree vlan 20 priority 8192
spanning-tree vlan 30 priority 8192
spanning-tree vlan 88 priority 8192
spanning-tree vlan 99 priority 8192
!
!
!
!
!
!
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet1/0
!
interface FastEthernet1/1
switchport trunk native vlan 99
switchport mode trunk
!
interface FastEthernet1/2
switchport trunk native vlan 99
switchport mode trunk
!
interface FastEthernet1/3
switchport trunk native vlan 99
switchport mode trunk
!
interface FastEthernet1/4
switchport trunk native vlan 99
switchport mode trunk
!
interface FastEthernet1/5
!
interface FastEthernet1/6
!
interface FastEthernet1/7
switchport access vlan 88
!
interface Vlan1
no ip address
!
interface Vlan99
ip address 10.1.99.23 255.255.255.0
!
ip default-gateway 10.1.99.1
!
I can not ping to router subinterfaces (from any B1-S2 : ping 10.1.10.1 giving 0 % success)
any help?