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