• Professional Development
  • Medicine & Nursing
  • Arts & Crafts
  • Health & Wellbeing
  • Personal Development

8535 Courses

Definitive OpenSSL for engineers

5.0(3)

By Systems & Network Training

OpenSSL for engineers training course description A hands on course covering OpenSSL. The course focusses on the use of OpenSSL from the command line as opposed to using its extensive libraries. Certificate authorities are configured along with key generation, HTTPS and a SSL VPN. What will you learn Describe OpenSSL. Use OpenSSL. Describe and implement: Explain how the various technologies involved in an OpenSSL work. OpenSSL for engineers training course details Who will benefit: Network personnel. Prerequisites: IP security foundation for engineers Duration 2 days OpenSSL for engineers training course contents What is OpenSSL? What is SSL? SSL versions, TLS, TLS negotiation, TLS authentication, What is OpenSSL, Command line tool, SSL library. OpenSSH, OpenVPN. Hands on TLS packet analysis. Getting started with OpenSSL Downloading, source code, packages, installing, versions, configuration, openssl command. Cipher suite selection. Hands on Encrypting a file with openssl. Public and private keys Algorithms, creating keys, public keys, private keys, encrypting the private key. Hands on Encrypting a file with keys. Digital signatures Creating signatures, checking validity of signatures, Self signing SSL certificates. Viewing certificates. Certificate files. Converting between formats. Hands on Securing a web server with HTTPS. Simple PKI with OpenSSL Root CA, signing CA, configuration files, Certificate signing requests. Email certificates, TLS server certificates. Hands on Implementing a simple PKI with OpenSSL.

Definitive OpenSSL for engineers
Delivered in Internationally or OnlineFlexible Dates
£2,477

Pre-Experienced Worker Route Package

5.0(9)

By Optima Electrical Training

If you have at least 5 years working experience and you would like to attain Gold Card status via the Experienced Worker route by joining the City & Guilds 2346 NVQ Level 3, you will also need to hold the below two pre-requisite qualifications: City & Guilds 2391-52 Inspection and Testing Course C&G 2382-22 BS7671 18th Edition

Pre-Experienced Worker Route Package
Delivered In-Person in London + 2 more or UK WideFlexible Dates
£1,695

Essential data centre technologies

5.0(3)

By Systems & Network Training

Data centre infrastructure course description This course provides a foundation in data centre infrastructure technologies. It begins with a tour of virtualisation and the impact of this on the network before moving on to the spine and leaf design, how it works and how to scale. Layer 2 technologies enabling this architecture are studied in terms of the impact on the data centre. The course then progresses onto how Layer 3 technologies such as BGP, EVPN and VXLAN are used in data centre networks. The course then studies interconnecting data centres finishing with a section on automation and orchestration of both underlay and overlay networks. What will you learn Explain the spine and leaf architecture Recognise the impact of virtualisation, containers and orchestration on the network Describe how the following technologies are used in data centres: Multi port aggregation Overlay networks MBGP, VRFs, EVPN VXLAN COOP Data centre infrastructure course details Who will benefit: Staff involved with Data centres. Prerequisites: Network fundamentals for engineers Duration 2 days Data centre infrastructure course contents What is Ethernet? Data centres versus enterprise networks. Servers, Blades, Racks, Clusters, Storage, Virtual Machines, Hosts, guests, containers, orchestration. Virtual switches. Distributed switches. Live migrations (e.g. vMotion). IP addressing and VM traffic. Data centre network architecture Spine leaf design. North south traffic, East West traffic, Scaling: Ports, bandwidth. N+1 redundancy, ratio East West optimisation, oversubscription. 2 tier versus 3 tier Leaf/Spine. Pods. Underlay, Overlay L2 technologies STP vs link aggregation vs multi link aggregation. LACP, LLDP, CDP. Scalability. VLANs and VLAN pruning. L2 design recommendations. Disabling STP on edge ports. L3 technologies Underlay, Overlay, VXLAN, VTEP, VXLAN overlay forwarding, EVPN, IS-IS, COOP, MP BGP, VRFs, EBGP, IBGP, AS numbers, route reflectors. Anycast gateways. MTU considerations-for data and control planes. BUM traffic. Data centre interconnects Pods, fabrics, multi pods, multi fabric, multi site. VXLAN with BGP/EVPN Data center interconnect. Cloud integration, Inter Site Networks. Automation Automation and orchestration, Zero touch provisioning, Devops, Netops, telemetry automated configuration for underlay and overlay, SDN.

Essential data centre technologies
Delivered in Internationally or OnlineFlexible Dates
£2,477

