华为交换机的基础配置
一、 交换机端口基本设置
<Switch> system-view 进入全局配置模式
[Switch] interface fastethernet0/1 打开100M快速以太网 0/1口 如果是10M以太网,一般AP都是10M的。
Switch[fastethernet0/1] undo 打开交换机0/1端口 默认情况下是打开的 ,但有时你需要关闭时。
Switch[fastethernet0/1] duplex full/half 全双工/半双工
二、 Switch[fastethernet0/1] quit 退出
[Switch] display courrent-config 查看当前配置情况
[Switch] vlan 2 创建vlan 2
[switch-vlan2] name h3c 名字为h3c
[switch-vlan2] port Ethernet 0/10 to Ethernet 0/12 把端口 0/10 到0/12划分给vlan 2
[switch-vlan2] quit 退出
[Switch]save 保存配置
三、 给交换机的管理Ip地址
[Switch]interface vlanif 1 打开vlan1
[Switch—vlanif]ip address 192.168.1.1 255.255.255.0 设置ip地址 掩码为24位的,为c类得ip地址
四、 配置一个远程telnet用户认证
[Switch]user-interface vty 0 4 打开远程登录 可以同时在线0-4 同时一起访问5个人,一般交换机telnet 都是0-4
[Switch-ui-vty0-4]authentication-mode password 启动密码访问
[Switch-ui-vty0-4]set authentication password simple h3c 使用密文密码h3c认证
[Switch-ui-vty0-4]user privilege level 3 设置权限为3级 ,有更多访问空间。
你远程登录的的主机ip地址必须是和交换机的管理ip地址 在同一网段。
思科交换机基础配置
思科交换机配置等级分为用户模式,特权模式,全局配置模式
switch> 用户模式
1:进入特权模式 enable
switch> enable
switch# 有#号久代表进入特权模式了
2:进入全局配置模式 configure terminal
switch> enable
switch#configure terminal
switch(conf)# 有conf 就代表进入全局配置模式了
3:设置虚拟局域网vlan 1 interface vlan 1
switch> enable
switch#configure terminal
switch(conf)#hostname aptch2950 把这个交换机名字改为 aptch2950
aptech2950(conf)# interface vlan 1 打开vlan1
aptech2950(conf-if)#ip address 192.168.1.1 255.255.255.0 配置交换机端口ip和子网掩码
aptech2950(conf-if)#no shut 是配置处于运行中
aptech2950(conf-if)#exit 退出
aptech2950(conf)#ip default-gateway 192.168.254 设置网关地址
telnet远程登录配置4:把端口划分给vlan 2
switch> enable
switch#configure terminal
switch(conf) interface range 0/1 – 0/5 一次性打开0/1 到0/5端口
switch(conf-if) port access vlan 2 把这些端口划分给vlan2
5:双工模式设置
switch> enable
switch#configure terminal
switch2950(conf)#hostname aptch-2950
aptech2950(conf)# interface fastehernet 0/17 以17端口为例
aptech2950(conf-if)#duplex full/half/auto 有full , half, auto 三个可选项
6:交换机telnet远程登录设置:
switch>en
switch#configure terminal
switch(conf)#hostname aptech-2950
aptech2950(conf)#enable password cisco 以cisco为特权模式密码
aptech2950(conf)#interface fastethernet 0/1 以17端口为telnet远程登录端口
aptech2950(conf-if)#ip address 192.168.1.1 255.255.255.0
aptech2950(conf-if)#no shut 打开端口fastethernet 0/1 而shutdown是关闭 和h3c undo 一样
aptech2950(conf-if)#exit 退出 和h3c quit 一样
aptech2950(conf)line vty 0 4 设置0-4 个用户可以telnet远程登陆
aptech2950(conf-line)#login
aptech2950(conf-line)#password edge 以edge为远程登录的用户密码
主机设置:
ip 192.168.1.2 主机的ip必须和交换机端口的地址在同一网络段
netmask 255.255.255.0
gate-way 192.168.1.1 网关地址是交换机端口地址
电脑上运行:
telnet 192.168.1.1
进入telnet远程登录界面
password : edge
aptech2950>en
password: cisco
就可以远程配置命令了
以上都是自己手打出来的,如果有什么不懂的话,可以给我qq或者留言.
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论