Posts filed under 'Cisco'

51CTO:运维工程师

运维工程师 招聘人数:2人
岗位职责:
1、 网站服务器的运行监控、日常维护、数据备份、服务器优化、安全管理以及紧急事故处理等
2、公司内部各种IT设备的日常维护管理
职位要求:
注:有中大型网站实际系统维护经验,不符合此条件者勿试、
1、 相关行业两年以上系统管理维护经验;
2、 精通Linux、mysql、网络、安全,熟练shell编程语言;
3、 具有负载均衡、硬件防火墙、网管交换机和路由器等使用经验;
4、 熟练使用grep、awk、sed、vi等系统工具;
5、 熟练配置常用的开源软件(Apache/MySQL/qmail);
6 熟悉网上常见的攻击方法和防范方法;
7、 很强的分析、解决问题的能力,攻关疑难问题的强烈兴趣;
8、 严谨负责的工作态度,关注细节;
9、 良好的交流能力和团队精神;
10、计算机相关专业本科以上学历;
11、有ICP、ISP、IDC或者门户网站管理维护工作经验者优先。

There_is_a_S_E_A_S_O_N_by_IgNgRez

运维工程师 招聘人数:2人

岗位职责:

1、 网站服务器的运行监控、日常维护、数据备份、服务器优化、安全管理以及紧急事故处理等

2、公司内部各种IT设备的日常维护管理

职位要求:

注:有中大型网站实际系统维护经验,不符合此条件者勿试、

1、 相关行业两年以上系统管理维护经验;

2、 精通Linux、mysql、网络、安全,熟练shell编程语言;

3、 具有负载均衡、硬件防火墙、网管交换机和路由器等使用经验;

4、 熟练使用grep、awk、sed、vi等系统工具;

5、 熟练配置常用的开源软件(Apache/MySQL/qmail);

6、 熟悉网上常见的攻击方法和防范方法;

7、 很强的分析、解决问题的能力,攻关疑难问题的强烈兴趣;

8、 严谨负责的工作态度,关注细节;

9、 良好的交流能力和团队精神;

10、计算机相关专业本科以上学历;

11、有ICP、ISP、IDC或者门户网站管理维护工作经验者优先。

2 comments July 12th, 2009

Cisco 2600 Rommon模式下升级ISO【TFTP】

crt-cm

前天对一台Cisco 2600进行设置接入网络使用,虽然这型号在现在已经老了,可是试想又有谁能说Cisco 2600不是一款应用很广泛的路由器呢,而且现在应在被大量使用的一款路由器。进正题了,记录下所做的操作。

我这人爱折腾,配置好了,即可使用的,可我又想给它的ISO升级一下,于是就有了接下来的实践、琢磨、学习。

由于第一次对Cisco 2600路由器进行ISO升级,书本上看到的升级方法自己觉得很简单,可实际一用就问题百出了。首先出现的问题是升级失败后,每次重启路由器后自动进入Rommon模式,进行了confreg 0×2102设置,无论是进行寄存器设置还是怎么着,每次启动都一样自动进入Rommon模式,现在唯一能解决问题的方法就是在Rommon模式下进行路由器ISO升级,才可解决这样的问题。

Rommon模式下升级ISO的方法有两种(我自己用过的两种)

1、TFTP SERVER方式

首先下载Cisco tftp server软件,并用交叉网线连接笔记本网卡接口与路由器以太网接口必须是0/0接口,并用配置线连接笔记本及路由器配置口。并将你要安装的路由器ISO文件(.bin)放到TFTP服务器目录下,对于笔记本端进行IP的设置,笔记本的设置:ip地址 10.0.0.55掩码   255.255.255.0  网关 10.0.0.57。就是必须开启TFTP后进行如下操作,虽是小事,可也别忘记。

接下来在 rommon 状态下输入:(注意大小写)
rommon 1 >IP_ADDRESS=10.0.0.57(路由器的ip地址)
rommon 2 >IP_SUBNET_MASK=255.255.255.0(路由器的掩码)
rommon 3 >DEFAULT_GATEWAY=10.0.0.55(网关,是笔记本的ip地址)
rommon 4 >TFTP_SERVER=10.0.0.55(是笔记本的ip地址)
rommon 5 >TFTP_FILE=c2600-i-mz.120-7.T.bin(上传文件的名称)
rommon 6 >sync(保存,这个必须是小写命令)
rommon 7 >set(查看一下是否已经将设置信息输入到路由器中)
rommon 8 >tftpdnld(传送文件,必须是小写命令)
IP_ADDRESS: 10.0.0.57
IP_SUBNET_MASK: 255.255.255.0
DEFAULT_GATEWAY: 10.0.0.55
TFTP_SERVER: 10.0.0.55
TFTP_FILE: c2600-c-mz.122-4.T1.bin

