?
The base config started out with Cat1 fa0/5 (switch access vlan 15).  VLAN 59 
was not on the switch so I added vlan 59 and put the interface into vlan 59.  
(This will be an issue b/t R5/R1 b/c now its not in vlan 15)

Cat1(config-if)#do sh run int fa0/5
Building configuration...
Current configuration : 84 bytes
!
interface FastEthernet0/5
 switchport access vlan 59
 switchport mode access
end
 
So, should this be the config on the Cat1's fa0/5 interface
int fa0/5
switch trunk encap dot1q
switch trunk native vlan 59
 
R5
----
R5(config-router-af)#do sh run int fa0/0.59
Building configuration...
Current configuration : 122 bytes
!
interface FastEthernet0/0.59
 encapsulation dot1Q 59
 ip vrf forwarding VPNB
 ip address 150.50.59.5 255.255.255.0
end
R9
----
R9(config-if)#do sh ip int brie
Interface                  IP-Address      OK? Method Status                
Protocol
FastEthernet0/0            150.50.59.9     YES manual up                    up
FastEthernet0/1            unassigned      YES manual administratively down down
Serial0/2/0                unassigned      YES manual administratively down down
Serial0/2/1                unassigned      YES manual administratively down down
Loopback0                  200.0.0.9       YES manual up                    up
R9(config-if)#do sh run int fa0/0
Building configuration...
Current configuration : 96 bytes
!
interface FastEthernet0/0
 ip address 150.50.59.9 255.255.255.0
 duplex auto
 speed auto
end

My pings are failing from R5 to R9:
 
R5(config-router-af)#do sh ip int brie
Interface                  IP-Address      OK? Method Status                
Protocol
FastEthernet0/0            unassigned      YES manual up                    up
FastEthernet0/0.15         150.50.15.5     YES manual up                    up
FastEthernet0/0.59         150.50.59.5     YES manual up                    up
FastEthernet0/1            unassigned      YES manual administratively down down
Serial0/1/0                unassigned      YES manual up                    up
Serial0/1/0.25             150.50.25.1     YES manual up                    up
Serial0/1/0.56             150.50.56.1     YES manual up                    up
Serial0/2/0                unassigned      YES manual administratively down down
Loopback0                  200.0.0.5       YES manual up                    up
R5(config-router-af)#do ping 150.50.59.9
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 150.50.59.9, timeout is 2 seconds:
...
Success rate is 0 percent (0/3)
R5(config-router-af)#do ping 150.50.59.9 so fa0/0.59
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 150.50.59.9, timeout is 2 seconds:
Packet sent with a source address of 150.50.59.5
..
Success rate is 0 percent (0/2)
R5(config-router-af)#do ping 200.0.0.9 so lo0
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 200.0.0.9, timeout is 2 seconds:
Packet sent with a source address of 200.0.0.5
..
Success rate is 0 percent (0/2)
 
 
Not sure what I'm missing here.
 
Thanks!
Chris
 

________________________________

From: Rogelio Gamino [mailto:[email protected]]
Sent: Mon 4/4/2011 11:31 AM
To: Lemish, Christopher
Cc: [email protected]
Subject: Re: [OSL | CCIE_RS] Volume 1 Lab#30.7



You already have...

interface FastEthernet0/0.15
encapsulation dot1Q 15 native  <------ native VLAN
ip vrf forwarding VPNA
ip address 150.50.15.5 255.255.255.0

I don't think you can have a native vlan configured on multiple subinterfaces 
on the same physical interface. In this case you will have to tag one or the 
other.




On Apr 4, 2011, at 10:51 AM, Lemish, Christopher wrote:

