Posts

Implementing Aruba Campus Access v23.11 (IACA)

Image
Welcome to this week's class (IACA) navigate to  https://rubbernecks-arubanetworks.blogspot.com Please be sure you have downloaded the learner guide and lab guide as per instructions you received from an email you would have received from HPE last week.  Check your email history, spam folder etc... for keyword "OnSecure" if you cannot find the email. Please   click here for this week's lab access spreadsheet (ask me in class for the password)      Lab Notes webgate: how to copy and paste while doing the labs Day 1 -  Lecture Modules & Labs M00: Course Introduction Ti ps on how to google our site for documentation googling for AOS-Switch-related topics site:hpe.com 16.09 -inurl:pdf -inurl:cx "dhcp-snooping" googling for AOS-CX-related topics site:arubanetworks.com -inurl:pdf inurl:AOS-CX inurl:10\.11 "dhcp-snooping" search option notes: site:x only searched that domain -inurl:x don't report links with this text in the URL inurl:x only rep

Arubanetworks Webgate - Copy and Paste instructions

Copy/Paste Text from local to remote  Copy/Paste from local to remote  You need to copy the text between local and remote devices as follows: Copy the text from your local machine as usual Press Ctrl+Alt+Shift to get the menu (don't do this on the network diagram, only on telnet / RDP sessions) Paste the text in the box that shows on the menu (this copies the text to the remote server) Press Ctrl+Alt+Shift to close the menu (or do this after the next step) Right click on the device to paste in telnet or paste normally in the remote RDP session Copy/Paste from remote to local To copy to your local machine from the remote switch reverse this: Select the text like you would with Putty Press Ctrl+Alt+Shift to get the menu (don't do this on the network diagram, only on telnet / RDP sessions) Copy text from box on menu Press Ctrl+Alt+Shift to close the menu (or do this after the next step) Paste as usual on your local PC Copy/Paste an Archive of Files from remote to local Make a zip

Instructor PPTX VBA - Removing out of slide boundary Color Selector Shape

Image
How to manipulate shapes out of borders of your PPTX Slides If your like me, you find the out of bounds unnecessary shapes in your PPTX distracting when working with pptx files. here is a script that will: detect how many slide masters you have in a pptx then loop through each layout in each slide master it then detects all shapes, determines if they are groups if the group is out of bounds and is the exact size of the color selector group: it shows you the group for final validation and asks you if you want to delete it Option Explicit Sub ColorGroupCheck()     Dim shp As Shape     Dim sld As Slide     Dim oMaster As Design     Dim oLayout As CustomLayout     Dim sldHeight As Long     Dim userResponse As Integer     'Debug.Print ActivePresentation.PageSetup.SlideHeight     'Debug.Print ActivePresentation.Designs.Count     sldHeight = ActivePresentation.SlideMaster.Height          For Each oMaster In ActivePresentation.Designs         'Debug.Print oMaster.SlideMaster.Custom