基本設定
- 首先要先進入 Privileged EXEC Mode:
c6200> enable
Password:
c6200#
- 再進入 Global Configuration Mode, 使用者可以直接在 configure
後面接上 terminal:
c6200# configure terminal
c6200(config)#
- 每一片 SLC 都有自己的編號, 依序是 5 到 14,
分別代表其安插在哪一個 slot. 每一片 SLC 都有 8 個 port,
分別編號為 0 到 7. 每一片 SLC 都需要設定其介面卡的型別,
下面的指令在於設定 slot 5 的 SLC 介面卡型別為 slc1-8-cap:
c6200(config)# c6200 card 5 slc1-8-cap
- 然後再分別進入每一個 port 作設定, 下面的指令為進入
slot 5 的 SLC 的 port 0:
c6200(config)# interface dsl 5/0
- 然後可以對於這個用戶取一個名稱, 如 boston:
c6200(config-if)# dsl subscribername boston
c6200(config-if)# no dsl subscribername
- no 這個指令很常用,
如果要取消任何已經輸入的設定的話, 接可以使用.
- 接著針對此用戶設定其傳輸速率,
下例為將此用戶設定為下傳速度為 1600 Kb/s, 上傳速度為 272
Kb/s:
c6200(config-if)# dsl bitrate downstream 1600 upstream 272
c6200(config-if)# no shutdown
- 然後結束 Global Configuration Mode:
c6200(config-if)# end
c6200(config)#
|
|
|