You can find the MAC address for LAN1/eth0 (not the BMC MAC) via the SuperMicro IPMI interface by running the following command:
$ ipmitool -U <redacted> -P <redacted> -H 10.4.0.10 raw 0x30 0x21 | tail -c 18
00 25 90 f0 be ef| # The blog post that started it all: https://neocities.org/blog/the-fcc-is-now-rate-limited | |
| # | |
| # Current known FCC address ranges: | |
| # https://news.ycombinator.com/item?id=7716915 | |
| # | |
| # Confirm/locate FCC IP ranges with this: http://whois.arin.net/rest/net/NET-165-135-0-0-1/pft | |
| # | |
| # In your nginx.conf: | |
| location / { |
| #!/usr/bin/python | |
| import urllib2 | |
| import json | |
| import pprint | |
| pp = pprint.PrettyPrinter(indent=4) | |
| class instance_size: | |
| def __init__(self): | |
| pass |
| # Get Sublime Text to use your rvm ruby without hardcoding a `$USER`. | |
| # | |
| # Include the configurations below the commend in the appropriate file listed below: | |
| # | |
| # - OS X ST2: ~/Library/Application Support/Sublime Text 2/Packages/Ruby/Ruby.sublime-build | |
| # - OS X ST3: ~/Library/Application Support/Sublime Text 3/Packages/User/Ruby.sublime-build | |
| # - Linux ST2: ~/.config/sublime-text-2/Packages/Ruby/Ruby.sublime-build | |
| # - Linux ST3: ~/.config/sublime-text-3/Packages/User/Ruby.sublime-build | |
| { |
| require 'net/https' | |
| require 'base64' | |
| require 'json' | |
| require 'uri' | |
| class Catchpoint | |
| @@host = 'https://io.catchpoint.com' | |
| @@prefix = '/ui/api' | |
| @@version = 1 |
| #!/usr/bin/env python | |
| import gevent.monkey | |
| gevent.monkey.patch_all() | |
| import boto | |
| import config | |
| import gevent | |
| import gevent.pool | |
| import os |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| package main | |
| import "fmt" | |
| type F func(i int) int | |
| func (f F) compose(inner F) F { | |
| return func(i int) int { return f(inner(i)) } | |
| } |
| # A demonstration of the CurveCP handshake protocol. This protocol has many | |
| # favorable security properties described at http://curvecp.org. | |
| # | |
| # In addition to its security advantages, it has the following favorable properties: | |
| # * Needs only 2 messages (1 from client, 1 from server) before application | |
| # messages can be exchanged (3 before the server can send application messages) | |
| # * Does not require the server to keep protocol state between handshake messages. | |
| # | |
| # An overview of the protocol: | |
| # |
You can find the MAC address for LAN1/eth0 (not the BMC MAC) via the SuperMicro IPMI interface by running the following command:
$ ipmitool -U <redacted> -P <redacted> -H 10.4.0.10 raw 0x30 0x21 | tail -c 18
00 25 90 f0 be ef