WISP future gear
by iam8up on Jan.10, 2012, under funny
I heard the 450 will be letting ubnt gear connect OFDM at 10mb/mhz it will let 2.4 penetrate 32 inches of solid lead and up to 26 miles of dense forrest. The SMs will all be indoor units you just mail to the customer and they can set them up in their basement behind a refrigerator. They will all ship with air control software that allows the operator to beam steer based on google maps so you just plot the path you want the rf to travel, it also has a max range of 722.8 miles. The AP can be installed up to 10 feet below ground level, It consumes 8mw of power when operating at full capacity and actually only uses a single antenna and board but will do all frequencies at once including the elusive 3mhz three dollar bill band. the overall weight of the device is actually negative so you will need to tie rocks to it. It is pre-provisioned to deliver netflix hd to 73.5 users simultaneously and handles 8.2 trillinon packets per second. It has self healing which will repair any lightning damage and the board is waterproof and has been armored up to .50calibur at 10 feet. It is coated in an anti bird excrement polymer that keeps the housing shiny. The proprietary RF algorithm actually melts any show or water in the path and resists fading.
It is going to be pricy at 32 dollars MSRP for the AP and 9.32 for the SM, but cambium will be offering 1% financing.
-Steve Jones
Halo Anniversary Skulls
by iam8up on Nov.13, 2011, under games
Description of them all: http://www.xbox360achievements.org/forum/showpost.php?p=4678413&postcount=3
Video of all thirteen skulls
All of the terminal locations
Props to FragStudiosTV for doing such a GREAT job of documenting the skulls and terminals.
The Pillar of Autumn
Halo
The Truth and Reconciliation
The Silent Cartographer and the second one – this one sucks. Get an overshield with two stickies and touch the panel for a checkpoint. I came at it straight (unlike the weird turn in the video). It’s about timing your jump to be upward moving when the explosion happens. I did not crouch jump.
Assault on the Control Room
343 Guilty Spark
The Library and Black Eye (this is at the end of the very first hall at the very beginning, just before you go through a doorway into a circular yellow lit room)
Two Betrayals
Keyes
The Maw
Reused town footage
by iam8up on Nov.05, 2011, under geeky
Watched Warehouse 13 recently and noticed a very familiar town. There is some spoiler in this footage, you have been warned! Curious to know how many other movies reuse this shot. Another one of those reused things, like the familiar Wilhelm scream
Warehouse 13 Season 3 Episode 11-12 at 8:32
Joe Dirt at 11:39
Share bandwidth across all users
by iam8up on Oct.19, 2011, under mikrotik
This will mark the traffic for shaping.
/ip firewall mangle add chain=prerouting action=mark-packet new-packet-mark=all passthrough=no
This will set each user to 2M/512k.
/queue type add name="PCQ_download" kind=pcq pcq-rate=2000000 pcq-classifier=dst-address
/queue type add name="PCQ_upload" kind=pcq pcq-rate=512000 pcq-classifier=src-address
This will make the configuration live. You can watch the usage packets
/ queue tree
add name="inbound" parent="ether2-customerfacing" packet-mark=all limit-at=0 \
queue=PCQ_download priority=8 max-limit=0 burst-limit=0 burst-threshold=0 \
burst-time=0s disabled=no
add name="outbound" parent="ether1-wan" packet-mark=all limit-at=0 \
queue=PCQ_upload priority=8 max-limit=0 burst-limit=0 burst-threshold=0 \
burst-time=0s disabled=no
Note that the example queue tree configuration is wrong as the smaller queue type will take dominance thereby making the larger queue type pointless. As traffic will typically be asymmetric, we want to specify the interfaces.
SRC: http://wiki.mikrotik.com/wiki/Manual:Queues_-_PCQ_Examples
RB751U-2HnD default config
by iam8up on Oct.16, 2011, under mikrotik
This is off of a unit that was given free at the MUM in Las Vegas last week.
#| ether1 is renamed to ether1-gateway
#| DHCP client and masquerade is set on ether1-gateway
#| ether2 is renamed to ether2-master-local and configured as switch master port for ether3-ether5
#| ether2-master-local and wlan1 are bridged
#| wireless is set as access point in 2412MHz using both chains and extension channel enabled.
#| IP address 192.168.88.1/24 and DHCP server is set on bridge interface
#| DHCP servers address pool is 192.168.88.10-192.168.88.254
:global action;
:local dhcpEnabled 0;
:local wirelessEnabled 0;
#check for wireless and dhcp packages
:if ([:len [/system package find name="dhcp" !disabled]] != 0) do={
:set dhcpEnabled 1;
}
:if ([:len [/system package find name="wireless" !disabled]] != 0) do={
:set wirelessEnabled 1;
}
#-------------------------------------------------------------------------------
# Apply configuration.
# these commands are executed after installation or configuration reset
#-------------------------------------------------------------------------------
:if ($action = "apply") do={
# wait for interfaces
:while ([/interface ethernet find] = "") do={ :delay 1s; };
:if ( $wirelessEnabled = 1) do={
# wait for wireless
:local count 0;
:while ([/interface wireless find] = "") do={
:set count ($count +1);
:if ($count = 60) do={
:log warning "DefConf: Unable to find wireless interface";
/ip address add address=192.168.88.1/24 interface=ether1;
/quit
}
:delay 1s;
};
/interface wireless set wlan1 mode=ap-bridge band=2ghz-b/g/n ht-txchains=0,1 ht-rxchains=0,1 \
disabled=no country=no_country_set wireless-protocol=any
/interface wireless set wlan1 channel-width=20/40mhz-ht-above ;
}
/interface set ether1 name="ether1-gateway";
:if ( $dhcpEnabled = 1) do={
/ip dhcp-client add interface=ether1-gateway disabled=no comment="default configuration";
}
/interface {
set ether2 name=ether2-master-local;
set ether3 name=ether3-slave-local;
set ether4 name=ether4-slave-local;
set ether5 name=ether5-slave-local;
}
/interface ethernet {
set ether3-slave-local master-port=ether2-master-local;
set ether4-slave-local master-port=ether2-master-local;
set ether5-slave-local master-port=ether2-master-local;
}
/interface bridge
add name=bridge-local disabled=no auto-mac=no protocol-mode=rstp;
:local bMACIsSet 0;
:foreach k in=[/interface find] do={
:local tmpPortName [/interface get $k name];
:if (!($tmpPortName~"bridge" || $tmpPortName~"ether1"|| $tmpPortName~"slave")) do={
:if ($bMACIsSet = 0) do={
:if ([/interface get $k type] = "ether") do={
/interface bridge set "bridge-local" admin-mac=[/interface ethernet get $tmpPortName mac-address];
:set bMACIsSet 1;
}
}
/interface bridge port
add bridge=bridge-local interface=$tmpPortName;
}
}
/ip address add address=192.168.88.1/24 interface=bridge-local comment="default configuration";
:if ($dhcpEnabled = 1) do={
/ip pool add name="default-dhcp" ranges=192.168.88.10-192.168.88.254;
/ip dhcp-server
add name=default address-pool="default-dhcp" interface=bridge-local disabled=no;
/ip dhcp-server network
add address=192.168.88.0/24 gateway=192.168.88.1 dns-server=192.168.88.1 comment="default configuration";
}
/ip firewall {
filter add chain=input action=accept protocol=icmp comment="default configuration"
filter add chain=input action=accept connection-state=established comment="default configuration"
filter add chain=input action=accept connection-state=related comment="default configuration"
filter add chain=input action=drop in-interface=ether1-gateway comment="default configuration"
nat add chain=srcnat out-interface=ether1-gateway action=masquerade comment="default configuration"
}
/tool mac-server remove [find];
/tool mac-server mac-winbox disable [find];
:foreach k in=[/interface find] do={
:local tmpName [/interface get $k name];
:if (!($tmpName~"ether1")) do={
/tool mac-server add interface=$tmpName disabled=no;
/tool mac-server mac-winbox add interface=$tmpName disabled=no;
}
}
/ip neighbor discovery set [find name="ether1-gateway"] discover=no
/ip dns {
set allow-remote-requests=yes
static add name=router address=192.168.88.1
}
}
#-------------------------------------------------------------------------------
# Revert configuration.
# these commands are executed if user requests to remove default configuration
#-------------------------------------------------------------------------------
:if ($action = "revert") do={
# remove wan port protection
/ip firewall {
:local o [nat find comment="default configuration"]
:if ([:len $o] != 0) do={ nat remove $o }
:local o [filter find comment="default configuration"]
:if ([:len $o] != 0) do={ filter remove $o }
}
/tool mac-server remove [find]
/tool mac-server add interface=all disabled=no
/tool mac-server mac-winbox remove [find interface!=all]
/tool mac-server mac-winbox set [find] disabled=no
# reset wan ports;
/ip neighbor discovery set [find name="ether1-gateway"] discover=yes
/interface set "ether1-gateway" name=ether1;
:if ($dhcpEnabled = 1) do={
:local o [/ip dhcp-server network find comment="default configuration"]
:if ([:len $o] != 0) do={ /ip dhcp-server network remove $o }
:local o [/ip dhcp-server find name="default" address-pool="default-dhcp" interface="bridge-local" !disabled]
:if ([:len $o] != 0) do={ /ip dhcp-server remove $o }
/ip pool {
:local o [find name="default-dhcp" ranges=192.168.88.10-192.168.88.254]
:if ([:len $o] != 0) do={ remove $o }
}
:local o [/ip dhcp-client find comment="default configuration"]
:if ([:len $o] != 0) do={ /ip dhcp-client remove $o }
}
/ip dns {
set allow-remote-requests=no
:local o [static find name=router address=192.168.88.1]
:if ([:len $o] != 0) do={ static remove $o }
}
/ip address {
:local o [find comment="default configuration"]
:if ([:len $o] != 0) do={ remove $o }
}
# remove switch
/interface set ether2-master-local name=ether2;
/interface ethernet set ether3-slave-local master-port=none;
/interface set ether3-slave-local name=ether3;
/interface ethernet set ether4-slave-local master-port=none;
/interface set ether4-slave-local name=ether4;
/interface ethernet set ether5-slave-local master-port=none;
/interface set ether5-slave-local name=ether5;
/interface bridge port remove [find bridge="bridge-local"]
/interface bridge remove [find name="bridge-local"]
:if ($wirelessEnabled = 1) do={
/interface set [find name~"wlan1"] name=wlan1
/interface wireless reset-configuration wlan1
}
}
Create many hotspot users in Mikrotik CLI
by iam8up on Oct.05, 2011, under linux, mikrotik
Create user.txt and pass.txt with the information, one value per line.
while read user <&3 && read pass <&4; do echo add server=hotspot1 name=$user password=$pass; done 3<user.txt 4<pass.txt
Now navigate to /ip hotspot user and put in the output.
while read user <&3 && read pass <&4; do echo The user name is: $user Password: $pass; done 3<user.txt 4<pass.txt
Dear customer,
Each computer should be assigned one user. Upon accessing the Internet you will be asked for the log in credentials. The users you purchased are below.
(output down here)
Email yourself a file from Linux prompt
by iam8up on Sep.28, 2011, under linux
uuencode somefile.pcap somefile.pcap |mail yourname@yourhost.com
To get uuencode look here
Finding uuencode to install
by iam8up on Sep.28, 2011, under linux
On CentOS the package is sharutils – This worked for me on 5.5 9/28/2011
Thanks to this guy!!!
http://bashcurescancer.com/two-tips-missing-files-and-uuencodeuudecode-on-rhel-centos.html
Josh’s Car Fire
by iam8up on Aug.22, 2011, under news
I have some pictures showing the after math.