交换机所使用的 console 接口看上去像是一个普通的 RJ45 网卡接口,但是并不能使用普通的网线与 PC 连接 ^_^ 。它要通过 RJ45-RS232 转换线转换为 RS232 接口(串口),才能和 PC 连接。 现在很多 PC ,包括笔记本,已经没有了 RS232 接口(串口),就需要再通过一个 USB-RS232 的转换线再次转换。
线路物理连接之后,再通过 PC 的 COM 口与交换机进行通信。 一般可使用的工具包括 securetCRT 和超级终端等( Linux 上使用一些其它的工具)。需要设置的内容包括:
配置好后,如果 secureCRT 上按几下 enter 能有反应,表明连接成功。
通过 console 连接进入交换机时,得到的是 console 界面,这个界面的权限很大(除非是已经配置了用户和权限,否则能执行所有的配置命令),因此要小心配置。
如果不知道命令,在界面输入个 ?
,可获得帮助。
一此常用的命令:
vlan 能对局域网划分,让不同 vlan 的 PC 进行相互隔离。
system-view
vlan 2
port GigabitEthernet1/0/3 to GigabitEthernet1/0/10
quit
display current-configuration
删除一个vlan
system-view
undo vlan 2
一般情况下,端口是以 access 模式工作,即只能通过特定号码的 vlan 。 trunk 模式的端口用于交换机与交换机之间连接,能通过很多的 vlan 。以下配置端口为 trunk 模式,并允许 vlan 129-4094 通过。
system-view
interface GigabitEthernet1/0/1
port link-type trunk
port trunk permit all
undo port trunk permit 1 to 128
这个问题有点意思,因为在 H3C 的交换机中,如果一个 trunk 端口直接用 port link-type
命令转为 access 端口时,很多时候会报告一个很奇怪的错误,意思是要先做一些其它的配置。其实,过程是这样的,必须先把端口允许通过的vlan只保留vlan 1,其它全部取消,然后才能配置为access模式,最后才能把这个端口配置到其它的vlan里面。
undo port trunk allow-pass vlan all
port trunk allow-pass vlan 1
port link-type access