Zeroconf and Bonjour for engineers

5.0(3)

By Systems & Network Training

Zeroconf and Bonjour training course description A hands on training course focusing on Microsoft and Apple implementations of Zeroconf. The course covers all three main areas: Interface configuration, name resolution and service discovery. Hands on with Apple Bonjour and Microsoft UPnP compliment all the major theory sessions. What will you learn Explain how mDNS and LLMNR work. Explain how DNS-SD and SSDP work. Recognise the role of service discovery gateways. Zeroconf and Bonjour training course details Who will benefit: Technical staff working with Zeroconf. Developers using Zeroconf. Prerequisites: TCP/IP Foundation for engineers Duration 2 day Zeroconf and Bonjour training course contents What is Zeroconf? Zeroconf, architecture, Microsoft UPnP, Apple, Bonjour, devices, components. Home networks, enterprise networks, BYOD. Plug and play without Zeroconf DHCP, DNS, A, PTR, SRV records, DDNS. Hands on DHCP configuration. Address selection IPv4 link local addresses, IPv6 link local addresses. Hands: Addresses without DHCP. Name resolution mDNS, finding names, announcing names, .local DNS namespace, LLMNR. Hands on Names without DNS. Role of multicasting Multicast addresses, multicasts and switches, multicasts and routers. Hands on Multicasts, TTL. Service discovery DNS-SD, SRV and TXT lookups, SSDP, HTTP. Hands on Browsing for services Zeroconf in a routed environment Service Discovery gateways, configuration, service filters, DNS-LLQ, NAT-PMP. Miscellaneous Security, automatic multicast addresses, wireless auto configuration.

Zeroconf and Bonjour for engineers
Delivered in Internationally or OnlineFlexible Dates
£2,477

Network programming with sockets

5.0(3)

By Systems & Network Training

Sockets programming training course description A hands on course for programmers using Sockets. It is important to recognise that the course assumes that delegates are already familiar with TCP/IP and Python. Practical exercises follow all the major theory sessions. What will you learn Read Python programs which use Sockets. Write Python programs which use Sockets. Debug Python programs which use Sockets. Sockets programming training course details Who will benefit: Programmers working with network applications. Prerequisites: TCP/IP foundation for engineers Python for network engineers Duration 2 days Sockets programming training course contents What is a socket? Review of IP, ICMP, UDP vs TCP, IP addresses, protocol numbers, ports. API's, UNIX I/O, sockets. SOCK_STREAM, SOCK_DGRAM. Hands on Compile and run code. The systems calls Clients and servers, structs, socket(), bind(), connect(), listen(), accept(), send(), recv(), sendto (), recvfrom(), close(), shutdown(), getpeername(), gethostname(). Hands on Walk through of example client and server code. First code TCP connections, passive opens, active opens. Hands on Write a simple 'hello world' server and client. Application protocols User character stream, ASCII turn taking, binary protocols. Hands on Raw SMTP, Writing a mail client. Clients Concurrency, polling, threads, event driven programming. Hands on Conferencing application. Servers Concurrency, stateful, stateless. Forks and execs. inetd. Hands on Running servers with and without inetd, chroot jails, conferencing server modifications. Advanced techniques Blocking, select(), partial send(s). Raw sockets, example sockets using Java, Perl and PHP. Hands on A broadcast application.

Network programming with sockets
Delivered in Internationally or OnlineFlexible Dates
£2,477

Junos Intermediate Routing

5.0(3)

By Systems & Network Training

