Link to home
Start Free TrialLog in
Avatar of James
James

asked on

Adding a 2nd WIC for dummies?

Ok  stupid question.  I have a 1841 Router with one T1 controller card.  Added another one in the router & rebooted.
How do I get the Router to see the new card?

interface FastEthernet0/0
 description xxxxxxx
 ip address 192.168.103.1 255.255.255.0
 no ip mroute-cache
 duplex auto
 speed auto
!
interface FastEthernet0/1
 no ip address
 no ip mroute-cache
 shutdown
 duplex auto
 speed auto
!
interface Serial0/0/0
 description CID xxxx
 ip address 192.168.254.14 255.255.255.252
 encapsulation ppp
 no fair-queue

I have another 1841 with two controller cards & I want to set this one up the same way.  Two T1 controllers & Multilink them.

controller T1 0/0/0
 framing esf
 linecode b8zs
 channel-group 0 timeslots 1-24
 description MLPPP-1 to Main
!
controller T1 0/0/1
 framing esf
 linecode b8zs
 channel-group 0 timeslots 1-24
 description MLPPP-2 to Main

interface Multilink1
 description MLPP to Main xxxxxxx
 ip address 192.168.254.6 255.255.255.252
 no cdp enable
 ppp multilink
 ppp multilink fragment disable
 ppp multilink group 1
 service-policy output MCK

Do I need to issue ?
Card Type T1 0 0
Card Type T1 0 1

Thanks!
ASKER CERTIFIED SOLUTION
Avatar of mikecr
mikecr
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
Avatar of James
James

ASKER

It's a VWIC2-1MFT-T1/E1
Avatar of James

ASKER

Issued the commands:
card type t1 0 1
controller t1 0/1/0 (only controller command IOS would allow)

So now I have:

controller T1 0/1/0
 framing esf
 linecode b8zs
!
!
interface Loopback0
 no ip address
!
interface FastEthernet0/0
 description xxxxxxx
 ip address 192.168.103.1 255.255.255.0
 no ip mroute-cache
 duplex auto
 speed auto
!
interface FastEthernet0/1
 no ip address
 no ip mroute-cache
 shutdown
 duplex auto
 speed auto
!
interface Serial0/0/0
 description xxxx
 ip address 192.168.254.14 255.255.255.252
 encapsulation ppp
 no fair-queue

How do I get that other controller seen as a Serial so I can multlink them?
Avatar of James

ASKER

I think I answered my own question.

Added:
 channel-group 0 timeslots 1-24

Now I see
interface Serial0/1/0:0
 no ip address

I assume I can just Multilink them now?
Yup, sure can. Just add the commands to add them into the multilink group.
Avatar of James

ASKER

Thanks for the help!