我正在尝试通过 Cisco 2811 上的 T1 端口启动 PPP。我最近将固件升级到了 12.4(24)T2:
cisco-2811#show ver
Cisco IOS Software, 2800 Software (C2800NM-ADVENTERPRISEK9-M), Version 12.4(24)T2, RELEASE SOFTWARE (fc2)
它有 4 个安装了 T1/E1 端口的插槽(三个 2 端口模块和一个 1 端口模块):
cisco-2811#show diag
Slot 0:
C2811 Motherboard with 2FE and integrated VPN Port adapter, 2 ports
...
WIC Slot 0:
VWIC2-1MFT-T1/E1 - 1-Port RJ-48 Multiflex Trunk - T1/E1
...
WIC Slot 1:
VWIC2-2MFT-T1/E1 - 2-Port RJ-48 Multiflex Trunk - T1/E1
...
WIC Slot 2:
VWIC2-2MFT-T1/E1 - 2-Port RJ-48 Multiflex Trunk - T1/E1
...
WIC Slot 3:
VWIC2-2MFT-T1/E1 - 2-Port RJ-48 Multiflex Trunk - T1/E1
...
我已将卡类型指定为 T1 并重新启动。我可以在输出中看到控制器接口,但输出中show run
仍没有任何Serial
接口。我已将我的完整配置粘贴在下面。任何见解都值得赞赏。show run
interface ?
谢谢,Nathan Alderson
cisco-2811#show run
Building configuration...
Current configuration : 1433 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname cisco-2811
!
boot-start-marker
boot-end-marker
!
card type t1 0 0
card type t1 0 1
card type t1 0 2
card type t1 0 3
logging message-counter syslog
enable secret 5 $1$4REP$JN8wnnSMwWfdkWv6PDVbf/
enable password PASSWORD
!
no aaa new-model
no network-clock-participate wic 0
no network-clock-participate wic 1
no network-clock-participate wic 2
no network-clock-participate wic 3
!
dot11 syslog
ip source-route
!
!
ip cef
!
!
no ipv6 cef
!
multilink bundle-name authenticated
!
!
voice-card 0
!
!
archive
log config
hidekeys
!
!
controller T1 0/0/0
cablelength long 0db
!
controller T1 0/1/0
cablelength long 0db
!
controller T1 0/1/1
cablelength long 0db
!
controller T1 0/2/0
cablelength long 0db
!
controller T1 0/2/1
cablelength long 0db
!
controller T1 0/3/0
cablelength long 0db
!
controller T1 0/3/1
cablelength long 0db
!
!
interface FastEthernet0/0
ip address dhcp
duplex full
speed auto
no mop enabled
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
ip forward-protocol nd
no ip http server
no ip http secure-server
!
!
control-plane
!
!
line con 0
speed 115200
line aux 0
line vty 0 4
password password
login
!
scheduler allocate 20000 1000
end
答案1
搞清楚了。只需要在我的控制器上创建通道组:
controller T1 0/0/0
cablelength long 0db
channel-group 0 timeslots 1-24
现在我有了串行接口!