www.virtuallyimpossible.co.uk
Open in
urlscan Pro
51.141.130.97
Public Scan
URL:
http://www.virtuallyimpossible.co.uk/
Submission Tags: falconsandbox
Submission: On November 18 via api from US — Scanned from GB
Submission Tags: falconsandbox
Submission: On November 18 via api from US — Scanned from GB
Form analysis
2 forms found in the DOMGET http://www.virtuallyimpossible.co.uk/
<form method="get" class="searchform search-form" action="http://www.virtuallyimpossible.co.uk/" role="search"><input type="text" value="Search this website …" name="s" class="s search-input"
onfocus="if ('Search this website …' === this.value) {this.value = '';}" onblur="if ('' === this.value) {this.value = 'Search this website …';}"><input type="submit" class="searchsubmit search-submit" value="Search"></form>
POST /
<form action="/" method="post">
<label for="target_email">Send to Email Address</label>
<input type="email" name="target_email" id="target_email" value=""><label for="source_name">Your Name</label>
<input type="text" name="source_name" id="source_name" value=""><label for="source_email">Your Email Address</label>
<input type="email" name="source_email" id="source_email" value=""><input type="text" id="jetpack-source_f_name" name="source_f_name" class="input" value="" size="25" autocomplete="off"
title="This field is for validation and should not be changed"><img style="float: right; display: none" class="loading" src="http://www.virtuallyimpossible.co.uk/wp-content/plugins/jetpack/modules/sharedaddy/images/loading.gif" alt="loading"
width="16" height="16"><input type="submit" value="Send Email" class="sharing_send"><a rel="nofollow" href="#cancel" class="sharing_cancel" role="button">Cancel</a>
<div class="errors errors-1" style="display: none;"> Post was not sent - check your email addresses! </div>
<div class="errors errors-2" style="display: none;"> Email check failed, please try again </div>
<div class="errors errors-3" style="display: none;"> Sorry, your blog cannot share posts by email. </div>
</form>
Text Content
VIRTUALLY IMPOSSIBLE Tips, thoughts and notes from the world of IT * Home * About * Contact * * Cisco * Citrix * Microsoft » * Exchange * SQL Server * Misc » * Mobile * Printing * Productivity * Programming * Networking * Storage * VMware » * Veeam NEW BLOG – GITHUB PAGES AND JEKYLL 30 December 2017 by Adam Rush NEW BLOG! I’ve decided to make more effort sharing what I learn, so I’ve created a new blog: https://adamrushuk.github.io WHY? Over the past year or so I’ve increasingly found myself on GitHub. Mainly looking at code, but also content served up on GitHub Pages; typically sites ending github.io. I’ve been meaning to get back into blogging, so thought I’d give GitHub Pages a go and see how it compares to using WordPress. A few clicks later and I arrived on the GitHub Help pages, and noticed Jekyll mentioned: https://help.github.com/categories/customizing-github-pages/ I’d never even heard of Jekyll before, so time for some Google-Fu! WHAT? Looks like Jekyll generates static content, and also integrates directly with GitHub: * https://jekyllrb.com/ * https://pages.github.com/ * https://help.github.com/articles/using-jekyll-as-a-static-site-generator-with-github-pages/ HOW? So now I’ve got a vague idea of what Jekyll is, I need to choose a theme and do some testing on GitHub. The Minimal Mistakes theme looks popular and is still being actively developed: https://github.com/mmistakes/minimal-mistakes/pulse There’s even a great install guide that looks easy enough to follow: https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/ LET’S GIVE THIS A GO THEN! Here’s the steps I took: 1. Forked the Minimal Mistakes theme, then renamed the repo to adamrushuk.github.io 2. Confirmed the default theme was showing as expected: https://adamrushuk.github.io 3. Cloned my new repo: git clone [email protected]:adamrushuk/adamrushuk.github.io.git 4. Added the original repo as an upstream remote: git remote add upstream https://github.com/mmistakes/minimal-mistakes.git 5. Removed the following folders and files: .editorconfig .gitattributes .github /docs /test CHANGELOG.md minimal-mistakes-jekyll.gemspec README.md screenshot-layouts.png screenshot.png 6. Updated information in _config.yml. 7. Committed all changes with an “Initial commit” message: git commit -am “Initial commit after fork” 8. Pushed the changes to GitHub: git push 9. After about 1 minute the changes were reflected online: 10. Went through the awesome step-by-step guide that details the many configuration options available: https://mmistakes.github.io/minimal-mistakes/docs/configuration/ * LinkedIn * Twitter * More * * Reddit * Print * * Tumblr * Email * * Pinterest * Facebook * * Filed Under: Misc Tagged With: Git, GitHub COMMANDS TO TROUBLESHOOT CONNECTIVITY THROUGH A VSHIELD EDGE 2 February 2017 by Adam Rush PACKET CAPTURE debug packet display interface INTERFACE host_EXTERNALIP-OF-DESTINATION-EDGE_and_tcp_port_PORT eg: debug packet display interface any host_11.22.33.44_and_tcp_port_80 debug packet display interface vNic_0 udp debug packet display interface vNic_0 icmp debug packet display interface vNic_0 host_10.10.10.10 debug packet display interface vNic_0 tcp_src_port_53 debug packet display interface vNic_0 host_10.10.10.10 debug packet display interface any host_10.10.10.10_or_host_11.22.33.44 USEFUL COMMANDS list (lists all available commands) show log follow show tech-support show nat show flowtable topN 5NAT show ip route show system cpu show system memory show system network-stats show system storage show system uptime show tech-support show version PING EXTERNAL ADDRESS FROM VSHIELD EDGE CONSOLE (NOTE*** MUST USE IP THAT’S ASSIGNED TO EDGE) ping interface addr 8.8.8.8 ping interface addr 11.22.33.44 8.8.8.8 SCROLL WITHIN A VSHIELD EDGE CONSOLE SESSION SHIFT + [PgUp / PgDn] * LinkedIn * Twitter * More * * Reddit * Print * * Tumblr * Email * * Pinterest * Facebook * * Filed Under: Networking, VMware Tagged With: Edge, Troubleshooting, VCNS COMMANDS TO TROUBLESHOOT CONNECTIVITY THROUGH A CISCO ASA 2 February 2017 by Adam Rush PACKET TRACER packet-tracer input packet-tracer input external tcp 11.22.33.44 1010 55.66.77.88 80 VPN EXAMPLE packet-tracer input internal udp 10.10.10.10 500 10.20.20.20 500 packet-tracer input internal udp 10.20.20.20 500 10.10.10.10 500 PACKET CAPTURE capture *NAME_OF_CAPTURE* interface *INTERFACE_NAME* match *TRANSPORT_PROTOCOL (TCP / UDP / IP)* host X.X.X.X (This is the source IP address) host Y.Y.Y.Y (This is the destination IP address) eq *PORT_NUMBER* capture cap1 interface external match tcp host 11.22.33.44 host 55.66.77.88 eq 80 CAPTURE ALL SYSLOG TRAFFIC TO 10.10.10.10 capture cap2 interface internal real-time match udp any host 10.10.10.10 eq 514 VIEW CAPTURE show capture cap1 SHOW ACCESS-LIST show access-list acl_external FIND ACCESS-LIST ENTRIES INCLUDING PORT 514 show access-list | inc 514 FIND LOG ENTRIES INCLUDING PORT 514 show logging | inc 514 SHOW ARP FOR SPECIFIC INTERFACE show arp | inc internal * LinkedIn * Twitter * More * * Reddit * Print * * Tumblr * Email * * Pinterest * Facebook * * Filed Under: Cisco, Networking Tagged With: Cisco IOS, command, Troubleshooting VIRTUALISATION PODCASTS – KEEPING YOUR FINGER ON THE PULSE 16 July 2016 by Adam Rush For many years I’ve found listening to Podcasts a great way to keep up-to-date with Virtualisation and Technology. It all started with the VMware Communities Roundtable podcast, where I quickly realised the commute to work didn’t have to be “dead time”. Here’s my current list of Virtualisation and Tech podcasts: 1. Packet Pushers Datanauts 2. Speaking in Tech 3. In Tech We Trust Podcast 4. The Cloudcast (.net) – Weekly Cloud Computing Podcast 5. The Full Stack Journey 6. Virtually Speaking Podcast 7. The Geek Whisperers 8. VMware Communities Roundtable 9. Cloud Insiders 10. vChat (MP3 VERSION) – The Latest in Virtualization and Cloud Computing 11. The Data Center Insiders Podcast: Virtualization | Cloud Computing | Enterprise IT | VMware | EMC The best Podcast app I’ve found to date is Overcast, as it has very useful features including Voice Boost and Smart Speed, Playlists, and a great UI. Oh yeah, and it’s free! I’ve you want to quickly import the above podcasts, download and import my OPML file here: overcast-adam-rush * LinkedIn * Twitter * More * * Reddit * Print * * Tumblr * Email * * Pinterest * Facebook * * Filed Under: Misc, Mobile, VMware Tagged With: podcast FIND UPGRADEABLE VSHIELD EDGES 11 June 2016 by Adam Rush I was recently asked if there was a quick way to find out how many vShield Edges were out-of-date and could be upgraded in a vCloud Director environment. I didn’t know of any, so I turned to my good friend PowerCLI and came up with this: This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters # Author: Adam Rush # Created on: 2016-05-28 # Finds all upgradeable vShield Edges and exports CSV file to Desktop $reportPath = "$HOME\Desktop\upgradable-VSEs.csv" $report = @() Write-Host "Searching for all vShield Edges..." -ForegroundColor Yellow $edges = Get-View -ViewType virtualmachine -Property Name,Config -Filter @{'Config.VAppConfig.Product[0].Name'='vShield Edge'} | % { $edge = '' | Select 'Name','Version' $edge.Name = $_.Name $edge.Version = $_.config.vappconfig.product[0].version $report += $edge } $highestVersion = ($report | Sort version -Descending)[0].version Write-Host "Highest vShield Edge version: $highestVersion" -ForegroundColor Yellow Write-Host "Exporting upgradeable vShield Edges..." -ForegroundColor Yellow $upgradableVSEs = $report | Where {$_.version -lt $highestVersion} Write-Host "Saving file to: $reportPath" -ForegroundColor Yellow $upgradableVSEs | Export-Csv -NoTypeInformation -UseCulture -Path $reportPath view raw Get-Upgradeable-vShield-Edges.ps1 hosted with ❤ by GitHub This script does assume that at least one of the vShield Edges in your environment is up-to-date, as it looks for the highest available version deployed and not the known latest version. * LinkedIn * Twitter * More * * Reddit * Print * * Tumblr * Email * * Pinterest * Facebook * * Filed Under: VMware Tagged With: PowerCLI, vCloud, vShield VMWARE TRAINING RESOURCES 11 June 2016 by Adam Rush I regularly get asked where good VMware training resources are found for various VMware products, so I thought I’d better create a page I can add links to as find them. VCLOUD DIRECTOR Since I’ve had a focus on vCloud Director for the past few years, these links are fresh in my mind: 1. VMware has recently updated their Fundamentals course, so this is probably the best place to start: VMware vCloud Director Fundamentals 2016 VCLOUD NETWORKING 1. Networking is often a tricky area for new users of vCloud Director, so here is a the best presentation I’ve found so far that explains how the different networking components fit together: https://youtu.be/EZw1UemLBoE 2. http://www.yellow-bricks.com/2010/09/07/vcd-networking-part-1-intro/ 3. http://www.yellow-bricks.com/2010/09/09/vcd-networking-part-2-network-pools/ 4. http://www.yellow-bricks.com/2010/09/15/vcd-networking-part-3-use-case/ VCLOUD DESIGN 1. vCloud Director Design and Scale: https://youtu.be/dzX6DgUL2hQ I’ve just found this page which includes most of the above links and more: http://blogs.vmware.com/vcloud/2010/09/top-resources-to-learn-about-vcloud-director.html I’m a big fan of Pluralsight and can highly recommend these courses: 1. https://app.pluralsight.com/library/courses/vmware-vcloud-director-essentials/table-of-contents 2. https://app.pluralsight.com/library/courses/vmware-vcloud-director-organizations/table-of-contents 3. https://app.pluralsight.com/library/courses/vmware-vcloud-5-1-essentials-pt1/table-of-contents 4. https://app.pluralsight.com/library/courses/vmware-vcloud-5-1-essentials-pt2/table-of-contents VSPHERE VSPHERE 6 Check out the latest Training and Certification resources here: http://mylearn.vmware.com/mgrReg/plan.cfm?plan=62349&ui=www_edu&rcode=twtr VMWARE VARIOUS Here’s the Top Free course from VMware Learning: http://mylearn.vmware.com/portals/www/mL.cfm?menu=topfreecourses&p=1 * LinkedIn * Twitter * More * * Reddit * Print * * Tumblr * Email * * Pinterest * Facebook * * Filed Under: VMware Tagged With: Training, vCloud, VMware vSphere INSTALL AND CONFIGURE CITRIX SECURE GATEWAY 2 April 2013 by Adam Rush OVERVIEW This is the eighth post in the Installing and Configuring Citrix XenApp 6.5 Series: 1. Install and Configure Citrix XenApp Licensing 2. Install and Configure Citrix XenApp 6.5 3. Configure Web Interface for Citrix XenApp 6.5 4. Publishing Applications with Citrix XenApp 6.5 5. Install and Configure Profile Management for Citrix XenApp 6.5 6. Add Servers to a XenApp 6.5 Farm 7. Configure Pass-through Authentication for Citrix XenApp 6.5 8. Install and Configure Citrix Secure Gateway (this post) CONTENTS This post contains the following sections: * Prerequisites for Citrix Secure Gateway * Installing Citrix Secure Gateway * Configuring Citrix Secure Gateway * Configuring Web Interface for Citrix Secure Gateway [Read more…] * LinkedIn * Twitter * More * * Reddit * Print * * Tumblr * Email * * Pinterest * Facebook * * Filed Under: Citrix Tagged With: Installation, XenApp CONFIGURE PASS-THROUGH AUTHENTICATION FOR CITRIX XENAPP 6.5 20 March 2013 by Adam Rush OVERVIEW This is the seventh post in the Installing and Configuring Citrix XenApp 6.5 Series: 1. Install and Configure Citrix XenApp Licensing 2. Install and Configure Citrix XenApp 6.5 3. Configure Web Interface for Citrix XenApp 6.5 4. Publishing Applications with Citrix XenApp 6.5 5. Install and Configure Profile Management for Citrix XenApp 6.5 6. Add Servers to a XenApp 6.5 Farm 7. Configure Pass-through Authentication for Citrix XenApp 6.5 (this post) 8. Install and Configure Citrix Secure Gateway CONTENTS This post contains the following sections: * Prerequisites to enable Pass-through Authentication for Citrix XenApp 6.5 * Enable Pass-through Authentication via Group Policy * Enable Pass-through Authentication for XenApp Web Sites * Enable Pass-through Authentication for XenApp Services Sites * Testing Pass-through Authentication for Citrix XenApp 6.5 * Cross Domain, Cross Forest Authentication for Citrix XenApp 6.5 [Read more…] * LinkedIn * Twitter * More * * Reddit * Print * * Tumblr * Email * * Pinterest * Facebook * * Filed Under: Citrix Tagged With: Authentication, XenApp ADD SERVERS TO A XENAPP 6.5 FARM 17 March 2013 by Adam Rush OVERVIEW This is the sixth post in the Installing and Configuring Citrix XenApp 6.5 Series: 1. Install and Configure Citrix XenApp Licensing 2. Install and Configure Citrix XenApp 6.5 3. Configure Web Interface for Citrix XenApp 6.5 4. Publishing Applications with Citrix XenApp 6.5 5. Install and Configure Profile Management for Citrix XenApp 6.5 6. Add Servers to a XenApp 6.5 Farm (this post) 7. Configure Pass-through Authentication for Citrix XenApp 6.5 8. Install and Configure Citrix Secure Gateway This post is almost identical to the Install and Configure Citrix XenApp 6.5 post, with only a few small differences. CONTENTS This post contains the following sections: * Install Citrix XenApp 6.5 * Configure Citrix XenApp 6.5 Licensing * Configure Citrix XenApp 6.5 * Add Citrix XenApp 6.5 Server to Worker Group [Read more…] * LinkedIn * Twitter * More * * Reddit * Print * * Tumblr * Email * * Pinterest * Facebook * * Filed Under: Citrix Tagged With: Installation, XenApp CREATE A CUSTOM VIEW IN EVENT VIEWER TO SHOW REBOOT EVENTS 15 March 2013 by Adam Rush SCENARIO A server reboot can explain related events and alarms triggered by monitoring systems, so it’s always handy to check for reboots first when troubleshooting. With this in mind, you want a quick and easy way of finding out when the server last rebooted. SOLUTION You need to create a Custom View in Event Viewer, that will only show shutdown and startup events, including reasons why the server rebooted. Here’s the steps to create the Custom View: [Read more…] * LinkedIn * Twitter * More * * Reddit * Print * * Tumblr * Email * * Pinterest * Facebook * * Filed Under: Microsoft Tagged With: Event ID, Event Log, Server 2008 Next Page » SOCIAL * View adamrushuk’s profile on Twitter * View adamrushuk’s profile on LinkedIn * View adamrushuk’s profile on GitHub CERTIFICATIONS RECENT POSTS * New Blog – GitHub Pages and Jekyll * Commands to troubleshoot connectivity through a vShield Edge * Commands to troubleshoot connectivity through a Cisco ASA * Virtualisation Podcasts – Keeping your finger on the Pulse * Find Upgradeable vShield Edges POPULAR POSTS * When good Domain Controllers go bad! * Deploying UltraVNC within an Active Directory environment using Group Policy * Install and Configure Profile Management for Citrix XenApp 6.5 * Configure Web Interface for Citrix XenApp 6.5 * Configure Pass-through Authentication for Citrix XenApp 6.5 TAGS Active Directory Backup Batch file Certificates Cisco IOS Clustering command Deployment Disaster Recovery Error Event ID Event Log Exchange 2007 Exchange 2010 GPO HP Installation IOPS iSCSI Licensing Monitoring NAS ODBC PowerShell RDS SAN Server 2003 Server 2008 Shortcuts SNMP Software SQL SUSE Linux Enterprise Server Sysinternals System Center Terminal Services Training Troubleshooting vCenter vCenter Virtual Appliance VMware vSphere Win7 WinXP WSUS XenApp Return to top of page Copyright © 2019 · Enterprise Child Theme on Genesis Framework · WordPress · Log in Send to Email Address Your Name Your Email Address Cancel Post was not sent - check your email addresses! Email check failed, please try again Sorry, your blog cannot share posts by email.