Invoke this command for disaster recovery only.
WARNING: all existing data in all partitions on flash will be lost!
Do you wish to continue? y/n:  [n]:  y (出现提示选择y)

Receiving c2600-c-mz.122-4.T1.bin from 192.168.0.2 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!
File reception completed.
Copying file c2600-c-mz.122-4.T1.bin to flash.
Erasing flash at 0×607c0000
program flash location 0×60520000
rommon 25 >

rommon 25 > i             —〉继续初始化

直至进入router> 目录,这样就已经升级完毕,但是别忘记恢复正常配置寄存器:Router(config)#config-register 0×2102也可在Rommon模式下更改,但是还得再次进入有点麻烦。命令是:confreg 0×2102 至此一切就恢复了正常。

PS:另外一种方法 XMODEM升级方法,太慢也很简单,下一个POST再说。最主要的是此次升级没什么,只是我费时的没成功最后查明是自己输错了一个字母所致,郁闷了一下!

1 comment March 28th, 2009

REC:CCNA认证指南(640-802)

20420959_b

作  者: 崔北亮 编著
出 版 社: 电子工业出版社
出版时间: 2009-1-1 字  数: 1045000 版  次: 1 页  数: 638 印刷时间: 2009/01/01 开  本: 16开 印  次: 1 纸  张: 胶版纸 I S B N : 9787121076572 包  装: 平装

本书是专为备考思科CCNA认证的人员量身定做的冲刺指南。全书紧贴640-802考试大纲,全面而系统地分析和介绍了CCNA考试中涵盖的各个知识点。对每个知识点在考试中的重要程度均有标注,每章最后还有近期CCNA真题的解析。全书共分22章,内容涉及三大方面,局域网部分:网络互联基础知识和网络参考模型,思科路由器和交换机介绍,静态和动态路由协议(包括RIP、EIGRP、OSPF)原理及配置,VLAN和VLAN间路由的实现,CDP、 VTP和STP协议的使用,无线网络互联和IPv6等;广域网部分:广域网接入技术,PPP和帧中继的使用,DHCP和NAT等;网络安全部分:网络安全介绍,访问控制列表的使用和安全远程办公的实现等。
本书特别适用于那些渴望取得CCNA认证的读者,取得认证的同时,真正具备CCNA的能力;同时也可以作为高校计算机网络技术的教材,弥补实验设备的不足,改善现有学历教育重理论轻实践的现状;更是那些想掌握网络技术,提高动手能力,并能应用于实践的网络爱好者,难得一见的实验指导用书。

Add comment February 22nd, 2009

CCIE Distribution Table

20090115160805334

Total of Worldwide CCIEs:         18674   (last updated 01/06/2009)
Total of Routing and Switching CCIEs:     16399
Total of Security CCIEs:     2007
Total of Service Provider CCIEs:     1120
Total of Storage Networking CCIEs:     140
Total of Voice CCIEs:           872

Multiple Certifications:
Many CCIEs have gone on to pass the certification exams in additional tracks, becoming a “multiple CCIE.” Below are selected statistics on CCIEs who are certified in more than one track.
Total with multiple certifications worldwide:1885
Total of Routing and Switching and Security CCIEs:706
Total of Routing and Switching and Service Provider CCIEs:472
Total of Routing and Switching and Storage Networking CCIEs:35
Total of Routing and Switching and Voice CCIEs:250
Total with 3 or more certifications302

Add comment January 18th, 2009

思科推出全新边界路由器

美国思科公司周二推出了一款新的边界路由器,每秒可以传输6.4TB数据,相当于200部电影,或者25万首歌曲.
这款新路由器的型号是ASR9000,起价为八万美元.思科表示,其速度是竞争对手Juniper旗下产品的六倍.思科此前曾经估计,到2012年之前,互联网流量仍将以每两年翻番的速度暴涨.

思科这一产品属于边界路由器,放置在运营商网络的外围,往往是无线网络和有线网络的结合部.许多电信公司利用边界路由器提供宽带电视(IPTV)等服务.

思科公司人士介绍,企业可以利用这一路由器高效管理网络.比如,如果提供视频点播服务,公司可以将内容放置在网络边界和不是核心,这样可以提供更快的下载速度,减少对整个网络的压力.

思科表示,尽管经济疲软,但是企业对于类似边界路由器的需求仍然强劲.

Add comment November 12th, 2008