Junos Intermediate Routing training course description This course provides students with intermediate routing knowledge and configuration examples. The course includes an overview of protocol-independent routing features, load balancing and filter-based forwarding, OSPF, BGP, IP tunneling, and high availability (HA) features. Junos Intermediate Routing (JIR) is an intermediate-level course. What will you learn Describe typical uses, configure & monitor static, aggregate, and generated routes. Configure and share routes between routing instances. Explain the operations of OSPF. Describe BGP and its basic operations. Configure and monitor GRE and IP-IP tunnels. Junos Intermediate Routing training course details Who will benefit: Engineers responsible for configuring and monitoring devices running the Junos OS. Prerequisites: Intro to the Junos Operating System Duration 2 days Junos Intermediate Routing training course contents Protocol-Independent Routing Static Routes Aggregated Routes Generated Routes Martian Addresses Routing Instances Lab 1 Protocol-Independent Routing Load Balancing and Filter-Based Forwarding Overview of Load Balancing Configuring and Monitoring Load Balancing Overview of Filter-Based Forwarding Configuring and Monitoring Filter-Based Forwarding Lab 2 Load Balancing and Filter-Based Forwarding Open Shortest Path First Overview of OSPF Adjacency Formation and the Designated Router Election OSPF Scalability Configuring and Monitoring OSPF Basic OSPF Troubleshooting Lab 3 Open Shortest Path First Border Gateway Protocol Overview of BGP BGP Attributes IBGP Versus EBGP Configuring and Monitoring BGP Lab 4 Border Gateway Protocol IP Tunneling Overview of IP Tunneling GRE and IP-IP Tunnels Implementing GRE and IP-IP Tunnels Lab 5 IP Tunneling High Availability Overview of High Availability Networks Graceful Restart Graceful RE Switchover Nonstop Active Routing BFD VRRP Lab 6 High Availability Appendix A: IPv6 Introduction to IPv6 Routing Protocol Configuration Examples Tunneling IPv6 over IPv4 Lab 7 (Optional) IPv6 Appendix B: IS-IS Overview of IS-IS Overview of IS-IS PDUs Adjacency Formation and DIS Election Configuring and Monitoring IS-IS Basic IS-IS Troubleshooting Lab 8 (Optional) IS-IS Appendix C: Routing Information Protocol Introduction to RIP RIP Configuration Examples Monitoring and Troubleshooting RIP

Junos Intermediate Routing
Delivered in Internationally or OnlineFlexible Dates
£2,477

Junos Service Provider Switching

5.0(3)

By Systems & Network Training

Junos Service Provider Switching training course description This course provides students with an overview of switching concepts such as LANs, Layer 2 address learning, bridging, virtual LANs (VLANs), provider bridging, VLAN translation, spanning-tree protocols, and Ethernet Operation, Administration, and Maintenance (OAM). This course also covers Junos operating system-specific implementations. Junos Service Provider Switching is an intermediatelevel course. What will you learn Describe carrier Ethernet. Describe the function of an Ethernet LAN. Implement VLAN tagging. Describe the components of provider bridging. Identify and use available tools to resolve network issues. Configure and monitor Ethernet OAM, ERP, LAG, STP, the RSTP, the MSTP, and the VSTP. Junos Service Provider Switching training course details Who will benefit: Individuals responsible for configuring and monitoring devices running the Junos OS. Prerequisites: Junos Intermediate Routing Duration 2 days Junos Service Provider Switching training course contents Ethernet Switching and Virtual LANs Ethernet LANs Bridging Configuring and Monitoring VLANs Automating VLAN Administration Configuring and Monitoring IRB Layer 2 Address Learning and Forwarding Layer 2 Firewall Filtering Ethernet Switching and VLANs Lab Virtual Switches Routing Instances Overview Configuring and Monitoring Virtual Switches Interconnecting Routing Instances Logical Systems Virtual Switches Lab Provider Bridging Expanding the Bridged Network Provider Bridging Configuring and Monitoring Provider Bridging Provider Bridging Lab Spanning-Tree Protocols Overview of STP Overview of RSTP Overview of MSTP Overview of VSTP Configuring and Monitoring Spanning-Tree Protocols Understanding BPDU, Loop, and Root Protection MSTP Lab Ethernet OAM OAM Overview LFM CFM Configuring and Monitoring Ethernet OAM Ethernet OAM Lab High Availability and Network Optimization ERP Overview Configuring and Monitoring ERP Link Aggregation Group Overview Configuring and Monitoring a LAG MC-LAG Overview Configuring and Monitoring an MC-LAG High Availability and Network Optimization Lab Troubleshooting and Monitoring Introduction to Troubleshooting and Monitoring Troubleshooting and Monitoring Tools Troubleshooting Case Study: Network Congestion Troubleshooting and Monitoring Lab Appendix A: Carrier Ethernet Ethernet in the WAN Ethernet Standards Organizations MX Series Layer 2 Features Appendix B: Deprecated Syntaxes Appendix C: MX Series Overview

Junos Service Provider Switching
Delivered in Internationally or OnlineFlexible Dates
£2,477

'Bag in a Day' Practical Leather Course - Rucksack/ Backpack

5.0(32)

By Hands of Tym

