cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
3940
Views
30
Helpful
2
Replies

how to figure out ISR4331 E1 slot,bay and subslot number?

baselzind
Level 6
Level 6

the following show inventory come up with this

NAME: "Chassis", DESCR: "Cisco ISR4331 Chassis"
PID: ISR4331/K9 , VID: V04, SN: 

NAME: "Power Supply Module 0", DESCR: "250W AC Power Supply for Cisco ISR 4330"
PID: PWR-4330-AC , VID: V02, SN: 

NAME: "Fan Tray", DESCR: "Cisco ISR4330 Fan Assembly"
PID: ACS-4330-FANASSY , VID: , SN:

NAME: "module 0", DESCR: "Cisco ISR4331 Built-In NIM controller"
PID: ISR4331/K9 , VID: , SN:

NAME: "NIM subslot 0/1", DESCR: "NIM-1MFT-T1/E1 - T1/E1 Serial Module"
PID: NIM-1MFT-T1/E1 , VID: V05, SN: 

NAME: "PVDM subslot 0/4", DESCR: "PVDM4-32 Voice DSP Module"
PID: PVDM4-32 , VID: V02, SN: 

 

im trying to configure the voice gateway from scratch according to this document

https://www.cisco.com/c/en/us/td/docs/routers/access/interfaces/software/feature/guide/vd-t1e1_vwic3.html

 

but dont knonw how to find the slot , subslot , bay numbers for the E1 card? please help 

1 Accepted Solution

Accepted Solutions

Ayodeji Okanlawon
VIP Alumni
VIP Alumni

It is easier than you think.

In my example, here is my sh inv.


NAME: "NIM subslot 0/1", DESCR: "NIM-4MFT-T1/E1 - T1/E1 Serial Module"

My NIM is on subslot 0/1. This means that each of my E1 port on that module will be numbered as follows depending on how many ports I have ( in my case it is 4)

So it will be e1 0/1/0, 0/1/1, 0/1/2 and 0/1/3

If you do a show diag, you get similar picture

sh diag sub 0/1 ee
SPA EEPROM data for subslot 0/1:

        Product Identifier (PID) : NIM-4MFT-T1/E1
        Version Identifier (VID) : V04
      -----      
EEPROM data for slot 0 bay 1 daughter board 1

        Product Identifier (PID) : PVDM4-256
        Version Identifier (VID) : V02
   

Now you define your card type using your slot and subslot number based on the output of your sh inv.    example: ( slot 0/subslot 1 and slot 0/subslot 2)
card type e1 0 1
card type e1 0 2

And finally you can see all my E1 controllers
controller E1 0/1/0
 shutdown
 pri-group timeslots 1-31
!
controller E1 0/1/1
 shutdown
 pri-group timeslots 1-31
!         
controller E1 0/1/2
 pri-group timeslots 1-31
!
controller E1 0/1/3
 clock source line primary
 pri-group timeslots 1-31

 

In your example, you will define your config as follows

card type e1 0 1

and controller e1 0/1/0 ( you only have one port)

Please rate all useful posts

View solution in original post

2 Replies 2

Dennis Mink
VIP Alumni
VIP Alumni

your e1 controller is in 0/1 as your output shows.

 

 

Please remember to rate useful posts, by clicking on the stars below.

Ayodeji Okanlawon
VIP Alumni
VIP Alumni

It is easier than you think.

In my example, here is my sh inv.


NAME: "NIM subslot 0/1", DESCR: "NIM-4MFT-T1/E1 - T1/E1 Serial Module"

My NIM is on subslot 0/1. This means that each of my E1 port on that module will be numbered as follows depending on how many ports I have ( in my case it is 4)

So it will be e1 0/1/0, 0/1/1, 0/1/2 and 0/1/3

If you do a show diag, you get similar picture

sh diag sub 0/1 ee
SPA EEPROM data for subslot 0/1:

        Product Identifier (PID) : NIM-4MFT-T1/E1
        Version Identifier (VID) : V04
      -----      
EEPROM data for slot 0 bay 1 daughter board 1

        Product Identifier (PID) : PVDM4-256
        Version Identifier (VID) : V02
   

Now you define your card type using your slot and subslot number based on the output of your sh inv.    example: ( slot 0/subslot 1 and slot 0/subslot 2)
card type e1 0 1
card type e1 0 2

And finally you can see all my E1 controllers
controller E1 0/1/0
 shutdown
 pri-group timeslots 1-31
!
controller E1 0/1/1
 shutdown
 pri-group timeslots 1-31
!         
controller E1 0/1/2
 pri-group timeslots 1-31
!
controller E1 0/1/3
 clock source line primary
 pri-group timeslots 1-31

 

In your example, you will define your config as follows

card type e1 0 1

and controller e1 0/1/0 ( you only have one port)

Please rate all useful posts