REC:CCNA 学习指南(中文第六版)(640-802)

作  者: (美)拉默尔(Lammle,T.L.) 著,程代伟 等译
出 版 社: 电子工业出版社

* 出版时间: 2008-2-1
* 字  数: 1224000
* 版  次: 1
* 页  数: 742
* 印刷时间: 2008/02/01
* 开  本: 16开
* 印  次: 1
* 纸  张: 胶版纸
* I S B N : 9787121056758
* 包  装: 平装

所属分类: 图书 >> 计算机/网络 >> 计算机考试 认证 >> CISCO认证(思科认证)
定价:¥80.00  当当价:¥60.00 折扣:75折 节省:¥20.00

内容简介

本书CCNA应试必 要的学习指南,由Cisco技术知名权威编写。CCNA考试的内容已几度变化,本书是针对最新的考试目标而编写的,旨在帮助应试者全面复习、掌握新的考试 内容。本书共11章,内容涉及网际互联、互联网协议、IP子网划分和变长子网划分掩码(VLSM)、Cisco IOS简介、IP路由、增强的IGRP(EIGRP)和开放最短路径优先(OSPF)、第2层交换、虚拟LAN、安全、管理Cisco互联网络、网络地址 转换、无线网络技术、IPv6和广域网。除了讲解应掌握的内容外,几乎每章都有复习题、书写练习和实际操作实验,并附有答案。书前有一套评估考题和答案, 选配的光盘上有新CCNA考试(640-802)的大量准备工具和资料。为了有助于应试者准备Cisco模拟考试,光盘上包含各章的复习题和模拟考试题。 应试者能顺利地通过这一考试。
读者对象:CCNA#640-802考试的应试者、Cisco网络工程技术人员和销售傊、大专院校计算机通信专业师生。
邮购了,等着呢,一直看PDF了,觉得不系统,还是买书的好!
【Simple Live推荐书目:REC标识】推荐学习CCNA的初级朋友购买使用,看PDF不是办法,人总是有惰性的,看电脑的时候容易玩其他的去了,抱着书看,就好多了。另外初学网络的朋友这本书也是有很大帮助的。淘宝买的话会便宜很多,我的这家包邮,需要的留言给你地址!

4 comments October 20th, 2008

思科重启CCDE

Cisco is now registering beta candidates for the Cisco Certified Design Expert (CCDE) Practical Exam. Cisco has finished development of the second exam needed to attain the CCDE certification, the practical exam, and is now soliciting candidates for the beta delivery.

The CCDE practical exam is a computer-based, performance assessment that evaluates a candidate’s ability to gather network requirements, perform design analyses, and implement complex networks.

Cisco will be offering this beta delivery of the exam on October 1, 2008, in Chicago, Illinois, at a Pearson professional testing center. Only candidates that have a passing score on the CCDE qualification exam can register and participate in this exam. Exam beta pricing is $980US and registration inquiries should be sent to ITPC@pearson.com, notifying us of your interest. You will be notified of your eligibility, instructions for registration, payment and logistics in a follow-up email.

Location: Chicago, Illinois USA
Date: October 1, 2008
Cost: $ 980 US

Prerequisite: Passing score of exam 352-001 on the CCDE qualification exam (ADVDESIGN)

For more information on the CCDE program and the CCDE practical exam visit:www.cisco.com/go/ccde or the Cisco Learning Network at www.cisco.com/go/learnnetspace.

 

Subscribe to receive emails and newsletters from Cisco.
Or modify your profile, subscriptions, and preferences if you’re already a Cisco customer.

To no longer receive these messages from Cisco. Please allow 7-10 business days for changes to take effect.

Read more about our privacy statement.

Please do not reply to this email for support. To view answers to commonly asked questions regarding the Cisco Certification Program or to request assistance related to this email, visit the Certification Online Support tool at www.cisco.com/go/certsupport.

Copyright (C) 2008, Cisco Systems, Inc. All rights reserved. Cisco, the Cisco logo, and Cisco Systems are registered trademarks of Cisco Systems, Inc. and/or its affiliates in the United States and certain other countries.
Cisco Systems, Inc. 170 West Tasman Drive, San Jose, California 95134 ATTN: Corporate Marketing (SJC08/3/4)

Add comment September 4th, 2008

Cisco CCIE加10M英文面试

