Router on a stick question!!!

Ola_CISCOOla_CISCO Member Posts: 73 ■■□□□□□□□□
Hello,

I am currently working on a lab, that is a "Router on a stick set up", I am using a 2x 2950 switches and a 2520 Router to do this, in the workbook it states that the interface on the router is a fastethernet.

I am current using an ethernet interface to set up my sub commands by the only this is:

When I type:

R1(config)#Int eth0.100
R1(config)#encapsulation dot1q 100 (A marker appears beneath the "en")
R1(config)#ip address 192.168.1.1 255.255.255.0 (Then when I skip the "encap 1dotq 100", nd add the ip address)

(I the get a message that the subinterface has to be encapsulated)

can anyone tell me how to do this please.

Thanks in advance!!!!

Comments

  • SlowhandSlowhand Mod Posts: 5,161 Mod
    Your 2520 router doesn't support 802.1q encapsulation. Have a look at Cisco's howto page:
    Platforms
    This feature is supported on these platforms:
    blank.gifCisco 1710 router
    blank.gifCisco 1751 router
    blank.gifCisco 2600 series
    blank.gifCisco 3600 series
    blank.gifCisco 4000-M series (Cisco 4000-M, 4500-M, 4700-M)
    blank.gifCisco 7200 series
    blank.gifRSP1Cisco 7505
    blank.gifRSP2Cisco 7507 and Cisco 7513
    RSP4Cisco 7505, Cisco 7507, Cisco 7513, and Cisco 7576

    Free Microsoft Training: Microsoft Learn
    Free PowerShell Resources: Top PowerShell Blogs
    Free DevOps/Azure Resources: Visual Studio Dev Essentials

    Let it never be said that I didn't do the very least I could do.
  • arsalanjawedarsalanjawed Registered Users Posts: 1 ■□□□□□□□□□
    exactly it is the way it looks!
    any how , you first have to make sub interfaces because it is why called as router on a stick.
    R1(config)#int fa0/0
    R1(config-if)#no ip address
    R1(config-if)#no shut

    R1(config-if)#int fa0/0.2
    R1(config-subif)#encapsulation dot1Q 100
    R1(config-subif)ip add 192.168.1.1 255.255.255.0

    I hope it will work
  • Ola_CISCOOla_CISCO Member Posts: 73 ■■□□□□□□□□
Sign In or Register to comment.