Link to home
Start Free TrialLog in
Avatar of Jobeethemage
JobeethemageFlag for United States of America

asked on

Routing between 192 and 10. networks

I am setting up a lab for ccna and ccna voice. I am following the ccna lab book which is using the 10.10 network. I purchased an vm of cucm that is using 192 network. I am also using a router on a stick. For some reason even though I made a static route on the router I cant ping between the two networks. Im sure you will need more info so please let me know what to provide. Thanks in advance for any help.
Avatar of Adam Resnick
Adam Resnick

Rather than complicate things, is it possible to change the IP of the VM? If you've purchased it, I'm presuming you've got admin rights to the image.
Avatar of lruiz52
Please post your routers  config.
From the router on a stick can you ping a host in each subnet?
Avatar of Jobeethemage

ASKER

I can change the ip of the vm. But its a cucm vm. So if I change the ip on the vm, the cucm software is still showing the old ip and it wont let me log in.
Here is my router on a stick config

Current configuration : 1656 bytes
!
! Last configuration change at 17:33:34 UTC Tue Dec 30 2014
version 15.1
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
!
!
no aaa new-model
!
dot11 syslog
ip source-route
!
!
ip cef
ip dhcp excluded-address 10.10.0.1 10.10.0.10
ip dhcp excluded-address 10.15.0.1 10.15.0.10
!
ip dhcp pool data
 network 10.10.0.0 255.255.255.0
 default-router 10.10.0.1
 option 150 ip 10.10.0.1
!
ip dhcp pool voice
 network 10.15.0.0 255.255.255.0
 option 150 ip 10.15.0.1
!
!
!
no ip domain lookup
no ipv6 cef
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
!
!
voice-card 0
!
crypto pki token default removal timeout 0
!
!
!
!
license udi pid CISCO2811 sn FTX1425A0E5
!
!
!
!
!
!
!
interface FastEthernet0/0
 no ip address
 duplex auto
 speed auto
!
interface FastEthernet0/0.10
 description Data Vlan
 encapsulation dot1Q 10
 ip address 10.10.0.1 255.255.255.0
!
interface FastEthernet0/0.11
 description Management Vlan
 encapsulation dot1Q 11
 ip address 10.11.0.1 255.255.255.0
!
interface FastEthernet0/0.15
 description Voice Vlan
 encapsulation dot1Q 15
 ip address 10.15.0.1 255.255.255.0
!
interface FastEthernet0/1
 no ip address
 shutdown
 duplex auto
 speed auto
!
ip forward-protocol nd
no ip http server
no ip http secure-server
!
!
ip route 192.168.15.10 255.255.255.255 FastEthernet0/0
ip route 192.168.15.10 255.255.255.255 FastEthernet0/0.10
!
!
!
!
control-plane
!
!
!
!
mgcp profile default
!
!
!
!
!
line con 0
 logging synchronous
line aux 0
line vty 0 4
 login
 transport input all
!
scheduler allocate 20000 1000
end
I cannot ping the pc in port 3 at 10.10.0.11
ASKER CERTIFIED SOLUTION
Avatar of giltjr
giltjr
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
It'll probably be best if you draw this out.

Is there a switch connected to port 0/0 on the router? If so, are you enabling trunking on switch?
You will want something like:

interface FastEthernet0/0.20
 description Data Vlan
 encapsulation dot1Q 20
 ip address 192168.15.1 255.255.255.0

And the switch port the router is connected to will need to be setup so that it tag's all traffic.
That was exactly it. I didn't have an interface on the router in the 192 network. Once I did that it all worked great.