On August 27, Cisco will introduce a pilot for the CCIE Routing and Switching lab exam in Beijing, China. The pilot will add a 10-minute interview that will assess the candidate’s ability to apply expert-level networking skills and knowledge to networking problems that are encountered on the job. After the lab orientation, a panel of three experts will conduct a verbal interview with each candidate, asking a series of expert-level networking questions (questions and answers will be in English). The ability to correctly answer these questions will affect the exam score. After completing the interview, the candidate will have the entire 8 hours to complete the lab portion of the exam. These scores will then be calculated and then combined for a total score which will decide a pass or a fail.
Our goal with this email is to let you know that your day will extend beyond the normal testing day by approximately one hour. The additional hour will be at the end of the day. We hope you find this interview process enlightening and helpful as we continue to strive for the standard the world has come to expect from CCIE.

看来英语必须下功夫了,否则什么也没有呀。

2 comments August 28th, 2008

Rec:中小企业网络管理员实战指南

书名:中小企业网络管理员实战指南
出版社:     科学出版社
作者:     李利军,韩小琴,金素梅
出版日期:     2008年7月
版次:     第1版     ISBN:     978-7-03-022280-0
定价:     78.00元

内容介绍

本书由三位高级网络工程师根据中小企业网络应用现状及网管员需求、结合多年网络工程建设与管理经验倾力编写,旨在全面系统地提高中小企业网络管理员的实战 技能。本书介绍了中小企业网络规划与设计、布线实施与测试、设备选购与配置、服务搭建与管理、安全设计与配置,以及无线网络的配置与管理等,涉及从网络规 划、搭建到管理的全部技术细节,是一本来自实践的极具实用价值的网络技术宝典。全书突出实战,关注应用,解决了网络管理实践中的主要问题,可以帮助读者从 一名普通的网络爱好者迅速成长为优秀的网络管理员。作为一个网络管理员,你只需要这样一本书,就可以轻松完成网络管理的许多重要任务。
本书可作为现役中小企业网络管理员、网络技术爱好者、网络维护与服务人员、在校大中专学生提高网络实战能力的必备学习用书,也可用作培训机构的教学参考书。
给出当当网连接,因为我就是在这买的.点此进入

做为起步来说,算得上是一本很全面和实用的书籍了.注重动手能力的培养,值得看看!

不定期推出Recommended Books栏目,为大家介绍好的书籍,是我的荣幸.

Add comment August 5th, 2008

CCDE将正式启用

Now Available! Cisco Certified Design Expert (CCDE) Practical Exam Beta

Cisco is now registering beta candidates for the Cisco Certified Design Expert (CCDE) Practical Exam. Cisco has finished development of the second exam needed to attain the CCDE certification, the practical exam, and is now soliciting candidates for the beta delivery.

The CCDE practical exam is a computer-based, performance assessment that evaluates a candidate’s ability to gather network requirements, perform design analyses, and implement complex networks.

Cisco will be offering this beta delivery of the exam on October 1, 2008, in Chicago, Illinois, at a Pearson professional testing center. Only candidates that have a passing score on the CCDE qualification exam can register and participate in this exam. Exam beta pricing is $980US and registration inquiries should be sent to ITPC@pearson.com, notifying us of your interest. You will be notified of your eligibility, instructions for registration, payment and logistics in a follow-up email.


Location: Chicago, Illinois USA
Date: October 1, 2008
Cost: $ 980 US

Prerequisite: Passing score of exam 352-001 on the CCDE qualification exam (ADVDESIGN)

For more information on the CCDE program and the CCDE practical exam visit: www.cisco.com/go/ccde or the Cisco Learning Network at www.cisco.com/go/learnnetspace.

Subscribe to Cisco
Unsubscribe from Cisco
Privacy Statement

Subscribe to receive emails and newsletters from Cisco.
Or modify your profile, subscriptions, and preferences if you’re already a Cisco customer.

To no longer receive these messages from Cisco. Please allow 7-10 business days for changes to take effect.

Read more about our privacy statement.

Please do not reply to this email for support. To view answers to commonly asked questions regarding the Cisco Certification Program or to request assistance related to this email, visit the Certification Online Support tool at www.cisco.com/go/certsupport.

Copyright (C) 2008, Cisco Systems, Inc. All rights reserved. Cisco, the Cisco logo, and Cisco Systems are registered trademarks of Cisco Systems, Inc. and/or its affiliates in the United States and certain other countries.
Cisco Systems, Inc. 170 West Tasman Drive, San Jose, California 95134 ATTN: Corporate Marketing (SJC08/3/4)

Cisco怪吓人的认证价格,快让我打退堂鼓了,考几次才会过的话,一路考下来,几W也许够不够呀!

2 comments July 28th, 2008


Sponsors

Categories

Sina Bib

Recent Posts

Recent Comments

Link

Sponsors