交換機(jī)怎么修改端口信息?
一、修改端口模式之前需要將端口恢復(fù)成默認(rèn)配置。
二、修改方法有兩種:
1、逐條刪除命令,直到端口上沒有其他非默認(rèn)配置為止
2、V200R001及其以后版本可以在系統(tǒng)視圖下通過clear configuration interface GigabitEthernet x/x/x一鍵清除配置,執(zhí)行命令后端口會(huì)被shutdown,需要在接口視圖下手動(dòng)undo shutdown打開。
三、交換機(jī)修改端口模式的時(shí)候報(bào)錯(cuò)案例:
交換機(jī)的端口原來是trunk模式,透傳了所有vlan。現(xiàn)在想將其修改為access模式時(shí)報(bào)錯(cuò)。
#
interface Ethernet0/0/5
port link-type trunk
port trunk allow-pass vlan 2 to 4094
#
return
[Quidway-Ethernet0/0/5]undo port trunk allow-pass vlan all
[Quidway-Ethernet0/0/5]port link-type access
Error: Please renew the default configurations.
1、分析報(bào)錯(cuò)信息是Error: Please renew the default configurations.表示端口目前不是默認(rèn)配置不能修改端口模式。需要還原端口默認(rèn)配置。
2、在查看本端口的配置
[Quidway-Ethernet0/0/5]disp this
#
interface Ethernet0/0/5
port link-type trunk
undo port trunk allow-pass vlan 1
#
return
3、對(duì)比端口默認(rèn)配置發(fā)現(xiàn)端口多了標(biāo)紅的那條命令,端口下默認(rèn)配置是沒有這一條的。因此需要將此命令去掉。
4、在端口下執(zhí)行命令:
[Quidway-Ethernet0/0/5]port trunk allow-pass vlan 1
再display this看:
#
interface Ethernet0/0/5
port link-type trunk
#
已經(jīng)是默認(rèn)配置了。
5、再次修改端口模式成功:
[Quidway-Ethernet0/0/5]port link-type access
[Quidway-Ethernet0/0/5]display this
interface Ethernet0/0/5
port link-type access
#