微软近期Open的职位:

Global Foundation Services is the team behind the cloud. GFS is responsible for delivering over 200 Microsoft web portals, Live and Online Services around the world including infrastructure, security and compliance, operations, globalization, and manageability. Our focus is on smart growth, high efficiency, and delivering a trusted experience to customers and partners worldwide.
As a senior network engineer, this position will work with the Office365 product teams to design networks that support both current and future product initiatives. This position will work with the architecture team to develop roadmaps for new technology introduction, as well as be responsible for the configuration and capacity management and planning of the existing network. This role will also develop deployment guides and documentation for the implementation and operations teams; creation of design specifications and proof of concepts for tooling and monitoring improvements.
Roles and Responsibilities
Develop a technical roadmap for major online services network infrastructure
Provide technical expertise to perform root cause analysis of service interrupting incidents; develop and implement strategies to prevent recurrence
Create or propose technical solutions when faced with a new complex systems design or process issue, where little or no precedent exists
Take responsibility for prioritizing critical, competing tasks that may lack clear end results.
Effectively apply influence strategies and negotiation skills to impact decisions and make trade-offs based on TCO and risk
Drive operational improvements upstream into product development efforts
Drive creation and execution of documentation, process and procedure improvements to streamline and optimize work performed
Experience Required
Excellent oral and written communication skills with the strong ability to work cross-team
Solid working knowledge and experience with PowerShell, C#, VBScript, or Jscript or similar interpreted languages; ability to rapidly adapt defined specifications into scripts/programs to eliminate need for repetitive manual work.
Multi-vendor, multi-platform experience
Expert-level knowledge, experience, and ability troubleshooting and producing designs that leverage protocols such as MSTP, 802.1q, OSPF, BGP, etc.
Working knowledge, experience, and ability with TCP internals and other L4-7 protocols and technologies such as: SSL, HTTP, DNS, NTP, Local Load Balancing, Global Load Balancing, Netmon/Wireshark, etc.
Experience with monitoring and management frameworks, including Nagios, Openview, Truecontrol, and SMARTS InCharge
Experience in developing security hardening procedures, security best practices, and policy implementation
BS degree in Computer Science, Computer Engineering, Electrical Engineering, Management Information Systems, or other technical field.
CCIE / JNCI* certification a plus

Microsoft is an equal opportunity employer and supports workforce diversity.
GCR:CN:DEV:EN

如果你想试试这个职位,请跟我联系,我是微软的员工,可以做内部推荐。发你的中英文简历到我的邮箱:Nicholas.lu.mail(at)gmail.com

微软职位内部推荐-Senior Network Engineer的更多相关文章

  1. 微软职位内部推荐-Senior SW Engineer for Application Ecosystem

    微软近期Open的职位: Job posting title: Senior Development Engineer Location: China, Beijing Division: Opera ...

  2. 微软职位内部推荐-Senior Development Engineer

    微软近期Open的职位: Job Title: Senior Software Development Engineering Work Location: Suzhou, China Enterpr ...

  3. 微软职位内部推荐-Senior Software Engineer -Web

    微软近期Open的职位: Location: Beijing, China The Office App Services team is working on the powerful Office ...

  4. 微软职位内部推荐-Senior BSP Engineer

    微软近期Open的职位: The position of Sr. BSP engineer requires experience and good knowledge in mobile hardw ...

  5. 微软职位内部推荐-Senior Software Engineer

    微软近期Open的职位: Are you looking for a big challenge? Do you know why Big Data is the next frontier for ...

  6. 微软职位内部推荐-Senior Software Engineer - Back End

    微软近期Open的职位: SharePoint is a multi-billion dollar enterprise business that has grown from an on-prem ...

  7. 微软职位内部推荐-Senior Software Engineer - Front End

    微软近期Open的职位: SharePoint is a multi-billion dollar enterprise business that has grown from an on-prem ...

  8. 微软职位内部推荐-Senior Software Engineer II-Sharepoint

    微软近期Open的职位: SharePoint is a multi-billion dollar enterprise business that has grown from an on-prem ...

  9. 微软职位内部推荐-Senior Software Engineer II-Search

    微软近期Open的职位: Do you want to work on a fast-cycle, high visibility, hardcore search team with ambitio ...

随机推荐

  1. CF Watto and Mechanism (字典树+深搜)

    Watto and Mechanism time limit per test 3 seconds memory limit per test 256 megabytes input standard ...

  2. Java代码操作Redis的sentinel和Redis的集群Cluster操作

    总共四台机器,crxy99,crxy98分别是主节点和从节点.   crxy97和crxy96是两个监控此主从架构的sentinel节点. 看代码: import org.junit.Test; im ...

  3. asp.net下的b/s架构

    最近一直在做asp.net下的b/s架构的程序.整理一下可以采用的架构. 简单三层架构 基于接口和工厂模式的三层 前台用jquery调用http请求(ashx),ashx再调用逻辑接口 虽然很早就知道 ...

  4. HTML5与CSS3基础教程第八版学习笔记11~15章

    第十一章,用CSS进行布局 开始布局注意事项 1.内容与显示分离 2.布局方法:固定宽度和响应式布局 固定宽度,整个页面和每一栏都有基于像素的宽度 响应式布局也称为流式页面,使用百分数定义宽度 3.浏 ...

  5. 面试之SQL(2)--left join, inner join 和 right join的区别

    表A记录如下: aID        aName 1           a1 2           a2 3           a3 4           a4 5           a5 ...

  6. Swift内存管理-示例讲解

    具体而言,Swift中的ARC内存管理是对引用类型的管理,即对类所创建的对象采用ARC管理.而对于值类型,如整型.浮点型.布尔型.字符串.元组.集合.枚举和结构体等,是由处理器自动管理的,程序员不需要 ...

  7. 选用 get 与 post 的一些建议

    1.http的请求方法:get  post 2. get:会把请求的内容  放到链接地址里面(数据请求的时候  默认的是get请求) 例:www.baidu.com/user/login?userna ...

  8. javascript笔记---貌似大叔

    1.原型式继承和类式继承的区别 在基于类的面向对象方式中,对象(object)依靠类(class)来产生.而在基于原型的面向对象方式中,对象(object)则是依靠 构造器(constructor)利 ...

  9. 【leetcode】8. String to Integer (atoi)

    题目描述: Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input ...

  10. ArrayList和Array之间的转换

    ArrayList转Array (1):使用ArrayList的toArray方法.     1)当ArrayList中存放的是引用类型时(例如String),成功     /**      * 使用 ...