Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2384219
  • 博文数量: 328
  • 博客积分: 4302
  • 博客等级: 上校
  • 技术积分: 5486
  • 用 户 组: 普通用户
  • 注册时间: 2010-07-01 11:14
个人简介

悲剧,绝对的悲剧,悲剧中的悲剧。

文章分类

全部博文(328)

文章存档

2017年(6)

2016年(18)

2015年(28)

2014年(73)

2013年(62)

2012年(58)

2011年(55)

2010年(28)

分类: 网络与安全

2014-05-12 16:38:16

Oracle Switch ES1-24 是 Oracle 万兆以太网交换机产品组合中的一员,是经过专门设计的一款架顶式 (ToR) 服务器访问交换机,具有全面的第二层特性和第三层特性和线速交换功能,可提供高性能。 该交换机采用紧凑的半宽 1U 空间布局,配有 20 个 RJ45 1/10Gbase-T 端口和 4 个 1/10 GbE SFP+ 端口,通过重用现有的铜缆即可轻松地从 1 Gbps 基础架构迁移到 10 Gbps 基础架构。此外,它利用两个相邻单元在 IU 机架空间中实现了冗余架构,并通过逻辑链路聚合功能实现了快速故障切换。 

接入路由器

进入ILOM之后运行下面的命令
-> cd /SYS/fs_cli/

查看路由器基本信息

show nvram

查看路由器IP信息

show ip interface

启动一个接口(端口)

SEFOS-1# configure terminal
SEFOS-1(config)# interface extreme-ethernet 0/8
SEFOS-1(config-if)# shutdown
SEFOS-1(config-if)# no shutdown
SEFOS-1(config-if)# exit
SEFOS-1(config)# exit
SEFOS-1# show interface extreme-ethernet 0/8

配置IP地址

SEFOS-1# configure terminal
SEFOS-1(config)# interface vlan 1
SEFOS-1(config-if)# shutdown
SEFOS-1(config-if)# ip address 12.0.0.1 255.0.0.0
SEFOS-1(config-if)# no shutdown
SEFOS-1(config-if)# exit
SEFOS-1(config)# interface extreme-ethernet 0/1
SEFOS-1(config-if)# no shutdown
SEFOS-1(config-if)# exit
SEFOS-1(config)# interface extreme-ethernet 0/2
SEFOS-1(config-if)# no shutdown
SEFOS-1(config-if)# exit

一个完整的配置


建立VLAN并添加相应端口

SEFOS-1# configure terminal
SEFOS-1(config)# vlan 101
SEFOS-1(config-vlan)# ports extreme-ethernet 0/1-2 untagged
extreme-ethernet 0/1-2
SEFOS-1(config-vlan)# vlan active
SEFOS-1(config-vlan)# exit

启动对应接口(端口)

SEFOS-1# configure terminal
SEFOS-1(config)# interface range extreme-ethernet 0/1-2
SEFOS-1(config-if-range)# switchport pvid 101
SEFOS-1(config-if-range)# no shutdown
SEFOS-1(config-if-range)# exit

配置VLAN IP并启动VLAN

SEFOS-1# configure terminal
SEFOS-1(config-int)# interface vlan 101
SEFOS-1(config-int)# ip address 20.0.0.1 255.0.0.0
SEFOS-1(config-int)# no shutdown
SEFOS-1(config-int)# exit

确认VLAN已启动

SEFOS-1# show ip interface
vlan1 is down, line protocol is down
Internet Address is 10.0.0.1/8
Broadcast Address 10.255.255.255
vlan101 is up, line protocol is up
Internet Address is 20.0.0.1/8
Broadcast Address 10.255.255.255
此时主机和路由器之间的链接已经建立,双方可以Ping通

检测接口状态

SEFOS-1# show interface status
Port Status Duplex Speed Negotiation
---- ------ ------ ----- -----------
Ex0/1 connected Full 10 Gbps Auto-Negotiation
Ex0/2 connected Full 10 Gbps Auto-Negotiation
...
Ex0/4 not connected Full 10 Gbps Auto-Negotiation
SEFOS-1# show interface description
Interface Status Protocol
--------- ------ --------
Ex0/1 up up
Ex0/2 up up
Ex0/3 down down
Ex0/4 down down
...
vlan101 up up

检测MAC表

SEFOS-1# show mac-address-table
Vlan Mac Address Type Ports
---- ----------- ---- -----
101 00:14:4f:6c:7d:e9 Learnt Ex0/1
Total Mac Addresses displayed: 1

配置拓扑

SEFOS-1# configure terminal
SEFOS-1(config)# interface range ex 0/21-22
SEFOS-1(config-if-range)# switchport pvid 101
SEFOS-1(config-if-range)# no shutdown
SEFOS-1(config-if-range)# end
阅读(3616) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~