发布网友 发布时间:2022-04-22 11:04
共1个回答
热心网友 时间:2022-05-23 17:38
1.基于IOS交换机设置主机名/系统名:
switch(config)#
hostname
hostname
基于CLI交换机设置主机名/系统名:
switch(enable)
set
system
name
name-string
2.基于IOS交换机设置登录口令:
switch(config)#
enable
password
level
1
password
基于CLI交换机设置登录口令:
switch(enable)
set
password
switch(enable)
set
enalbepass
3.基于IOS交换机设置远程访问:
switch(config)#
interface
vlan
1
switch(config-if)#
ip
address
ip-address
netmask
switch(config-if)#
ip
default-gateway
ip-address
基于CLI交换机设置远程访问:
switch(enable)
set
interface
sc0
ip-address
netmask
broadcast-address
switch(enable)
set
interface
sc0
vlan
switch(enable)
set
ip
route
default
gateway
4.基于IOS交换机启用浏览CDP信息:
switch(config-if)#
cdp
enable
switch(config-if)#
no
cdp
enable
查看Cisco邻接设备CDP通告信息:
switch#
show
cdp
interface
[type
modle/port]
switch#
show
cdp
neighbors
[type
mole/port]
[detail]
基于CLI交换机启用浏览CDP信息:
switch(enable)
set
cdp
{enable|disable}
mole/port
查看Cisco邻接设备CDP通告信息:
switch(enable)
show
cdp
neighbors[mole/port]
[vlan|plex|capabilities|detail]
5.基于IOS交换机端口描述:
switch(config-if)#
description
description-string
基于CLI交换机端口描述:
switch(enable)set
port
name
mole/number
description-string
6.基于IOS交换机设置端口速度:
switch(config-if)#
speed{10|100|auto}
基于CLI交换机设置端口速度:
switch(enable)
set
port
speed
moudle/number
{10|100|auto}
switch(enable)
set
port
speed
moudle/number
{4|16|auto}
7.基于IOS交换机设置太网链路模式:
switch(config-if)#
plex
{auto|full|half}
基于CLI交换机设置太网链路模式:
switch(enable)
set
port
plex
mole/number
{full|half}
8.基于IOS交换机配置静态VLAN:
switch#
vlan
database
switch(vlan)#
vlan
vlan-num
name
vla
switch(vlan)#
exit
switch#
configure
teriminal
switch(config)#
interface
interface
mole/number
switch(config-if)#
switchport
mode
access
switch(config-if)#
switchport
access
vlan
vlan-num
sw
查看原帖>>
采纳哦