文件名称:熟悉交换机的基本配置-python实现画图工具
文件大小:3.3MB
文件格式:PDF
更新时间:2024-06-28 01:25:52
思科网络
(1) 熟悉交换机的基本配置 2. 实验拓扑 图 12-2 实验 1 拓扑图 3. 实验步骤 (1) 步骤 1:配置主机名 Switch>enable Switch#conf terminal Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#hostname S1 (2) 步骤 2:配置密码 S1(config)#enable secret cisco S1(config)#line vty 0 15 S1(config-line)#password cisco S1(config-line)#login (3) 步骤 3:接口基本配置 默认时交换机的以太网接口是开启的。对于交换机的以太网口可以配置其双工模式、速 率等。 S1(config)#interface f0/1 switch(config-if)#duplex { full | half | auto } //duplex 用来配置接口的双工模式,full——全双工、half——半双工、auto——自动检 测双工的模式 switch(config-if)#speed { 10 | 100 | 1000 | auto } //speed 命令用来配置交换机的接口速度,10——10M、100——100M、1000——1000M、auto ——自动检测接口速度。 (4) 配置管理地址 交换机也允许被 telnet,这时需要在交换机上配置一个 IP 地址,这个地址是在 VLAN 接 口上配置的。如下: S1(config)#int vlan 1 S1(config-if)#ip address 172.16.0.1 255.255.0.0 S1(config-if)#no shutdown S1(config)#ip default-gateway 172.16.0.254 //以上在 VLAN 1 接口上配置了管理地址,接在 VLAN 1 上的计算机可以直接进行 telnet 该 地址。为了其他网段的计算机也可以 telnet 交换机,我们在交换机上配置了缺省网关。