J Series Services Routers Advanced Switching Configuration

Total Page:16

File Type:pdf, Size:1020Kb

J Series Services Routers Advanced Switching Configuration APPLICATION NOTE J SERIES SERVICES ROUTERS ADVANCED SWITCHING CONFIGURATION Configuring JUNOS Software Advanced Switching on J Series Services Routers Copyright © 2009, Juniper Networks, Inc. APPLICATION NOTE - J Series Service Routers Advanced Switching Configuration Table of Contents Introduction ........................................................................................ 1 Scope .............................................................................................. 1 Hardware Requirements . 1 Software Requirements . 1 JUNOS Software Release 9.2 J Series Switching Features . 1 JUNOS Software Release 9.2 Switching Configuration Examples ........................................... 2 Enabling Enhanced Switching . 2 Configuring Layer 2 Switching . 2 Configuring Bridging Domains . 3 Extending Bridging Domains and Configuring Tagged Interfaces . 3 Configuring Integrated Routing and Bridging . 5 Configuring Link Aggregation . 6 Simple LAN Switching Scenario . 7 Adding VLANS . 8 Routing Traffic Between VLANs. 9 Adding a Tagged Interface . 11 Increasing Capacity with Link Aggregation . 13 Monitoring ........................................................................................ 16 Summary ......................................................................................... 16 About Juniper Networks ............................................................................. 16 Table of Figures Figure 1: VLAN Tagging .............................................................................. 4 Figure 2: Trunk and Access Ports ...................................................................... 4 Figure 3: Integrated Routing and Bridging .............................................................. 5 Figure 4: Layer 2 Switching Topology .................................................................. 7 Figure 5: Adding Sales and Operations VLANs ........................................................... 8 Figure 6: Adding Routing Between VLANs .............................................................. 9 Figure 7: Adding a Tagged Interface .................................................................. 11 Figure 8: Increasing Capacity with Link Aggregation .................................................... 13 ii Copyright © 2009, Juniper Networks, Inc. APPLICATION NOTE - J Series Service Routers Advanced Switching Configuration Introduction Juniper Networks® J Series Services Routers provide high-performance networking for branch-office and regional sites, integrating routing, WAN connectivity, security, LAN switching, VoIP/telephony and WAN optimization, which effectively extends enterprise applications and services to remote locations. A new family of high-density Ethernet Physical Interface Modules (PIMs) was introduced with Juniper Networks JUNOS® Software release 8.5, which allowed small branch offices to aggregate Ethernet connections directly onto J Series Services Routers, eliminating the need for Layer 2 switches. In medium-sized branch offices, J Series routers could also now be used to aggregate traffic from multiple Layer 2 access switches. However, to more effectively collapse part of the switching infrastructure onto J Series routers, JUNOS Software has to be able to provide additional functionality that is commonly offered at the switching layer. JUNOS Software release 9.2 for J Series routers introduces much of this functionality by adding additional Layer 2 switching features, integrated routing and bridging, and support of several Layer 2 protocols. Scope This application note provides an overview of the new JUNOS Software Layer 2 features for J Series routers. It describes several common deployment scenarios, with detailed configurations for each scenario. When configuring JUNOS Software advanced switching on J Series, please note the hardware and software requirements outlined below. Hardware Requirements • J Series Services Routers (Juniper Networks J2320, J2350, J4350, or J6350 Services Routers) - 8-port 10/100/1000BASE-T - 16-port 10/100/1000BASE-T - 6-port SFP (supporting T, LX, SX and LH SFPs) Software Requirements • JUNOS Software with enhanced services release 9.2 or later for the J Series platform JUNOS Software Release 9.2 J Series Switching Features J Series advanced switching is based on current Juniper Networks EX Series Ethernet Switches functionality, which includes, but is not limited to: • Layer 2 switching of traffic, including support for both trunk and access ports • Integrated routing and bridging • Loop-avoidance protocols - Spanning Tree Protocol - Rapid Spanning Tree Protocol (RSTP) - Multiple Spanning Tree Protocol (MSTP) - Redundant trunk groups • Link aggregation IEEE 802.3ad - both static and using Link Aggregation Control Protocol (LACP) • Generic Virtual LAN (VLAN) Registration Protocol (GVRP) • Port security - Per port MAC address limits - IEEE 802.1x and MAC authentication Copyright © 2009, Juniper Networks, Inc. 1 APPLICATION NOTE - J Series Service Routers Advanced Switching Configuration Although advanced switching for the J Series is sourced from the EX Series product family, J Series features are a subset of those offered in the EX Series. In particular, the following features are not included in JUNOS release 9.2 for the J Series: • Layer 2 access control lists (ACLs) • Layer 2 Quality of Service (QOS) for ports in switching mode • Internet Group Management Protocol (IGMP) snooping • Dynamic Host Configuration Protocol (DHCP) snooping • Address Resolution Protocol (ARP) inspection • MAC spoofing protection • SNMP MIB support (for the new Layer 2 features) • Virtual chassis Future feature additions to EX Series platforms will not automatically be ported to JUNOS for J Series routers. Layer 2 features from earlier JUNOS releases continue to be supported for compatibility purposes. In the current implementation, only one advanced switching uPIM is supported per J Series chassis (additional uPIMs can operate in routed mode or in legacy Layer 2 mode). Although future versions of JUNOS may remove this restriction, VLANs will not be able to cross uPIM boundaries as J Series routers do not have a fabric backplane, which would allow the switching of traffic between different uPIMs without sending frames to the CPU. Additionally, the designated advanced switching uPIM is able to support a combination of switched and routed ports as necessary. JUNOS Software Release 9.2 Switching Configuration Examples This section discusses several deployment scenarios and their associated configurations. Enabling Enhanced Switching The first configuration step is to enable enhanced switching on the PIM, which is done at the [chassis fpc pic ethernet] level of the configuration hierarchy. For example, the following configuration enables a PIM in slot 1. chassis { fpc 1 { pic 0 { ethernet { pic-mode enhanced-switching; } } } } Configuring Layer 2 Switching Physical interfaces (IFDs in JUNOS terminology) can operate in two modes. When an interface is given a Layer 3 address (such as an IPv4, IPv6, or ISO address), the interface will route traffic based on the destination address of each packet. If an interface is not given a Layer 3 address but is configured as part of the Ethernet switching protocol family, the interface will forward traffic based on the link layer destination address. The following configuration defines an interface as a switching port (note that Layer 2 configuration is limited to unit 0 of an interface). interface { ge-<slot number>/0/<port number> { unit 0 { family ethernet-switching; } } } 2 Copyright © 2009, Juniper Networks, Inc. APPLICATION NOTE - J Series Service Routers Advanced Switching Configuration Configuring Bridging Domains As in most modern switches, bridging domains can be segmented using VLANs, an approach that allows device segmentation by assigning ports to administrative domains. Traffic can be forwarded between member interfaces of the same VLAN, but not between interfaces that belong to different VLANs, effectively allowing the same physical device to be shared between different non-connected networks (a later section of this document describes how to forward traffic between different VLANs). By default, all switching-enabled ports form part of the same bridging domain. If an interface is enabled for Layer 2 switching but not associated with any VLAN, it will become part of the default VLAN. To configure a new domain, a VLAN has to be defined under the [vlans] hierarchy and given a unique identifier (VLAN ID). vlans { <vlan name> { vlan-id <id>; } } Additionally, you have to specify which interfaces will be part of the newly created domain. There are two ways to allocate interfaces. (These ways are identical from a functional point of view; it is up to you to choose the method you prefer). The first way, under the [interface <name> unit 0 family ethernet-switching] hierarchy, is to declare the VLAN as part of an interface configuration. interface { ge-<slot number>/0/<port number> { unit 0 { family ethernet-switching { vlan members <vlan name or id> } } } } The second way, under the [vlan <name>interface] hierarchy, is to define VLAN member interfaces. vlans { <name> { interfaces { <interface name>; <interface name>; … } } } Both methods can be combined as long as no inconsistencies are introduced (for example, the same interface cannot be defined as a member of two or more VLANs). Extending Bridging Domains and Configuring Tagged Interfaces Modern switching networks can be large enough to require the use of
Recommended publications
  • Juniper Networks Investor Relations May 2021
    Juniper Networks Investor Relations May 2021 1 © 2021 Juniper Networks Juniper Public Forward-Looking Statements This presentation contains forward-looking statements within the meaning of Section 27A of the Securities Act of 1933, as amended, and Section 21E of the Securities Exchange Act of 1934, as amended, which statements involve substantial risks and uncertainties. Except for historical information contained herein, all statements could be deemed forward-looking statement, including, without limitation, Juniper Networks’ views concerning our business outlook; economic and market outlook; our future financial and operating results (including our financial model); the expected impact of network transitions and timing of deployments with large customers; our capital return program; our expectations with respect to market trends; our future strategy; the strength of certain use-cases and customer segments; our ability to expand business opportunities (including in software, security, hyperscale-switching, 5G buildouts and with enterprise customers); our expectations with respect to revenue growth, gross margin or operating costs or our ability to improve profitability and make necessary investments; the introduction of future products; the strength of our solution portfolio; the timing of recovery from COVID-19 on customer demand; and overall future prospects. Actual results or events could differ materially from those anticipated in those forward-looking statements as a result of several factors, including: general economic and political
    [Show full text]
  • Juniper Networks J-Series Services Routers: J2320, J2350, J4350, and J6350
    Datasheet Juniper Networks J-series Services Routers: J2320, J2350, J4350, and J6350 Product Description Enterprises are faced with a number of challenges and opportunities by converging voice, video and data to one network. This consolidation of network elements reduces cost by easing deployment of SIP enabled voice over IP (VoIP), real-time high-definition Telepresence and standardizing on a consistent infrastructure network operating system like JUNOS software. These new technologies improve; customer relations, interactions with suppliers, and employee productivity. This mission-critical multi-media network must be always on and always available. To accomplish this, fully integrated stateful security is a key requirement, not merely forwarding packets without regard to the intended application or individual user session. JUNOS software with enhanced services provides the high-performance networking infrastructure that helps enterprises Juniper Networks J-series services routers extend implement key initiatives that: • Secure critical information and protect the network from vulnerabilities and attacks. Enterprise applications and deliver reliable Enterprises need to protect confidential information from external and internal connectivity to remote offices with a powerful attacks as they connect with their customers and suppliers. The inseparable routing and firewall offered by JUNOS software with enhanced services secures every location blend of high-performance network protection in the network and allows departmental segmentation out to remote locations of the network. Implementing IPSec VPNs with firewalls at remote sites allows for flexible and advanced services. J-series services routers network connectivity with security for split tunneling configurations. leverage the modular JUNOS® software operating • Minimize the cost of installing and operating the network.
    [Show full text]
  • The World Needs Network Innovation. Juniper Is Here to Help
    The world needs network innovation. Juniper is here to help. In a world where the pace of change is accelerating at an unprecedented rate the network has taken on a new level of importance as the vehicle for pulling together our best people, best thinking, and best hope for addressing the critical challenges we face as a global community. The JUNIPER BY THE macro-trends of cloud computing and the mobile Internet NUMBERS hold the potential to expand the reach and power of the network—while creating an explosion of new subscribers, • The world’s top five social media properties new traffic, and new content. In the face of such intense are supported by Juniper demand, this potential cannot be realized with legacy Networks. thinking. Juniper Networks stands as a response and a • The top 10 telecom companies challenge to the traditional approach to the network. in the world run on Juniper Networks. • Juniper Networks is deployed in more than 1,400 national Our Vision government organizations We believe the network is the single greatest vehicle for knowledge, collaboration, and around the world. human advancement that the world has ever known. Now more than ever, the world relies on high-performance networks. And now more than ever, the world needs network • Juniper has over 8,700 innovation to unleash our full potential. employees in 46 worldwide offices, serving over 100 The network plays a central role in addressing the critical challenges we face as a global countries. community. Consider the healthcare industry, where the network is the foundation for new models of mobile affordable care for underserved communities.
    [Show full text]
  • Juniper Networks Junos Space Network Management Platform, with Or Without Network Director and with Or Without Security Director in JA2500
    Juniper Networks Junos Space Network Management Platform, with or without Network Director and with or without Security Director in JA2500 Firmware: Junos Space 19.1R1_FIPS, Network-Director.3.6R3.15 and Security-Director-19.1R1.23 Non-Proprietary FIPS 140-2 Cryptographic Module Security Policy Document Version: 1.0 Date: December 14, 2020 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California 94089 USA 408.745.2000 1.888 JUNIPER www.juniper.net Copyright Juniper, 2020 Document Version 1.0 Page 1 of 40 Juniper Networks Public Material – May be reproduced only in its original entirety (without revision). Table of Contents 1 Introduction .................................................................................................................... 4 1.1 Cryptographic Boundary ..............................................................................................................6 1.2 Modes of Operation .....................................................................................................................8 1.2.1 FIPS Approved Mode ..........................................................................................................8 1.2.2 Non-Approved Mode ..........................................................................................................8 1.3 Zeroization ....................................................................................................................................9 2 Cryptographic Functionality ..........................................................................................
    [Show full text]
  • Ericsson.Com/ Networks
    ericsson.com/ networks End-to-end network capabilities simplify the journey to 5G for Swisscom 2 Ericsson | End-to-end network capabilities simplify the journey to 5G for Swisscom Wanting to ensure its consumers would reap the benefits of 5G at an early stage, Swiss operator Swisscom was looking for a vendor that could act as a one-stop shop in managing and maintaining its entire IP transport network. Our product portfolio and subsequent partnership with Juniper Networks made us the perfect choice. In November 2017, Swisscom was discussing how In the first end-to-end 5G transport network deal in the upcoming introduction of 5G would greatly the industry, Ericsson is delivering Swisscom’s new increase complexity in its IP transport network. end-to-end 5G IP transport network with Router Swisscom wanted to be early in the market with 5G 6672 as the site router, Router 6675 as the C-RAN technologies, and it was looking for a single vendor router, Router 6274 as the edge router and Juniper able to take full end-to-end responsibility for its MX 10008 as the core router. The architecture meets complete IP transport network from the radio site up scalability, availability, performance, latency and to the data center. synchronization demands, and it is functionally aligned end-to-end. All of the routers are managed Key characteristics of the network were the support by one single operations support system (OSS), for slicing, low latency, time/phase synchronization namely Ericsson Network Manager. and high performance, and the complete transport network had to be managed by one management Heinz Herren, CIO and CTO at Swisscom says: “We system.
    [Show full text]
  • May 28, 2021 Submitted Via ECFS
    May 28, 2021 Submitted via ECFS Marlene H. Dortch Federal Communications Commission Page | 1 45 L Street NE Washington, D.C., 20554 Re: Reply Comments of the Open RAN Policy Coalition on Promoting the Deployment of 5G Open Radio Access Networks, GN Docket No. 21-63. Dear Ms. Dortch, The Open RAN Policy Coalition (“ORPC” or “Coalition”)1 appreciates the opportunity to provide additional input to the Federal Communications Commission (“Commission”) on its Notice of Inquiry (“NOI”) Promoting the Deployment of 5G Open Radio Access Networks. Initial comments in this landmark proceeding provide a robust foundational record regarding the growing Open RAN market, show widespread consensus about the potential public benefits Open RAN can produce, and coalescence around several key steps the Commission and other policymakers can take to support these outcomes. Commenters also express consensus that policies supporting industry innovation and carrier choice – not government mandates or legal preferences – will enable the market to realize the benefits of Open RAN.2 Commenters describe active and diverse engagement in industry organizations that are driving standardization, testing, and other real-world advancement toward open and interoperable interfaces in the RAN.3 1 See https://www.openranpolicy.org/. As of this filing, the Coalition includes 60 members, including: Airspan, Altiostar, American Tower, Analog Devices, Arm, AT&T, AWS, Benetel, Bharti Airtel, Broadcom, Ciena, Cisco, Cohere Technologies, CommScope, Crown Castle, DeepSig, Dell Technologies, Deutsche Telekom, DISH Network, Facebook, Fujitsu, GigaTera Communications, Google, Hewlett Packard Enterprise, IBM, Inseego, Intel, JMA Wireless, Juniper Networks, Ligado Networks, Marvell, Mavenir, Microsoft, NEC Corporation, NewEdge Signal Solutions, Nokia, NTT, Nvidia, Oracle, Palo Alto Networks, Pivotal Commware, Qualcomm, Quanta Cloud Technology, Radisys, Rakuten Mobile, Reliance Jio, Rift, Robin, Samsung Electronics America, STL Tech, Telefónica, Texas Instruments, U.S.
    [Show full text]
  • Juniper Networks Netscreen-5GT Series Datasheet
    Page Datasheet Juniper Networks NetScreen-5GT Series The Juniper Networks NetScreen-5GT Series is a family of three feature-rich, enterprise-class network security solutions. They are ideally suited for securing remote offices, retail outlets and broadband telecommuter environments, where IT staff support is minimal and ease of configuration and management is crucial. The NetScreen-5GT Series integrates key security applications, routing protocols and resiliency features to provide IT managers a cost effective appliance that is easy to deploy and manage. All NetScreen-5GT Series offerings described below come standard with the following features: • Security: Use the Stateful and Deep Inspection firewall, DoS protection and embedded antivirus to stop network and application level attacks and defend against the propagation of worms and viruses. Prevent users from transmitting private or corporate data, via Phishing and Spyware attacks, with integrated or re-direct web filtering options. • Network integration: Support for key routing protocols, such as BGP, OSPF, RIPv1/2 and ECMP along with NAT, Route and Transparent Layer 2 operation helps facilitate network integration. • Resiliency: Dial-backup or dual Ethernet ports, along with route-based VPNs provide redundancy when network connectivity is business critical. Dual WAN ports can also be used to share traffic load. • Port Flexibility: Almost every network deployment scenario can be accommodated without a hardware upgrade through five configurable Ethernet interfaces. Administrators can enable switching, dual WAN ports, a dedicated DMZ or any combination thereof through a set of six predefined interface layouts called Port Modes. 5GT 10 user 5GT ADSL 5GT Wireless Juniper Networks NetScreen-5GT Ethernet or plus 10 user or plus 10 user or plus Juniper Networks NetScreen-5GT Ethernet solution is ideal for ScreenOS version support ScreenOS 5.3 environments that need hardwired connectivity backed by Firewall performance(1) 75 Mbps robust network, application and payload level security.
    [Show full text]
  • Juniper Networks J4350/J6350 Services Routers Data Sheet
    Datasheet Juniper Networks J4350/J6350 Services Routers Product Description Juniper J4350 and J6350 routers are ideal for branch offices connected directly to a traditional private network such as leased lines, Frame Relay, ATM or MPLS, or for branch offices where the public Internet is being used as an alternative to a traditional private WAN. Because the J4350 and J6350 offer superior performance while running services Juniper Networks J4350 and J6350 routers such as stateful firewall, Network Address Translation (NAT), and IPSec, they are also provide up to Gigabit Ethernet performance for ideally suited for Metro Ethernet deployments. enterprise remote, branch, and regional offices. The Juniper J4350 and J6350 are modular routers that support Juniper Physical Interface Modules (PIMs) which provide a wide variety of common WAN and LAN interfaces, They run modular JUNOS software which offers including Gigabit Ethernet. Both models offer hardware encryption acceleration (optional on the J4350), and are available in DC and Network Equipment Building System (NEBS) advanced services (MPLS, IPv6, quality of service versions. Additionally, the J6350 offers redundant AC or DC power supplies. The following (QoS), multicast) and security (stateful firewall table outlines key hardware features: and IPSec VPN) at no additional charge. The Product Description J4350 • Support for T1, E1, Fast Ethernet, Serial, ISDN BRI, ADSL/2/2+, G.SHDSL, J4350 and J6350 Services Routers support DS3, E3, Gigabit Ethernet Interfaces • Support for integrated IP Telephony using the Avaya IG550 Integrated Gateway integrated IP Telephony using the Avaya IG500 • 4 fixed GE LAN ports, 4 PIM slots, and 2 EPIM/PIM slots Integrated Gateway.
    [Show full text]
  • Vmx Virtual Router on Microsoft Azure
    vMX Virtual Router on Microsoft Azure Seamlessly extend your enterprise network into the cloud with Juniper Networks® vMX Virtual Router, a full- featured cloud-grade virtual router. The vMX enables secure migration of IT infrastructure and apps to the cloud with routing protocols, VPN support, and IPsec. Additionally, vMX provides sophisticated routing services that support provider edge, broadband network gateway, and route reflector solutions for service providers leveraging cloud infrastructure. WHAT WE OFFER Seamless integration Secure migration Easy deployment Efficient scalability Enjoy seamless, easy, and Supports sophisticated routing Is easily deployed in the public Allows users to efficiently immediate integration with the services with IPsec, including cloud using automation for scale, on demand, routing current Juniper solution. vPE, and as a Cloud Gateway, rapid deployment, eliminating and forwarding capacity to is suited for rapid service the time-consuming facility accommodate deployment in all Runs the Junos operating scale out and agile service and platform qualifications sizes. Is scalable up to 2.5 Gbps system with a vTrio forwarding introduction and modification associated with physical IPsec performance. engine to manage existing and for both service providers and routers. cloud networks in the same enterprise. manner. What our customers are saying Learn More “Juniper vMX leverages OTS hardware and supports For more information, visitAzure and Juniper or open APIs, reinforcing programming tools such as Ruby, E-mail: [email protected] Python, Ansible, Puppet, and Chef. This will allow us to spend less time manipulating the platform and more time creating innovative solutions with our clients.” Frank Jadevaia, President, Intercloud Systems Azure is the Microsoft application platform for the public cloud.
    [Show full text]
  • IP/MPLS Router Module for the CBX 500 Multiservice WAN Switch Quick
    IP/MPLS Router Module for the CBX 500 Multiservice WAN Switch Quick Start Lucent Technologies InterNetworking Systems Data Networking 1 Robbins Road Westford, MA 01886 http://www.lucent.com/support Part Number: 530-011610-01, Revision 1; Lucent comcode: 300730959 This Quick Start contains information you need to install and configure the Lucent Technologies IP/MPLS Router Module quickly. For complete installation instructions, see the IP/MPLS Router Module Hardware Guide at www.lucent.com. WARNING: This Quick Start contains a summary of safety warnings on page 10. For a complete list of warnings for this router module, including translations, see the IP/MPLS Router Module Hardware Guide at www.lucent.com. The router module is a complete routing system that provides ATM, Ethernet, and IP services for large networks and network applications, such as those supported by Internet service providers (ISPs). Application-specific integrated circuits (ASICs), which are a definitive part of the router module design, let the router module forward data at the high speeds that current network media demand. The router module is designed exclusively for installation in the Lucent Technologies CBX 500 Multiservice WAN Switch. The router module is 2.1 in. (5.3 cm) wide, which enables side-by-side installation of six IP/MPLS router modules in a single CBX 500 switch. You can install a router module in any two adjacent CBX 500 slots except the leftmost slot (slot 3). The router module is shipped in a cardboard carton (on an optional pallet). The carton contains the following items: One accessory kit (a box that contains this document, two SFPs, and other items) One router module Table of Contents Step 1: Preparing the Site......................................................................................
    [Show full text]
  • Ericsson and Juniper Networks Partnership Gains Momentum with Joint Transport Solutions
    PRESS RELEASE February 20, 2019 Ericsson and Juniper Networks partnership gains momentum with joint transport solutions Since announcing a deepened partnership in September 2018, Ericsson (NASDAQ: ERIC) and Juniper Networks (NYSE: JNPR) have secured more than 20 new customers worldwide. The two companies are today unveiling further enhancements to their joint 5G transport network and security solutions to meet increasing demand. Service providers who are looking to deploy 5G-ready networks are turning to the combined Ericsson and Juniper portfolios to deliver the required transport infrastructure, operations and service delivery solutions they need that remove complexity and ensure ease-of-use. Per Narvinger, Head of Product Area Networks, Ericsson, says: “The positive market response to our expanded partnership with Juniper is a testimony to the strength of our joint end-to-end transport solutions. We hope to sustain this momentum by further enhancing our leading, high-performance transport portfolio to ensure that next-generation networks continue to benefit our customers.” Manoj Leelanivas, Chief Product Officer, Juniper Networks, says: “By integrating complementary portfolios and technologies, Juniper Networks and Ericsson continue to partner and further develop end-to-end transport solutions for the 5G era – solutions that give service providers greater flexibility, performance, security and automation.” With the evolution of Ericsson’s solution for network slicing, Juniper’s SDN controller, NorthStar, is interworking with Ericsson Dynamic Orchestration, providing seamless control from the cell site to the packet core network – including the data center gateway. This allows automation and integration of connectivity services in the transport domain into an end-to- end network slice.
    [Show full text]
  • Executive Biographies
    Executive Biographies Kevin Johnson, Chief Executive Officer Kevin Johnson joined Juniper Networks in September of 2008 as Chief Executive Officer and a member of the board. Mr. Johnson has been appointed by the President of the United States of America to serve on the National Security Telecommunications Advisory Committee (NSTAC). Prior to joining Juniper, Mr. Johnson spent 16 years at Microsoft, most recently as President of the Platforms and Services Division, an organization of more than 14,000 employees with responsibility for product development, marketing and strategy for the Windows and Online Services businesses. Under his leadership, the division achieved record-breaking results with more than $20 billion in revenue in fiscal year 2008. In addition, Mr. Johnson focused on building Microsoft's position as an industry leader in online advertising and evolving its "software + services" strategy. He worked globally with small- to medium-sized businesses as well as large consumer, service provider and enterprise customers. Prior to that role, Mr. Johnson served as Group Vice President of Microsoft's worldwide sales, marketing and services organizations and also oversaw corporate operations and IT functions that supported the work of Microsoft employees around the world. He started his career as a software developer and worked in IBM's systems integration and consulting business. He earned a bachelor's degree in business administration from New Mexico State University. He served as a founding member of the board of directors of NPower, a nonprofit organization that helps other nonprofits use technology to expand the reach and impact of their work, and as a member of the Western Region Board of Advisors of Catalyst, a nonprofit organization dedicated to women's career advancement.
    [Show full text]