This course is ideal for all, from beginners to confident makers. You will learn the basics of leather craft for accessories and be introduced to techniques including machine stitching on leather, hand finishing and hand cutting. You will also be working with the full spectrum of leather types from soft leathers and suedes to a hard sturdy veg tanned leather. This is a perfect introductory course to start your journey into leatherwork and bag making as you will experience the wide variety of tasks involved in the work. In order to complete your bag in a day we will use part pre-prepared components and the bag will be made from a ‘Hands of Tym’ pattern but do not fear there is still plenty of work for you to do. During the day you will be directed by your tutor Leathersmith and London College of Fashion Lecturer Georgie Tym to make a 'Turned seam' Leather backpack with drawstring and flap closure. It will have raw edge straps with buckles to adjust and one flat pocket. The dimensions of the bag are 250mm x 310mm x 200mm. The bag is fully lined and it will be the same construction as the bag in the photos - please contact for more info or view online Parking available on the drive with easy access via the M40. Banbury train station is a 30 min walk. Trains run from both London Marylebone and Birmingham to Banbury in 50mins. Also well connected to Reading, Oxford, Leamington Spa to name a few. Maximum class size is 3-4 What's included in the price? There are no additional costs. All leather, hardware and other materials will be included. There will be a selection of leather and hardware colours for you to choose from.There will be lunch served at midday and tea/ coffee breaks throughout. Cancellation policy Easy - Cancellation and a full refund can be obtained up to 2 weeks before the course starts About Georgie at Hands of Tym During training at Cordwainers, London College of Fashion in 2010 I learnt how to design, make and manufacture bags professionally. Following a varied career in Accessories design and development across many roles and international brands I set up Hands of Tym in 2016. The courses I offer are suitable for all, from experienced to total novice. Come along to learn something new, and design and make your own leather bag in a day.

'Bag in a Day' Practical Leather Course - Rucksack/ Backpack
Delivered In-PersonFlexible Dates
£260

3G demystified

5.0(3)

By Systems & Network Training

3G training course description This course is designed to give the delegate an understanding of the technologies used within a 3G UMTS mobile network. During the course we will investigate the UMTS air interface and the use of Wideband-Code Division Multiple Access (WCDMA) to facilitate high speed data access, together with HSPA to offer mobile broadband services. We will describe the use of soft handover rather than hard handover procedures and soft capacity sharing. The course includes a brief exploration of the UMTS protocol stack and the use of PDP Context and QoS support features. What will you learn Explain the 3G UMTS architecture. Describe the role of a Drifting & Serving RNC. Explain the use of ARQ & HARQ for mobile broadband. Describe how IMS integrates into the architecture. Describe the use of Media Gateway Controllers. Identify the temporary identities used within 3G UMTS. 3G training course details Who will benefit: Anyone working within the telecommunications area, especially within the mobile environment. Prerequisites: Mobile communications demystified Telecommunications Introduction Duration 2 days 3G training course contents D3GPP specifications 3GPP standards body, Evolution path, Frequency and bandwidth, Conceptual model, UMTS general architecture, UTRAN architecture & radio access bearer. CDMA principles CDMA principle, Code characteristics, Code requirements. CDMA requirements Synchronization, Power control, Soft handover, Rake receiver, Antenna consideration, Multi-user detection. Radio interface protocol architecture Access stratum & non-access stratum, Overall protocol structure, Logical and transport channels, Physical channels, Protocol termination. Layer 2 Protocols Medium Access Control (MAC) Protocol, Radio Link Control (RLC) Protocol, Packet Data Convergence Protocol (PDCP) protocol, Radio Interface for Broadcast/Multicast Services. Radio Resource Control (RRC) Protocol RRC Architecture, RRC Protocol State, Broadcast of information, RRC connection management, Radio bearer management, RRC connection mobility functions, Power control, Ciphering and Integrity. Mobile procedures Mobility management states and transitions, UMTS identities, Procedures in Idle mode (location updates, cell selection/ re-selection), Circuit-switched call set-up, Packet-switched context activation and context preservation, Data transfer initialization, Soft-handover procedure. Introduction to HSPA The need for high speed data, Fast HARQ, Improved scheduling, Additional channels, Soft combining, HS-DSCH codes, Uplink HSPA vs downlink HSPA, Full HSPA, Use of MIMO, Enhanced CELL_FACH.

3G demystified
Delivered in Internationally or OnlineFlexible Dates
£2,477

SketchUp - Rendering with V-Ray Course

By ATL Autocad Training London

