文本版|topic 高级搜索
   名人堂 帮助 论坛制度 意见反馈 | 首页 博客 周新贴 招聘 专题 新闻
RSS 底部
 
社区导航: 专家门诊   网络技术   操作系统   数据库   程序设计   系统应用   考试认证   CIO及信息化   站长交流   综合交流   下载基地  51CTO产品服务 设为首页 | 收藏本站
51CTO技术论坛» 网络工程 » extreme 交换机常用维护命令       [ 打印]  [ 订阅]  [ 收藏]  [ 推荐给朋友]   [ 本帖文本页]

论坛跳转:
     
标题: [原创] extreme 交换机常用维护命令  ( 查看:530  回复:6 )   
 
yaoshanbiao
新新人类  点击可查看详细



帖子 39
精华 0
无忧币 -13
积分 2
阅读权限 20
注册日期 2007-7-29
最后登录 2008-7-14 离线

[查看资料]  [发短消息]  [Blog
       
发表于:2007-11-27 11:14   标题:extreme 交换机常用维护命令
上一帖 |
最近有个项目用extreme的网络设备,根据extreme官方资料,整理了一些常用的配置!
1.用户名和密码配置
create account [admin | user] <username> {encrypted} {<password>}
configure account admin
2.port配置
config ports <portlist> auto off {speed [10 | 100 | 1000]} duplex [half | full] auto off
3.Vlan配置
无论是核心还是接入层,都要先创建三个Vlan,并且将所有归于Default Vlan的端口删除:
config vlan default del port all
create vlan Server
create vlan User
create vlan Manger
定义802.1q标记
config vlan Server tag 10
config vlan User tag 20
config vlan Manger tag 30
设定Vlan网关地址:
config vlan Server ipa 192.168.41.1/24
config vlan User ipa 192.168.40.1/24
config vlan Manger ipa 192.168.*.*/24
Enable ipforwarding 启用ip路由转发,即vlan间路由
Trunk 配置
config vlan Server add port 1-3 t
config vlan User add port 1-3 t
config vlan manger add port 1-3 t
4.VRRP配置
enable vrrp
configure vrrp add vlan UserVlan
configure vrrp vlan UserVlan add master vrid 10 192.168.6.254
configure vrrp vlan UserVlan authentication simple-password extreme
configure vrrp vlan UserVlan vrid 10 priority 200
configure vrrp vlan UserVlan vrid 10 advertisement-interval 15
configure vrrp vlan UserVlan vrid 10 preempt

5.端口镜像配置
enable mirroring to port 3 #选择3作为镜像口
config mirroring add port 1 #把端口1的流量发送到3
config mirroring add port 1 vlan default #把1和vlan default的流量都发送到3
6.port-channel配置
enable sharing <port> grouping <portlist> {port-based | address-based | round-robin}

7.stp配置
enable stpd
create stpd *
configure stpd <spanning tree name> add vlan <vlan name> {ports <portlist> [dot1d | emistp | pvst-plus]}
configure stpd stpd1 priority 16384
configure vlan marketing add ports 2-3 stpd stpd1 emistp

8.DHCP 中继配置
enable bootprelay
config bootprelay add <dhcp server ip>
9.NAT配置
Enable nat #启用nat
Static NAT Rule Example
config nat add out_vlan_1 map source 192.168.1.12/32 to 216.52.8.32/32
Dynamic NAT Rule Example
config nat add out_vlan_1 map source 192.168.1.0/24 to 216.52.8.1 - 216.52.8.31
Portmap NAT Rule Example
config nat add out_vlan_2 map source 192.168.2.0/25 to 216.52.8.32 /28 both portmap
Portmap Min-Max Example
config nat add out_vlan_2 map source 192.168.2.128/25 to 216.52.8.64/28 tcp portmap 1024 - 8192


10.OSPF配置
enable ospf 启用OSPF进程
create ospf area <area identifier> 创建OSPF区域
configure ospf routerid [automatic | <routerid>] 配置Routerid
configure ospf add vlan [<vlan name> | all] area <area identifier> {passive} 把某个vlan加到某个Area中去,相当于Cisco中的network的作用
configure ospf area <area identifier> add range <ipaddress> <mask> [advertise | noadvertise] {type-3 | type-7} 把某个网段加到某个Area中去,相当于Cisco中的network的作用
configure ospf vlan <vlan name> neighbor add <ipaddress>

OSPF中路由重发布配置
enable ospf export direct [cost <metric> [ase-type-1 | ase-type-2] {tag <number>} | <route map>]
enable ospf export static [cost <metric> [ase-type-1 | ase-type-2] {tag <number>} | <route map>]
enable ospf originate-default {always} cost <metric> [ase-type-1 | ase-type-2] {tag <number>}
enable ospf originate-router-id

11.SNMP配置
enable snmp access
enable snmp traps
create access-profile <access profile> type [ipaddress | vlan]
config snmp access-profile readonly [<access_profile> | none]配置snmp的只读访问列表,none是去除
config snmp access-profile readwrite [<access_profile> | none] 这是控制读写控制
config snmp add trapreceiver <ip address> {port <udp_port>} community <communitystring> {from <source ip address>} 配置snmp接收host和团体字符串

12.安全配置
disable ip-option loose-source-route
disable ip-option strict-source-route
disable ip-option record-route
disable ip-option record-timestamp
disable ipforwarding broadcast
disable udp-echo-server
disable irdp vlan <vlan name>
disable icmp redirect
disable web 关闭web方式访问交换机
enable cpu-dos-protect

13.Access-Lists配置
create access-list icmp destination source
create access-list ip destination source ports
create access-list tcp destination source ports
create access-list udp destination source ports



14.默认路由配置
config iproute add default <gateway>

15.恢复出厂值,但不包括用户改的时间和用户帐号信息
unconfig switch {all}


16.检查配置
show version
show config
show session
show management 查看管理信息,以及snmp信息
show banner
show ports configuration
show ospf
show access-list {<name> | port <portlist>}
show access-list-monitor
show ospf area <area identifier>
show ospf area detail
show ospf ase-summary
show ospf interfaces {vlan <vlan name> | area <area identifier>}
unconfigure ospf {vlan <vlan name> | area <area identifier>}

17.备份和升级软件
download image [<hostname> | <ipaddress>] <filename> {primary | secondary}
upload image [<hostname> | <ipaddress>] <filename> {primary | secondary}
use image [primary | secondary]



小知识点:

1.DHCP中继。bootp relay /dhcp relay 用于主机获取它的IP地址,但是在一个高度需要安全的网络中需要以更安全的方法配置它,比如通过udp-forwarding的方法来配置dhcp relay。disable bootprelay 以下是一个用udp-forwarding 代替enable bootrelay 的配置例子。
create udp-profile backbonedhcp
config backbonedhcp add 67 ipaddress *
config user_vlan1 udp-profile backbonedhcp
2.密码恢复。
Extreme交换机在你丢失或忘记密码后,需要重新启动交换机,常按空格键,进入Bootrom模式,输入“h”,选择“d: Force Factory default configuration”清除配置文件,最后选择“f: Boot on board flash”重新启动后密码会被清除掉。注意:恢复密码后,以前的配置文件将会被清空。

r~`|kug



网络工程师到底该不该去考CCIE认证?
2007-11-27 11:141楼
[ 顶部 ]
 
dalongba
新新人类  点击可查看详细



帖子 43
精华 0
无忧币 15
积分 43
阅读权限 20
注册日期 2008-4-8
最后登录 2008-6-18 离线

[查看资料]  [发短消息]  [Blog
       
发表于:2008-4-8 23:08 
dddddddddddddddddddd



网络工程师到底该不该去考CCIE认证?
2008-4-8 23:082楼
[ 顶部 ]
 
sdcptian
新新人类  点击可查看详细



帖子 1
精华 0
无忧币 5
积分 1
阅读权限 20
注册日期 2008-4-9
最后登录 2008-4-9 离线

[查看资料]  [发短消息]  [Blog
       
发表于:2008-4-9 14:38 




网络工程师到底该不该去考CCIE认证?
2008-4-9 14:383楼
[ 顶部 ]
 
wshzdb
新新人类  点击可查看详细



帖子 118
精华 0
无忧币 13
积分 119
阅读权限 20
注册日期 2008-3-23
最后登录 2008-7-17 离线

[查看资料]  [发短消息]  [Blog
       
发表于:2008-4-14 14:09 
11111



网络工程师到底该不该去考CCIE认证?
2008-4-14 14:094楼
[ 顶部 ]
 
dalongba
新新人类  点击可查看详细



帖子 43
精华 0
无忧币 15
积分 43
阅读权限 20
注册日期 2008-4-8
最后登录 2008-6-18 离线

[查看资料]  [发短消息]  [Blog
       
发表于:2008-4-20 21:57 
顶顶顶



网络工程师到底该不该去考CCIE认证?
2008-4-20 21:575楼
[ 顶部 ]
 
billc888
新新人类  点击可查看详细



帖子 35
精华 0
无忧币 -2
积分 35
阅读权限 20
注册日期 2008-4-22
最后登录 2008-7-16 离线

[查看资料]  [发短消息]  [Blog
       
发表于:2008-4-22 11:39 
不错哦!



网络工程师到底该不该去考CCIE认证?
2008-4-22 11:396楼
[ 顶部 ]
 
lovelovexj
新新人类  点击可查看详细



帖子 23
精华 0
无忧币 34
积分 19
阅读权限 20
注册日期 2008-4-27
最后登录 2008-6-3 离线

[查看资料]  [发短消息]  [Blog
       
发表于:2008-4-27 07:23 
dddddddddddddddd



网络工程师到底该不该去考CCIE认证?
2008-4-27 07:237楼
[ 顶部 ]
     
论坛跳转:  

| | |

| | |

| | |

标记已读 · 删除论坛Cookies · 文本版 · WAP
 
| 诚征版主 | 版主堂 | 意见建议 | 大史记 | 论坛地图
Copyright©2005-2008 51CTO.COM  Powered by Discuz!
本论坛言论纯属发布者个人意见,不代表51CTO网站立场!如有疑义,请与管理员联系。
京ICP备05051492号