• Mac OS X,  Mac Security

    Disable ICMP Rate Limiting In OS X

    Ever wonder why repetitive pings fail after a little while in OS X (e.g. those sent via the -f flag)? By default, OS X has an ICMP rate limit of 250 set. You can increase this or disable, using sysctl. To disable, set the value of net.inet.icmp.icmplim sudo sysctl -w net.inet.icmp.icmplim=0 Happy icmp flooding!

  • Mac OS X Server,  Mac Security

    Enable Push Notifications In macOS Server 5.2 On Sierra

    Push Notifications can be used in most every service that macOS Server 5.2 (for Sierra) can run. Any service that requiring Push Notifications will often provide the ability to setup APNS during the configuration of the service. But at this point, I usually just set up Push Notifications when I setup a new server. To enable Push Notifications for services, you’ll first need to have a valid AppleID. Once you have an AppleID, open the Server app and then click on the name of the server. Then click on the Settings screen and click on the checkbox for Notifications. At the Settings screen for your server, click on the check-box for Apple…

  • Mac OS X Server,  Mac Security,  Xsan

    Configure Xsan Clients In Server 5.2

    Yosemite brought Xsan 4, which included a whole new way to add clients to an Xsan. Xsan Admin is gone, as of El Capitan, but unchanged from then to macOS Sierra (other than a couple of binaries moving around). These days, instead of scanning the network using Xsan Admin. we’ll be adding clients using a Configuration Profile. This is actually a much more similar process to adding Xsan clients to a StorNext environment than it is to adding clients to Metadata Controllers running Xsan 3 and below. But instead of making a fsnameservers file, we’re plugging that information into a profile, which will do that work on the client on our behalf.…

  • Xsan

    Xsan Command Line Options In macOS Sierra

    Let’s start out with what’s actually available in the Server Admin CLI: serveradmin. The serveradmin command, followed by settings, followed by san shows a few pieces of information: bash-3.2# serveradmin settings san
san:computers = _empty_array
san:primaryController = "95C99FB1-80F2-5016-B9C3-BE3916E6E5DC"
san:ownerEmail = "krypted@me.com"
san:sanName = "krypted"
san:desiredSearchPolicy:_array_index:0 = ""
san:serialNumbers = _empty_array
san:dsType = 0
san:ownerName = "Charles Edge"
san:managePrivateNetwork = yes
san:metadataNetwork = "10.0.0.0/24"
san:numberOfFibreChannelPorts = 2
san:role = "CONTROLLER" Here, we see the metadata network, the GUID of the primary (active) MDC, the name of the SAN, an array of serial numbers (if applicable – in a purely Mountain Lion/Mavericks SAN they aren’t), the owner info plugged in earlier and the metadata network interface being used. Next, we’ll take a peak at…

  • iPhone

    My Notes From The September 7th, 2016 Apple Event

    App Store Stats and Fun Stuff 17,000,000! 900,000,000 lighting connector devices 10 year anniversary of the Apple Music Festival, with Britney 140 billion app downloads 106% YoY download increases 2 times the “nearest competitor” 1/2 million games on the store Mario: Super Mario Run Mention ConnectEd! Everyone Can Code iWork Real Time Collaboration (only behind Google by how long?) But it’s prettier than what Google does Apple is the 2nd largest watchmaker now, and largest smartwatch maker Watch: WatchOS 3 New dock New faces Tapback messaging Animated stickers in messages Full screen effects, just like in Messages for Mac Breathe Emergency Messaging Developers Pokémon Go for watch 500,000,000 downloads of…

  • Mac OS X,  Mac Security

    Hide Items On Your Desktop In OS X

    When speaking to a group of people, I once created a folder called Old and then moved all my files in there. However, you can create a temporary desktop that shows as clean and empty. To do so, write the CreateDesktop key in the com.apple.finder defaults domain, with a setting of false, as follows: defaults write com.apple.finder CreateDesktop -bool false Then restart the Finder and it will show crisp and new: killall Finder Then once you’re done, delete the temporary desktop, by deleting the key, as follows: defaults delete com.apple.finder CreateDesktop Then restart the Finder to see your files again: killall Finder

  • Mac OS X

    Configure TextEdit To Save Files As Plain Text

    Set plain text in TextEdit as the default format to save files in using the defaults command to write the RichText key into com.apple.TextEdit as an integer of 0, as follows: defaults write com.apple.TextEdit RichText -int 0 To remove the key: defaults delete com.apple.TextEdit RichText