Who is this course for? SketchUp - Rendering with V-Ray Course This course is tailored for architects, designers, 3D artists, and anyone interested in enhancing their rendering skills using SketchUp and V-Ray. Whether you're a beginner or an experienced user, this course provides in-depth training to create stunning visualizations and realistic renders in SketchUp using V-Ray. Check our Website Course Duration: 6 hours  Training Method: 1-on-1, (Face to Face) or Live Online session. Personalized to your needs. Course Content Overview: SketchUp and V-Ray: Exploring Intermediate Modeling Techniques Mastering V-Ray Materials: Textures, Sources, and Editing Managing and Optimizing Textures for Graphics and Bitmaps Illuminate Your Designs: Delving into Lighting: Types, Placement, and Scene Enhancement Understanding V-Ray Camera: Exposure, White Point, and Efficient Setup Achieve Stunning Renderings: Rendering Scenes: Digital Output, File Formats, and Best Practices Optimizing Quality Settings for Efficient Scene Creation Transitioning from 2D to 3D: Modeling Essentials for Visualization Utilizing Follow-Me and Push-Pull Techniques Enhancing Designs with Components: Choosing Between Groups and Components Mastering V-Ray Frame Buffer: Automatic 2D Graphic Saving File Types, Properties, and Effective Usage Perfecting V-Ray Materials: Materials Editor: Layering, Previews, and Shiny Surfaces Incorporating Bumps and Bitmaps for Realism Exploring Advanced Techniques: Unveiling Ambient Occlusion Effects Advanced Modeling, including Magic Box and Polygon Techniques Optimizing Texturing: Projected UVW Mapping Fine-Tuning Mapping Size and Position Locking Mapping for Consistency Alpha Channels: Preparing Graphics with Alpha Channels Integrating Rendered Output with Photoshop Hands-On Learning: Practical Exercises: From Concept to Stunning Renderings Vray for SketchUp Trial. https://www.chaosgroup.com/vray/sketchup/free-trial. Texture resources https://www.vray-materials.de/ and https://textures.com After completing the SketchUp and Vray course, participants will: Gain expertise in creating realistic 3D architectural and interior design scenes using Vray for SketchUp. Master lighting, camera settings, and composition for visually striking renders. Excel in applying Vray materials and textures for enhanced design quality. Produce high-quality renderings and refine them with post-production techniques. Receive a certification of attendance and 30 days of post-course email support. Job opportunities include roles in architectural visualization, interior design, real estate marketing, product design, and more. Skills Acquired: Advanced SketchUp Proficiency: Master advanced techniques for modeling and designing in SketchUp. V-Ray Rendering Skills: Learn how to use V-Ray to create realistic, high-quality renders in SketchUp. Texture Mapping and Material Application: Understand the art of texturing and applying materials for lifelike renders. Lighting Techniques: Explore various lighting setups to enhance the realism of your renders. Post-Processing: Gain skills in enhancing renders further through post-processing techniques. Job Opportunities: Architectural Visualizer: Create detailed and realistic architectural visualizations for projects. Interior Designer: Develop compelling interior visualizations for residential or commercial spaces. 3D Artist: Work in the gaming or animation industry, creating 3D models and environments. Visualization Specialist: Provide visualization services for real estate, marketing, or design agencies. Freelance Renderer: Offer your rendering services on a freelance basis to various clients. Why Choose Our Training? Personalized Coaching: Benefit from one-on-one training sessions conducted either Face to Face (SW96DE) or Live online, ensuring a tailored experience with practicing architects and designers. Flexible Hours: Our training is available Monday to Saturday from 9 am to 7 pm, accommodating your schedule for a seamless learning experience. Tailored Tutorials: Take advantage of custom video tutorials designed specifically for you, providing additional resources to enhance your learning journey. Comprehensive Reference: Receive a digital reference book to support thorough revision, ensuring a comprehensive understanding of each concept covered. Ongoing Support: Enjoy free and continuous support via phone or email even after the course concludes, ensuring your success beyond the classroom. Adaptable Syllabus: We customize the syllabus and projects to meet your specific needs, ensuring a focused learning experience on what matters most to you. Official Certification: Receive a certificate upon completing your course, recognizing your achievement in mastering the content. Why Us? Individualized Learning Support: Our courses, ranging from 10 hours to 120 hours Diploma training Courses, provide consistent support. With personalized assignments and post-course assistance, we guide you towards mastering software with dedicated help. Personal Attention, No Crowds: Say goodbye to crowded classrooms. Experience the intimacy of one-on-one learning, ensuring you receive the focused attention necessary for a confident and comfortable learning environment. Financial Flexibility: We understand the financial aspects of education. We offer various payment plans tailored to your needs, making your learning journey accessible and affordable. Expert Instructors, Real-world Knowledge: Our instructors are industry experts chosen for their extensive knowledge and teaching passion. Dedicated to imparting invaluable skills, they provide real-world insights to anyone eager to learn.

SketchUp - Rendering with V-Ray Course
Delivered in London or OnlineFlexible Dates
£259.20