交换机
园区网交换机
数据中心与云计算交换机
行业精选交换系列
意图网络指挥官
无线
放装型无线接入点
墙面型无线接入点
智分无线接入点
室外无线接入点
场景化无线
行业精选无线系列
无线管理与应用
设备的接口默认是打开状态
注意:配置之前建议使用 Ruijie#show interface status查看接口名称,常用接口名称有FastEthernet(百兆)、GigabitEthernet(千兆)和TenGigabitEthernet(万兆),以下配置以百兆接口为例。
关闭接口:
Ruijie>enable
Ruijie#configure terminal
Ruijie(config)#interface FastEthernet 0/1 ------>进入第一个百兆接口
Ruijie(config-if-FastEthernet 0/1)#shutdown ------>关闭接口
Ruijie(config-if-FastEthernet 0/1)#end
Ruijie#write ------>确认配置正确,保存配置
打开接口:
Ruijie>enable
Ruijie#configure terminal
Ruijie(config)#interface FastEthernet 0/1 ------>进入第一个百兆接口
Ruijie(config-if-FastEthernet 0/1)#no shutdown ------>打开接口,默认端口处于no shutdown状态
Ruijie(config-if-FastEthernet 0/1)#end
Ruijie#write ------>确认配置正确,保存配置