1 | event bro_init() |
1 | event bro_init() |
This post represents the solution and explanation for quiz-3.
NAT on Cisco IOS can be pretty frustrating sometimes and it may take time and practice to master it.
I've been creating a set of networking icons in Adobe Illustrator. To get these in a usable vector format for Visio and OmniGraffle stencils I need them in EMF or WMF format. Unfortunately the built-in Export function in Illustrator doesn't support Artboards for EMF/WMF but instead outputs one single file, so I needed to find a different solution...
I've been creating a set of networking icons in Adobe Illustrator. To get these in a usable vector format for Visio and OmniGraffle stencils I need them in EMF or WMF format. Unfortunately the built-in Export function in Illustrator doesn't support Artboards for EMF/WMF but instead outputs one single file, so I needed to find a different solution...
First of all, I needed to split my main AI file in to individual files for each Artboard.
To do this, I went to File > Save As > Adobe EPS and selected the Artboard option.
Next was to individually export these to EMF and WMF.
First choice was to create a Workflow in Automator but for some reason. Automator's Watch Me Do action was unable to recognise that Illustrator was open - It returned some error about the application not being open (even though it was).
Second choice was AppleScript, but as it turns out Adobe don't have the EMF or WMF available as formats for the export action in their AppleScript library.
Finally I found the "Actions" menu in Illustrator.
I created a new folder called "My Actions"
Create a new Action called "Export to EMF" and started recording the Continue reading
I've been creating a set of networking icons in Adobe Illustrator. To get these in a usable vector format for Visio and OmniGraffle stencils I need them in EMF or WMF format. Unfortunately the built-in Export function in Illustrator doesn't support Artboards for EMF/WMF but instead outputs one single file, so I needed to find a different solution...
I'm not sure why I've taken such an interest in mDNS, service discovery, and the Bonjour protocol, but I have. It probably has something to do with my not being able to use AirPlay at home for such a long time because, like any true network geek, I put my wireless devices on a separate VLAN from my home media devices. I mean, duh. So now I keep an eye out for different methods of enabling mDNS in the network in anticipation of my own experience in my home network becoming one of my customer's experience in their enterprise network.
Mid December 2012 Apple shut down the Messages Beta for Lion, soon after many hackintosh users started noticing issues with signing into iMessage. At some point in time, people far smarter than me managed to patch a little used bootloader called Clover to allow us to log into iMessage, but Clover is young and still full of random issues. Honestly, it never liked the system id on my partition, so I was never able to use it. But now, it seems that someone has patched our widely used Chameleon bootloader! I’ve tested it on my own hackintosh, and many users are also reporting success.
The instructions are simple enough, and should only take you 3 minutes + a reboot to implement and test!
sudo mkdir /Extra/modules
cd /Extra/modules
sudo unzip ~/Downloads/FileNVRAM.dylib.zip
sudo rm -rf __MACOSX
sudo rm -rf ACPICodec.dylib
If you have ACPICodec.dylib in your /Extra/modules folder, you need to delete it.
Hopefully this will take Continue reading
How does the internet work - We know what is networking
What is Wildcard Masking? Wildcard mask is like any other computer IP address basically a group od zeroes and ones (o and 1). To be short, in wildcard mask all number one (1) mean “I don’t care about that position”, and all zeroes (0) mean “I care about that position in binary address”. Let’s take an example where Access list with […]