> ?
> Hey guys,
>
> I have a question concerning lab 30.7.  I can't put an ip address on the R5  
> fa0/0.59 interface.  Do I need to put the encapsulation dot1q 59 native cmd 
> on there and change the switchport config to accept a subinterface from R5?  
> This labs base config had a lot of ip address mistakes that needed to be 
> fixed to get reachability on R2/R5/R6.
>
> I'm getting this message:
>
> R5(config-router-af)#int fa0/0.59
> R5(config-subif)#ip add 150.50.59.5 255.255.255.0
> % Configuring IP routing on a LAN subinterface is only allowed if that
> subinterface is already configured as part of an IEEE 802.10, IEEE 802.1Q,
> or ISL vLAN.
>
> Thank you,
> Chris
>
> R5 Config
> R5(config-subif)#do sh run
> Building configuration...
>
> Current configuration : 2877 bytes
> !
> version 12.4
> service timestamps debug datetime msec
> service timestamps log datetime msec
> no service password-encryption
> !
> hostname R5
> !
> boot-start-marker
> warm-reboot
> boot-end-marker
> !
> logging message-counter syslog
> !
> no aaa new-model
> memory-size iomem 15
> !
> dot11 syslog
> ip source-route
> !
> !
> ip cef
> !
> !
> ip vrf VPNA
> rd 256:1
> route-target export 256:1
> route-target import 256:1
> !
> ip vrf VPNB
> rd 256:2
> route-target export 256:2
> route-target import 256:2
> !
> no ipv6 cef
> !
> multilink bundle-name authenticated
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> voice-card 0
> !
> !
> !
> !
> !
> archive
> log config
>  hidekeys
> !
> !
> !
> !
> !
> !
> !
> !
> !
> interface Loopback0
> ip address 200.0.0.5 255.255.255.255
> !
> interface FastEthernet0/0
> no ip address
> duplex auto
> speed auto
> !
> interface FastEthernet0/0.15
> encapsulation dot1Q 15 native
> ip vrf forwarding VPNA
> ip address 150.50.15.5 255.255.255.0
> !
> interface FastEthernet0/0.59
> ip vrf forwarding VPNB
> !
> interface FastEthernet0/1
> no ip address
> shutdown
> duplex auto
> speed auto
> !
> interface Serial0/1/0
> no ip address
> encapsulation frame-relay
> no arp frame-relay
> no frame-relay inverse-arp
> frame-relay lmi-type cisco
> !
> interface Serial0/1/0.25 point-to-point
> ip address 150.50.25.1 255.255.255.252
> snmp trap link-status
> mpls ip
> frame-relay interface-dlci 501
> !
> interface Serial0/1/0.56 point-to-point
> ip address 150.50.56.1 255.255.255.252
> snmp trap link-status
> mpls ip
> frame-relay interface-dlci 506
> !
> interface Serial0/2/0
> no ip address
> shutdown
> !
> router eigrp 59 59
> auto-summary
> !
> address-family ipv4 vrf VPNB
>  redistribute bgp 256 metric 2000 1000 255 1 1500 59
>  network 150.50.59.0 0.0.0.0
>  no auto-summary
> exit-address-family
> !
> router ospf 2
> log-adjacency-changes
> network 150.50.25.1 0.0.0.0 area 0
> network 150.50.56.1 0.0.0.0 area 0
> network 200.0.0.5 0.0.0.0 area 0
> !
> router rip
> !
> address-family ipv4 vrf VPNA
>  redistribute bgp 256 metric 3
>  network 150.50.0.0
>  no auto-summary
>  version 2
> exit-address-family
> !
> router bgp 256
> no bgp default ipv4-unicast
> bgp log-neighbor-changes
> neighbor 200.0.0.2 remote-as 256
> neighbor 200.0.0.2 update-source Loopback0
> neighbor 200.0.0.6 remote-as 256
> neighbor 200.0.0.6 update-source Loopback0
> !
> address-family vpnv4
>  neighbor 200.0.0.2 activate
>  neighbor 200.0.0.2 send-community extended
>  neighbor 200.0.0.6 activate
>  neighbor 200.0.0.6 send-community extended
> exit-address-family
> !
> address-family ipv4 vrf VPNB
>  redistribute eigrp 59
>  no synchronization
> exit-address-family
> !
> address-family ipv4 vrf VPNA
>  redistribute rip
>  no synchronization
> exit-address-family
> !
> ip forward-protocol nd
> ip http server
> no ip http secure-server
> !
> !
> !
> !
> !
> !
> !
> !
> !
> mpls ldp router-id Loopback0
> !
> control-plane
> !
> !
> !
> ccm-manager fax protocol cisco
> !
> !
> !
> !
> !
> !
> !
> line con 0
> exec-timeout 0 0
> line aux 0
> line vty 0 4
> login
> !
> scheduler allocate 20000 1000
> end
>
> R9 Config
> R9(config-router)#do sh run
> Building configuration...
>
> Current configuration : 1088 bytes
> !
> version 12.4
> service timestamps debug datetime msec
> service timestamps log datetime msec
> no service password-encryption
> !
> hostname R9
> !
> boot-start-marker
> warm-reboot
> boot-end-marker
> !
> logging message-counter syslog
> !
> no aaa new-model
> memory-size iomem 15
> !
> dot11 syslog
> ip source-route
> !
> !
> ip cef
> !
> !
> no ipv6 cef
> !
> multilink bundle-name authenticated
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> voice-card 0
> !
> !
> !
> !
> !
> archive
> log config
>  hidekeys
> !
> !
> !
> !
> !
> !
> !
> !
> !
> interface FastEthernet0/0
> ip address 150.50.79.9 255.255.255.0
> duplex auto
> speed auto
> !
> interface FastEthernet0/1
> no ip address
> shutdown
> duplex auto
> speed auto
> !
> interface Serial0/2/0
> no ip address
> shutdown
> no fair-queue
> !
> interface Serial0/2/1
> no ip address
> shutdown
> !
> router eigrp 59
> network 150.50.59.9 0.0.0.0
> network 200.0.0.9 0.0.0.0
> no auto-summary
> !
> ip forward-protocol nd
> ip http server
> no ip http secure-server
> !
> !
> !
> !
> !
> !
> !
> !
> !
> !
> control-plane
> !
> !
> !
> ccm-manager fax protocol cisco
> !
> !
> !
> !
> !
> !
> !
> line con 0
> exec-timeout 0 0
> line aux 0
> line vty 0 4
> login
> !
> scheduler allocate 20000 1000
> end
>
>
> This email and any files transmitted with it are confidential and are
> intended for the sole use of the individual(s) to whom they are properly
> addressed. Any use, dissemination or forwarding of this email and any
> files transmitted with it by anyone other than the intended recipient(s)
> is strictly prohibited. If you have received this email in error, please
> notify the sender by replying to this email. Black Box Corporation and
> its affiliates reserve the right to scan and monitor all e-mail traffic.
>
> _______________________________________________
> For more information regarding industry leading CCIE Lab training, please 
> visit www.ipexpert.com




This email and any files transmitted with it are confidential and are
 intended for the sole use of the individual(s) to whom they are properly
 addressed. Any use, dissemination or forwarding of this email and any
 files transmitted with it by anyone other than the intended recipient(s)
 is strictly prohibited. If you have received this email in error, please
 notify the sender by replying to this email. Black Box Corporation and
 its affiliates reserve the right to scan and monitor all e-mail traffic.
 
_______________________________________________
For more information regarding industry leading CCIE Lab training, please visit 
www.ipexpert.com

Reply via email to